diff options
Diffstat (limited to 'BatchBeatmapDownloader/BatchBeatmapDownloader.csproj')
-rw-r--r-- | BatchBeatmapDownloader/BatchBeatmapDownloader.csproj | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/BatchBeatmapDownloader/BatchBeatmapDownloader.csproj b/BatchBeatmapDownloader/BatchBeatmapDownloader.csproj new file mode 100644 index 0000000..0e104cf --- /dev/null +++ b/BatchBeatmapDownloader/BatchBeatmapDownloader.csproj @@ -0,0 +1,32 @@ +<Project Sdk="Microsoft.NET.Sdk"> + <PropertyGroup> + <OutputType>WinExe</OutputType> + <TargetFramework>net7.0</TargetFramework> + <Nullable>enable</Nullable> + <BuiltInComInteropSupport>true</BuiltInComInteropSupport> + <ApplicationManifest>app.manifest</ApplicationManifest> + <AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault> + <LangVersion>preview</LangVersion> + </PropertyGroup> + + <ItemGroup> + <Folder Include="Models\"/> + <AvaloniaResource Include="Assets\**"/> + </ItemGroup> + + + <ItemGroup> + <PackageReference Include="Avalonia" Version="11.0.0"/> + <PackageReference Include="Avalonia.Desktop" Version="11.0.0"/> + <PackageReference Include="Avalonia.Themes.Fluent" Version="11.0.0"/> + <PackageReference Include="Avalonia.Fonts.Inter" Version="11.0.0"/> + <!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.--> + <PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.0"/> + <PackageReference Include="Avalonia.ReactiveUI" Version="11.0.0"/> + </ItemGroup> + + + <ItemGroup> + <ProjectReference Include="..\LibBeatmapDownload\LibBeatmapDownload.csproj" /> + </ItemGroup> +</Project> |