aboutsummaryrefslogtreecommitdiff
path: root/manager/manager.csproj
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-06-22 06:15:44 +0800
committer魏曹先生 <1992414357@qq.com>2026-06-22 06:15:44 +0800
commite6bf6f5091caf3b4366894643671bc4586794cda (patch)
tree18f1ed3eb8820218ebfb9b2fad3da97c3bdaaa10 /manager/manager.csproj
parent7091f88c9f0bbbad6959874993145cbd06c1886a (diff)
feat: add GUI manager and integrate into build pipeline
Diffstat (limited to 'manager/manager.csproj')
-rw-r--r--manager/manager.csproj22
1 files changed, 22 insertions, 0 deletions
diff --git a/manager/manager.csproj b/manager/manager.csproj
new file mode 100644
index 0000000..e21a361
--- /dev/null
+++ b/manager/manager.csproj
@@ -0,0 +1,22 @@
+<Project Sdk="Microsoft.NET.Sdk">
+ <PropertyGroup>
+ <OutputType>WinExe</OutputType>
+ <TargetFramework>net9.0</TargetFramework>
+ <Nullable>enable</Nullable>
+ <BuiltInComInteropSupport>true</BuiltInComInteropSupport>
+ <ApplicationManifest>app.manifest</ApplicationManifest>
+ <AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Avalonia" Version="11.3.2" />
+ <PackageReference Include="Avalonia.Desktop" Version="11.3.2" />
+ <PackageReference Include="Avalonia.Themes.Fluent" Version="11.3.2" />
+ <PackageReference Include="Avalonia.Fonts.Inter" Version="11.3.2" />
+ <!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
+ <PackageReference Include="Avalonia.Diagnostics" Version="11.3.2">
+ <IncludeAssets Condition="'$(Configuration)' != 'Debug'">None</IncludeAssets>
+ <PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>
+ </PackageReference>
+ </ItemGroup>
+</Project>