Some documentation was broken. I refactored it to be declarative now the project build correctly and produce XML documentation.
27 lines
859 B
XML
27 lines
859 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<Platforms>x86;x64;AnyCPU</Platforms>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<InternalsVisibleTo Include="WhiteMagicTest" />
|
|
</ItemGroup>
|
|
|
|
<!--
|
|
Optional Iced backend (task 8.x). Isolated behind IAssembler: the default
|
|
StubAssembler path never touches Iced, keeping the common configuration free of any
|
|
behavioral dependency on it. Only callers that construct IcedAssembler pull it in.
|
|
-->
|
|
<ItemGroup>
|
|
<PackageReference Include="Iced" Version="1.21.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|