16 lines
340 B
XML
16 lines
340 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="IId.cs">
|
|
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
</Project>
|