mirror of
https://github.com/claunia/romrepomgr.git
synced 2025-12-16 11:14:45 +00:00
22 lines
776 B
XML
22 lines
776 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Folder Include="Models\"/>
|
|
<Compile Update="**\*.xaml.cs">
|
|
<DependentUpon>%(Filename)</DependentUpon>
|
|
</Compile>
|
|
<AvaloniaResource Include="**\*.xaml">
|
|
<SubType>Designer</SubType>
|
|
</AvaloniaResource>
|
|
<AvaloniaResource Include="Assets\**"/>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Avalonia" Version="0.9.12"/>
|
|
<PackageReference Include="Avalonia.Desktop" Version="0.9.12"/>
|
|
<PackageReference Include="Avalonia.ReactiveUI" Version="0.9.12"/>
|
|
</ItemGroup>
|
|
</Project>
|