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>
|
|
|
|
|
<AnalysisLevel>latest</AnalysisLevel>
|
2019-02-02 15:12:51 +00:00
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
</PropertyGroup>
|
2024-05-18 21:57:33 +01:00
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<WarningLevel>9999</WarningLevel>
|
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>
|
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-18 21:57:33 +01:00
|
|
|
|
<ProjectReference Include="..\M6502.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>
|