-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogo.csproj
More file actions
27 lines (27 loc) · 1.19 KB
/
logo.csproj
File metadata and controls
27 lines (27 loc) · 1.19 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<None Remove=".gitignore" />
</ItemGroup>
<ItemGroup>
<Using Include="Spice86.Core.Emulator.Memory" />
<Using Include="Spice86.Core.Emulator.ReverseEngineer" />
<Using Include="Spice86.Core.Emulator.VM" />
<Using Include="Spice86.Shared.Utils" />
<Using Include="Spice86.Core.Emulator.Function" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Spice86" Version="11.1.0" />
<!--ProjectReference Include="../Spice86/src/Spice86.Shared/Spice86.Shared.csproj" />
<ProjectReference Include="../Spice86/src/Spice86.Logging/Spice86.Logging.csproj" />
<ProjectReference Include="../Spice86/src/Bufdio.Spice86/Bufdio.Spice86.csproj" />
<ProjectReference Include="../Spice86/src/Spice86/Spice86.csproj" />
<ProjectReference Include="../Spice86/src/Spice86.Core/Spice86.Core.csproj" />
<ProjectReference Include="../Spice86/src/Spice86.MicroBenchmarkTemplate/Spice86.MicroBenchmarkTemplate.csproj" /-->
</ItemGroup>
</Project>