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.
17 lines
714 B
XML
17 lines
714 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Cosmos.Common\Cosmos.Common.csproj" />
|
|
<ProjectReference Include="..\Cosmos.Core\Cosmos.Core.csproj" />
|
|
<ProjectReference Include="..\Cosmos.Core_Asm\Cosmos.Core_Asm.csproj" />
|
|
<ProjectReference Include="..\Cosmos.Debug.Kernel\Cosmos.Debug.Kernel.csproj" />
|
|
<ProjectReference Include="$(XSharpRepoRoot)source\XSharp\XSharp\XSharp.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|