Files
romrepomgr/RomRepoMgr/RomRepoMgr.csproj

41 lines
1.8 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>
<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-30 03:00:14 +01:00
<Compile Update="Resources\Localization.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Localization.resx</DependentUpon>
</Compile>
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" />
2020-08-22 13:32:43 +01:00
<PackageReference Include="Avalonia.Diagnostics" Version="0.10.0-preview3" />
2020-08-22 02:17:40 +01:00
<PackageReference Include="Avalonia.ReactiveUI" Version="0.10.0-preview3" />
2020-08-22 21:19:34 +01:00
<PackageReference Include="MessageBox.Avalonia" Version="0.10.0-prev2" />
2020-08-22 02:17:40 +01:00
<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-30 03:00:14 +01:00
<ItemGroup>
<EmbeddedResource Update="Resources\Localization.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Localization.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
2020-08-21 22:22:24 +01:00
</Project>