2024-05-18 21:57:33 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
2019-02-02 15:12:51 +00:00
|
|
|
|
<PropertyGroup>
|
2024-05-18 21:57:33 +01:00
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<GenerateDocumentationFile>False</GenerateDocumentationFile>
|
|
|
|
|
<SignAssembly>False</SignAssembly>
|
|
|
|
|
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
|
2024-05-28 14:00:15 +01:00
|
|
|
|
<AnalysisLevel>latest-all</AnalysisLevel>
|
|
|
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
2019-02-02 15:12:51 +00:00
|
|
|
|
</PropertyGroup>
|
2024-05-18 21:57:33 +01:00
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<WarningLevel>9999</WarningLevel>
|
2024-05-28 14:00:15 +01:00
|
|
|
|
<IsTrimmable>True</IsTrimmable>
|
|
|
|
|
<IsAotCompatible>True</IsAotCompatible>
|
2019-02-02 15:12:51 +00:00
|
|
|
|
</PropertyGroup>
|
2024-05-18 21:57:33 +01:00
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
<WarningLevel>9999</WarningLevel>
|
2024-05-28 14:00:15 +01:00
|
|
|
|
<IsTrimmable>True</IsTrimmable>
|
|
|
|
|
<IsAotCompatible>True</IsAotCompatible>
|
2019-02-02 15:12:51 +00:00
|
|
|
|
</PropertyGroup>
|
2024-05-18 21:57:33 +01:00
|
|
|
|
|
2019-02-02 15:12:51 +00:00
|
|
|
|
<ItemGroup>
|
2024-05-21 19:41:16 +01:00
|
|
|
|
<Compile Remove="M6502.HarteTest\**" />
|
2024-06-05 12:51:40 +01:00
|
|
|
|
<Compile Remove="M6502.Symbols\**" />
|
2024-05-18 21:57:33 +01:00
|
|
|
|
<Compile Remove="M6502.Test\**" />
|
2024-05-21 19:41:16 +01:00
|
|
|
|
<EmbeddedResource Remove="M6502.HarteTest\**" />
|
2024-06-05 12:51:40 +01:00
|
|
|
|
<EmbeddedResource Remove="M6502.Symbols\**" />
|
2024-05-18 21:57:33 +01:00
|
|
|
|
<EmbeddedResource Remove="M6502.Test\**" />
|
2024-05-21 19:41:16 +01:00
|
|
|
|
<None Remove="M6502.HarteTest\**" />
|
2024-06-05 12:51:40 +01:00
|
|
|
|
<None Remove="M6502.Symbols\**" />
|
2024-05-18 21:57:33 +01:00
|
|
|
|
<None Remove="M6502.Test\**" />
|
2019-02-02 15:12:51 +00:00
|
|
|
|
</ItemGroup>
|
2024-05-18 21:57:33 +01:00
|
|
|
|
|
2019-02-02 15:12:51 +00:00
|
|
|
|
<ItemGroup>
|
2024-05-18 21:57:33 +01:00
|
|
|
|
<ProjectReference Include="..\EightBit\EightBit.csproj" />
|
2024-06-05 12:51:40 +01:00
|
|
|
|
<ProjectReference Include="M6502.Symbols\M6502.Symbols.csproj" />
|
2019-02-02 15:12:51 +00:00
|
|
|
|
</ItemGroup>
|
2024-05-18 21:57:33 +01:00
|
|
|
|
|
|
|
|
|
</Project>
|