cs-mic/src/StandardLibrary/CSMic.StandardLibrary.csproj
Jordan Wages eb4a511355 Error Logging + Documentation
Exposing error logging and changing the default output stream. Setting projects to include documentation files generated from XMLDocs.
2026-06-30 01:39:36 -05:00

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>