mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
Added GenerateDocumentationFile property in all the libs, so xml documentation would be generated with the NuGet package.
20 lines
520 B
XML
20 lines
520 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Cosmos.cfg" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="IL2CPU.API" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\30-HAL\Cosmos.HAL\Cosmos.HAL.csproj" PrivateAssets="All" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|