summaryrefslogtreecommitdiff
path: root/JVDesktop/JVDesktop.csproj
diff options
context:
space:
mode:
authorWeicao-CatilGrass <1992414357@qq.com>2025-12-18 01:12:54 +0800
committerWeicao-CatilGrass <1992414357@qq.com>2025-12-18 01:12:54 +0800
commit088a09bbfd9bf8ebcdf3dd193cef688f37efe3c5 (patch)
tree2f3f4f46456ec3d54a936d028fac207a2d851778 /JVDesktop/JVDesktop.csproj
parent764c177237dfeebfd53895a68f42145f892e9eda (diff)
First commit
Diffstat (limited to 'JVDesktop/JVDesktop.csproj')
-rw-r--r--JVDesktop/JVDesktop.csproj28
1 files changed, 28 insertions, 0 deletions
diff --git a/JVDesktop/JVDesktop.csproj b/JVDesktop/JVDesktop.csproj
new file mode 100644
index 0000000..5ba2c97
--- /dev/null
+++ b/JVDesktop/JVDesktop.csproj
@@ -0,0 +1,28 @@
+<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>
+ <Folder Include="Models\"/>
+ <AvaloniaResource Include="Assets\**"/>
+ </ItemGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Avalonia" Version="11.3.4"/>
+ <PackageReference Include="Avalonia.Desktop" Version="11.3.4"/>
+ <PackageReference Include="Avalonia.Themes.Fluent" Version="11.3.4"/>
+ <PackageReference Include="Avalonia.Fonts.Inter" Version="11.3.4"/>
+ <!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
+ <PackageReference Include="Avalonia.Diagnostics" Version="11.3.4">
+ <IncludeAssets Condition="'$(Configuration)' != 'Debug'">None</IncludeAssets>
+ <PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>
+ </PackageReference>
+ <PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.1"/>
+ </ItemGroup>
+</Project>