2026-08-08 14:07:56 +08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
<TargetFramework>net10.0-windows</TargetFramework>
|
|
|
|
|
<UseWPF>true</UseWPF>
|
|
|
|
|
<EnableWindowsTargeting>true</EnableWindowsTargeting>
|
|
|
|
|
<RootNamespace>MRCC.Launcher</RootNamespace>
|
2026-08-09 21:32:55 +08:00
|
|
|
<AssemblyName>RedCircuit</AssemblyName>
|
|
|
|
|
<PublishDir>..\..\build\</PublishDir>
|
2026-08-08 14:07:56 +08:00
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<LangVersion>14.0</LangVersion>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
2026-08-09 21:32:55 +08:00
|
|
|
<StartupObject>Program</StartupObject>
|
|
|
|
|
<SelfContained>true</SelfContained>
|
|
|
|
|
<PublishSingleFile>false</PublishSingleFile>
|
|
|
|
|
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
|
2026-08-08 14:07:56 +08:00
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
2026-08-09 21:32:55 +08:00
|
|
|
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.4129.50" />
|
2026-08-08 14:07:56 +08:00
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2026-08-09 21:32:55 +08:00
|
|
|
<Content Include="..\..\prototype\**" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="PreserveNewest" LinkBase="game\" />
|
2026-08-08 14:07:56 +08:00
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|