aboutsummaryrefslogtreecommitdiff
path: root/manager/manager.csproj
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-06-22 07:21:10 +0800
committer魏曹先生 <1992414357@qq.com>2026-06-22 07:21:10 +0800
commit5e16ca4f41b2ae0b1e0d57be340cbf28286fe1f7 (patch)
tree72e4afcc6b440e3121af79b245e6bd04c7398b7a /manager/manager.csproj
parente6bf6f5091caf3b4366894643671bc4586794cda (diff)
feat(manager): implement GUI dashboard with config management
Diffstat (limited to 'manager/manager.csproj')
-rw-r--r--manager/manager.csproj18
1 files changed, 14 insertions, 4 deletions
diff --git a/manager/manager.csproj b/manager/manager.csproj
index e21a361..753edc8 100644
--- a/manager/manager.csproj
+++ b/manager/manager.csproj
@@ -5,18 +5,28 @@
<Nullable>enable</Nullable>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<ApplicationManifest>app.manifest</ApplicationManifest>
- <AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
+ <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.Themes.Simple" 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>
+ <IncludeAssets
+ Condition="'$(Configuration)' != 'Debug'"
+ >None</IncludeAssets>
+ <PrivateAssets
+ Condition="'$(Configuration)' != 'Debug'"
+ >All</PrivateAssets>
</PackageReference>
</ItemGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Tomlyn" Version="0.17.0" />
+ </ItemGroup>
+
</Project>