-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCOSC439_Chip8.csproj
27 lines (27 loc) · 1.09 KB
/
COSC439_Chip8.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<PublishSingleFile>true</PublishSingleFile>
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
<PublishTrimmed>true</PublishTrimmed>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SFML.Net" Version="2.5.0" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta3.22114.1" />
<Content Include="build\assets\**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="src\Chip8\Emulator.cs" />
<Content Include="src\Chip8\Memory.cs" />
<Content Include="src\Chip8\Display.cs" />
<Content Include="src\Chip8\Cpu.cs" />
<Content Include="src\Program.cs" />
<Content Include="src\Chip8\Debugger.cs" />
<Content Include="src\Chip8\Keypad.cs" />
</ItemGroup>
</Project>