2020-08-21 23:21:01 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2020-12-20 23:16:54 +00:00
|
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
|
|
|
<LangVersion>9</LangVersion>
|
2020-08-21 23:21:01 +01:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-12-21 01:22:36 +00:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.1">
|
2020-08-21 23:21:01 +01:00
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2020-12-21 01:22:36 +00:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Proxies" Version="5.0.1" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="5.0.1" />
|
2020-08-21 23:21:01 +01:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite.Design" Version="1.1.6" />
|
2020-12-21 01:22:36 +00:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="5.0.0" />
|
2020-08-21 23:21:01 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Folder Include="Migrations" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-08-22 02:39:44 +01:00
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\RomRepoMgr.Settings\RomRepoMgr.Settings.csproj" />
|
|
|
|
|
</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>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Update="Resources\Localization.Designer.cs">
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
<DependentUpon>Language.resx</DependentUpon>
|
|
|
|
|
</Compile>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-08-21 23:21:01 +01:00
|
|
|
</Project>
|