Exposing error logging and changing the default output stream. Setting projects to include documentation files generated from XMLDocs.
24 lines
774 B
XML
24 lines
774 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
|
<RootNamespace>CSMic.StandardLibrary</RootNamespace>
|
|
<AssemblyName>CSMic.StandardLibrary</AssemblyName>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<Version>2.1.1</Version>
|
|
<PackageId>CSMic.StandardLibrary</PackageId>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<LangVersion>latest</LangVersion>
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Core\CSMic.Core.csproj" />
|
|
<None Include="README.md" Pack="true" PackagePath="\" />
|
|
</ItemGroup>
|
|
|
|
<Import Project="NuGetPublish.targets" Condition="Exists('NuGetPublish.targets')" />
|
|
|
|
|
|
</Project>
|