54a71c1645
- add README and public API boundary documentation - configure package metadata and CI validation
17 lines
585 B
XML
17 lines
585 B
XML
<Project>
|
|
<PropertyGroup>
|
|
<ArtifactsPath>$(MSBuildThisFileDirectory)build\artifacts</ArtifactsPath>
|
|
<Configurations>Debug;Release</Configurations>
|
|
<LangVersion>latest</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<RepositoryType>git</RepositoryType>
|
|
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
|
|
<Deterministic>true</Deterministic>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(IsPackable)' == ''">
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
</Project>
|