DocSpace-buildtools/common/Tools/AutoMigrationCreator/AutoMigrationCreator.csproj

24 lines
820 B
XML
Raw Normal View History

2021-10-07 09:52:35 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<StartupObject>AutoMigrationCreator.Program</StartupObject>
</PropertyGroup>
2021-10-28 13:04:36 +00:00
<PropertyGroup>
<NoWarn>1701;1702;EF1001</NoWarn>
</PropertyGroup>
2021-10-07 09:52:35 +00:00
<ItemGroup>
2021-10-22 17:05:11 +00:00
<ProjectReference Include="..\..\..\products\ASC.Files\Core\ASC.Files.Core.csproj" />
2021-10-07 09:52:35 +00:00
<ProjectReference Include="..\..\ASC.Core.Common\ASC.Core.Common.csproj" />
2021-10-22 17:05:11 +00:00
<PackageReference Include="Microsoft.Build" Version="16.11.0" />
2021-10-07 09:52:35 +00:00
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.10">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="5.0.0" />
</ItemGroup>
</Project>