-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGameboy.Test.csproj
More file actions
30 lines (24 loc) · 971 Bytes
/
Copy pathGameboy.Test.csproj
File metadata and controls
30 lines (24 loc) · 971 Bytes
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
28
29
30
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
<PackageReference Include="MSTest.TestAdapter" Version="2.2.10" />
<PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
<PackageReference Include="coverlet.collector" Version="3.1.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Gameboy\Gameboy.csproj" />
<ProjectReference Include="..\Gameboy.Database\Gameboy.Database.csproj" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Roms/*.gb" />
<EmbeddedResource Include="Roms/instructions/*.gb" />
<EmbeddedResource Include="Data/*.json" />
<EmbeddedResource Include="Data/opcode_tests/*.json" />
</ItemGroup>
</Project>