diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-05-22 22:10:19 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-06-17 21:02:05 +0800 |
| commit | 5a5a07c7fad31641d032a743e4e87ffb58ade17d (patch) | |
| tree | b6fbd33e8de82e5f9d9e6b99e3cb2102e47fe3ee /rola-desktop/rola-desktop.csproj | |
Initial commitmain
Diffstat (limited to 'rola-desktop/rola-desktop.csproj')
| -rw-r--r-- | rola-desktop/rola-desktop.csproj | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/rola-desktop/rola-desktop.csproj b/rola-desktop/rola-desktop.csproj new file mode 100644 index 0000000..a1155d6 --- /dev/null +++ b/rola-desktop/rola-desktop.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.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> + <PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.1" /> + </ItemGroup> +</Project> |
