You've already forked pac-man-emulator
mirror of
https://github.com/izzy2lost/pac-man-emulator.git
synced 2026-03-10 12:38:25 -07:00
• Add emulator.cli project targeting netcoreapp3.1 • Switch emulator to be a library • Target netstandard2.0 for emulator, cli, disassembler projects (2.1 is too high for UAP 10.0.18362.0) • Fix netcoreapp3.1 -> netstandard2.0 compilation errors
17 lines
486 B
XML
17 lines
486 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<RootNamespace>JustinCredible.Z80Disassembler</RootNamespace>
|
|
<Version>1.0.0</Version>
|
|
<NoWarn>CS0618</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.CommandLineUtils" Version="1.1.1" />
|
|
<ProjectReference Include="..\z80\z80.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|