13 lines
428 B
XML
13 lines
428 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<!-- ElkSharp is a ported ELK layout algorithm — suppress nullable warnings from the port -->
|
|
<NoWarn>$(NoWarn);CS8601;CS8602;CS8604</NoWarn>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Remove="**/*.ARCHIVED.cs" />
|
|
</ItemGroup>
|
|
</Project>
|