mirror of
https://github.com/patchzyy/wiicompiled
synced 2026-09-10 17:16:47 -04:00
21 lines
805 B
XML
21 lines
805 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<AssemblyName>WiiCompiled.Setup</AssemblyName>
|
|
<RootNamespace>WiiCompiled.Setup</RootNamespace>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
<Version>0.2.24</Version>
|
|
<Authors>patchzy</Authors>
|
|
<Product>WiiCompiled</Product>
|
|
<Description>Command-line installer and launcher for WiiCompiled</Description>
|
|
<DebugType>embedded</DebugType>
|
|
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\WiiCompiled.NodTool\WiiCompiled.NodTool.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|