EightBitNet/EightBit/EightBit.csproj

28 lines
855 B
XML
Raw Permalink Normal View History

2024-05-18 20:57:33 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2024-05-18 20:57:33 +00:00
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>False</GenerateDocumentationFile>
<SignAssembly>False</SignAssembly>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<AnalysisLevel>latest</AnalysisLevel>
</PropertyGroup>
2024-05-18 20:57:33 +00:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<WarningLevel>7</WarningLevel>
</PropertyGroup>
2024-05-18 20:57:33 +00:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<WarningLevel>7</WarningLevel>
</PropertyGroup>
2024-05-18 20:57:33 +00:00
<ItemGroup>
2024-05-18 20:57:33 +00:00
<Compile Remove="EightBit.UnitTest\**" />
<EmbeddedResource Remove="EightBit.UnitTest\**" />
<None Remove="EightBit.UnitTest\**" />
</ItemGroup>
2024-05-18 20:57:33 +00:00
</Project>