Sharpii-NetCore/Sharpii.csproj

38 lines
1.1 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
2023-05-22 19:01:14 -05:00
<TargetFramework>net7.0</TargetFramework>
<SelfContained>true</SelfContained>
<PublishTrimmed>true</PublishTrimmed>
<PublishSingleFile>true</PublishSingleFile>
<TrimMode>link</TrimMode>
2023-05-22 19:01:36 -05:00
<InvariantGlobalization>true</InvariantGlobalization>
2022-03-21 23:07:32 -05:00
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/TheShadowEevee/Sharpii-NetCore</RepositoryUrl>
<RepositoryType>git</RepositoryType>
2023-05-22 21:47:47 -05:00
<Copyright>Copyright (C) 2013 Person66, Copyright (C) 2020-2023 TheShadowEevee and Sharpii-NetCore Contributors</Copyright>
</PropertyGroup>
<ItemGroup>
2023-05-22 19:01:14 -05:00
<PackageReference Include="System.Drawing.Common" Version="7.0.0" />
</ItemGroup>
<ItemGroup>
<Reference Include="libWiiSharp">
<HintPath>Sharpii\libWiiSharp.dll</HintPath>
</Reference>
<Reference Include="WadInstaller">
<HintPath>Sharpii\WadInstaller.dll</HintPath>
</Reference>
</ItemGroup>
2022-03-21 23:07:32 -05:00
<ItemGroup>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>