diff options
Diffstat (limited to 'manager/manager.csproj')
| -rw-r--r-- | manager/manager.csproj | 22 |
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> |
