1234567891011121314151617181920212223242526 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <!--If you are willing to use Windows/MacOS native APIs you will need to create 3 projects.
- One for Windows with net7.0-windows TFM, one for MacOS with net7.0-macos and one with net7.0 TFM for Linux.-->
- <TargetFramework>net8.0</TargetFramework>
- <Nullable>enable</Nullable>
- <BuiltInComInteropSupport>true</BuiltInComInteropSupport>
- </PropertyGroup>
- <PropertyGroup>
- <ApplicationManifest>app.manifest</ApplicationManifest>
- <AssemblyVersion>1.0.0.18</AssemblyVersion>
- <FileVersion>1.0.0.18</FileVersion>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Avalonia.Desktop" Version="11.0.6" />
- <!--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.6" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\VeloeAvaloniaKemonoPartyApp\VeloeAvaloniaKemonoPartyApp.csproj" />
- </ItemGroup>
- </Project>
|