mirror of https://github.com/Washi1337/Emux.git
13 lines
514 B
XML
13 lines
514 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<Title>Emux.GameBoy</Title>
|
|
<Version>0.1.0.0</Version>
|
|
<Description>GameBoy emulator engine</Description>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Memory" Version="4.5.4" />
|
|
<PackageReference Include="System.Reflection.Emit.Lightweight" Version="4.3.0" />
|
|
</ItemGroup>
|
|
</Project> |