Files
romrepomgr/RomRepoMgr/RomRepoMgr.csproj

29 lines
1.2 KiB
XML
Raw Normal View History

2020-08-21 22:22:24 +01:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
2020-08-22 02:23:51 +01:00
<TargetFramework>netcoreapp3.1</TargetFramework>
2020-08-21 22:22:24 +01:00
</PropertyGroup>
<ItemGroup>
2020-08-21 23:21:01 +01:00
<Folder Include="Models\" />
2020-08-21 22:22:24 +01:00
<Compile Update="**\*.xaml.cs">
<DependentUpon>%(Filename)</DependentUpon>
</Compile>
<AvaloniaResource Include="**\*.xaml">
<SubType>Designer</SubType>
</AvaloniaResource>
2020-08-21 23:21:01 +01:00
<AvaloniaResource Include="Assets\**" />
2020-08-21 22:22:24 +01:00
</ItemGroup>
<ItemGroup>
2020-08-22 02:17:40 +01:00
<PackageReference Include="Avalonia" Version="0.10.0-preview3" />
2020-08-22 03:13:49 +01:00
<PackageReference Include="Avalonia.Controls.DataGrid" Version="0.10.0-preview3" />
2020-08-22 02:17:40 +01:00
<PackageReference Include="Avalonia.Desktop" Version="0.10.0-preview3" />
<PackageReference Include="Avalonia.ReactiveUI" Version="0.10.0-preview3" />
<PackageReference Include="Svg.Skia.Avalonia" Version="0.10.0-preview3" />
2020-08-21 22:22:24 +01:00
</ItemGroup>
2020-08-22 02:23:51 +01:00
<ItemGroup>
2020-08-22 02:39:44 +01:00
<ProjectReference Include="..\RomRepoMgr.Database\RomRepoMgr.Database.csproj" />
2020-08-22 02:23:51 +01:00
<ProjectReference Include="..\RomRepoMgr.Settings\RomRepoMgr.Settings.csproj" />
2020-08-22 04:40:39 +01:00
<ProjectReference Include="..\RomRepoMgr.Core\RomRepoMgr.Core.csproj" />
2020-08-22 02:23:51 +01:00
</ItemGroup>
2020-08-21 22:22:24 +01:00
</Project>