mirror of
https://github.com/yaobiao131/downkyicore.git
synced 2025-08-10 00:52:31 +00:00
44 lines
1.9 KiB
XML
44 lines
1.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
|
|
<SatelliteResourceLanguages>zh-Hans</SatelliteResourceLanguages>
|
|
<ApplicationIcon>Resources\favicon.ico</ApplicationIcon>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<AvaloniaResource Include="Resources\**" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Avalonia" Version="11.2.5" />
|
|
<PackageReference Include="Avalonia.Controls.DataGrid" Version="11.2.5" />
|
|
<PackageReference Include="Avalonia.Desktop" Version="11.2.5" />
|
|
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.2.5" />
|
|
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
|
|
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.2.5" />
|
|
<PackageReference Include="Avalonia.Themes.Simple" Version="11.2.5" />
|
|
<PackageReference Include="Avalonia.Xaml.Behaviors" Version="11.2.0.14" />
|
|
<PackageReference Include="Downloader" Version="3.3.4" />
|
|
<PackageReference Include="Prism.Avalonia" Version="8.1.97.11073" />
|
|
<PackageReference Include="Prism.DryIoc.Avalonia" Version="8.1.97.11073" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\DownKyi.Core\DownKyi.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<Compile Update="Views\Dialogs\NewVersionAvailableDialog.axaml.cs">
|
|
<DependentUpon>NewVersionAvailableDialog.axaml</DependentUpon>
|
|
</Compile>
|
|
</ItemGroup>
|
|
</Project>
|