58 lines
2.8 KiB
XML
58 lines
2.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<ApplicationIcon>LANCommanderDark.ico</ApplicationIcon>
|
|
<PublishSingleFile>false</PublishSingleFile>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<BeautySharedRuntimeMode>False</BeautySharedRuntimeMode>
|
|
<!-- beauty into sub-directory, default is libs, quote with "" if contains space -->
|
|
<BeautyLibsDir Condition="$(BeautySharedRuntimeMode) == 'True'">../Libraries</BeautyLibsDir>
|
|
<BeautyLibsDir Condition="$(BeautySharedRuntimeMode) != 'True'">./Libraries</BeautyLibsDir>
|
|
<!-- dlls that you don't want to be moved or can not be moved -->
|
|
<!-- <BeautyExcludes>dll1.dll;lib*;...</BeautyExcludes> -->
|
|
<!-- dlls that end users never needed, so hide them -->
|
|
<!-- <BeautyHiddens>hostfxr;hostpolicy;*.deps.json;*.runtimeconfig*.json</BeautyHiddens> -->
|
|
<!-- set to True if you want to disable -->
|
|
<DisableBeauty>False</DisableBeauty>
|
|
<!-- set to False if you want to beauty on build -->
|
|
<BeautyOnPublishOnly>True</BeautyOnPublishOnly>
|
|
<!-- DO NOT TOUCH THIS OPTION -->
|
|
<BeautyNoRuntimeInfo>False</BeautyNoRuntimeInfo>
|
|
<!-- set to True if you want to allow 3rd debuggers(like dnSpy) debugs the app -->
|
|
<BeautyEnableDebugging>False</BeautyEnableDebugging>
|
|
<!-- the patch can reduce the file count -->
|
|
<!-- set to False if you want to disable -->
|
|
<!-- SCD Mode Feature Only -->
|
|
<BeautyUsePatch>True</BeautyUsePatch>
|
|
<!-- App Entry Dll = BeautyDir + BeautyAppHostDir + BeautyAppHostEntry -->
|
|
<!-- see https://github.com/nulastudio/NetBeauty2#customize-apphost for more details -->
|
|
<!-- relative path based on AppHostDir -->
|
|
<!-- .NET Core Non Single-File Only -->
|
|
<!-- <BeautyAppHostEntry>bin/MyApp.dll</BeautyAppHostEntry> -->
|
|
<!-- relative path based on BeautyDir -->
|
|
<!-- .NET Core Non Single-File Only -->
|
|
<!-- <BeautyAppHostDir>..</BeautyAppHostDir> -->
|
|
<!-- <BeautyAfterTasks></BeautyAfterTasks> -->
|
|
<!-- valid values: Error|Detail|Info -->
|
|
<BeautyLogLevel>Info</BeautyLogLevel>
|
|
<!-- set to a repo mirror if you have troble in connecting github -->
|
|
<!-- <BeautyGitCDN>https://gitee.com/liesauer/HostFXRPatcher</BeautyGitCDN> -->
|
|
<!-- <BeautyGitTree>master</BeautyGitTree> -->
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" />
|
|
<PackageReference Include="nulastudio.NetBeauty" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\LANCommander.Launcher.Services\LANCommander.Launcher.Services.csproj" />
|
|
<ProjectReference Include="..\LANCommander.ServiceDefaults\LANCommander.ServiceDefaults.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|