mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-02-10 19:30:42 +00:00
16 lines
389 B
XML
16 lines
389 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\EightBit\EightBit.csproj" />
|
|
<ProjectReference Include="..\M6502.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|