-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSharpii.csproj
More file actions
37 lines (32 loc) · 1.14 KB
/
Copy pathSharpii.csproj
File metadata and controls
37 lines (32 loc) · 1.14 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
28
29
30
31
32
33
34
35
36
37
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<SelfContained>true</SelfContained>
<PublishTrimmed>true</PublishTrimmed>
<PublishSingleFile>true</PublishSingleFile>
<TrimMode>link</TrimMode>
<InvariantGlobalization>true</InvariantGlobalization>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/TheShadowEevee/Sharpii-NetCore</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Copyright>Copyright (C) 2013 Person66, Copyright (C) 2020-2025 TheShadowEevee and Sharpii-NetCore Contributors</Copyright>
</PropertyGroup>
<ItemGroup>
<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>
<ItemGroup>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>