EightBitNet/M6502/M6502.csproj

40 lines
1.3 KiB
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>
2024-05-28 13:00:15 +00:00
<AnalysisLevel>latest-all</AnalysisLevel>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup>
2024-05-18 20:57:33 +00:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<WarningLevel>9999</WarningLevel>
2024-05-28 13:00:15 +00:00
<IsTrimmable>True</IsTrimmable>
<IsAotCompatible>True</IsAotCompatible>
</PropertyGroup>
2024-05-18 20:57:33 +00:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<WarningLevel>9999</WarningLevel>
2024-05-28 13:00:15 +00:00
<IsTrimmable>True</IsTrimmable>
<IsAotCompatible>True</IsAotCompatible>
</PropertyGroup>
2024-05-18 20:57:33 +00:00
<ItemGroup>
<Compile Remove="M6502.HarteTest\**" />
2024-05-18 20:57:33 +00:00
<Compile Remove="M6502.Test\**" />
<EmbeddedResource Remove="M6502.HarteTest\**" />
2024-05-18 20:57:33 +00:00
<EmbeddedResource Remove="M6502.Test\**" />
<None Remove="M6502.HarteTest\**" />
2024-05-18 20:57:33 +00:00
<None Remove="M6502.Test\**" />
</ItemGroup>
2024-05-18 20:57:33 +00:00
<ItemGroup>
2024-05-18 20:57:33 +00:00
<ProjectReference Include="..\EightBit\EightBit.csproj" />
</ItemGroup>
2024-05-18 20:57:33 +00:00
</Project>