mirror of
https://github.com/TheShadowEevee/Sharpii-NetCore.git
synced 2025-01-11 14:58:51 -06:00
28 lines
709 B
XML
28 lines
709 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<OutputType>Exe</OutputType>
|
|||
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<Folder Include="Sharpii\Properties\" />
|
|||
|
<Folder Include="WadInstaller\Properties\" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="Costura.Fody" Version="4.1.0" />
|
|||
|
<PackageReference Include="System.Drawing.Common" Version="4.7.0" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<Reference Include="libWiiSharp">
|
|||
|
<HintPath>Sharpii\libWiiSharp.dll</HintPath>
|
|||
|
</Reference>
|
|||
|
<Reference Include="WadInstaller">
|
|||
|
<HintPath>Sharpii\WadInstaller.dll</HintPath>
|
|||
|
</Reference>
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|