EightBitNet/Z80/Z80.Test/Z80.Test.csproj

27 lines
799 B
XML
Raw 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>
<OutputType>Exe</OutputType>
</PropertyGroup>
2024-05-18 20:57:33 +00:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<WarningLevel>9999</WarningLevel>
</PropertyGroup>
2024-05-18 20:57:33 +00:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<WarningLevel>9999</WarningLevel>
</PropertyGroup>
2024-05-18 20:57:33 +00:00
<ItemGroup>
2024-05-18 20:57:33 +00:00
<ProjectReference Include="..\Z80.csproj" />
</ItemGroup>
2024-05-18 20:57:33 +00:00
</Project>