EightBitNet/M6502/M6502.csproj
2024-06-05 12:51:40 +01:00

44 lines
1.5 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>False</GenerateDocumentationFile>
<SignAssembly>False</SignAssembly>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<AnalysisLevel>latest-all</AnalysisLevel>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<WarningLevel>9999</WarningLevel>
<IsTrimmable>True</IsTrimmable>
<IsAotCompatible>True</IsAotCompatible>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<WarningLevel>9999</WarningLevel>
<IsTrimmable>True</IsTrimmable>
<IsAotCompatible>True</IsAotCompatible>
</PropertyGroup>
<ItemGroup>
<Compile Remove="M6502.HarteTest\**" />
<Compile Remove="M6502.Symbols\**" />
<Compile Remove="M6502.Test\**" />
<EmbeddedResource Remove="M6502.HarteTest\**" />
<EmbeddedResource Remove="M6502.Symbols\**" />
<EmbeddedResource Remove="M6502.Test\**" />
<None Remove="M6502.HarteTest\**" />
<None Remove="M6502.Symbols\**" />
<None Remove="M6502.Test\**" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\EightBit\EightBit.csproj" />
<ProjectReference Include="M6502.Symbols\M6502.Symbols.csproj" />
</ItemGroup>
</Project>