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

33 lines
1.3 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk.Web">
2021-10-07 09:52:35 +00:00
<PropertyGroup>
<OutputType>Exe</OutputType>
2021-11-30 09:02:20 +00:00
<TargetFramework>net6.0</TargetFramework>
2021-10-07 09:52:35 +00:00
<StartupObject>AutoMigrationCreator.Program</StartupObject>
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
<ImplicitUsings>enable</ImplicitUsings>
2021-10-07 09:52:35 +00:00
</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>
2022-07-15 10:33:34 +00:00
<PackageReference Include="CommandLineParser" Version="2.9.1" />
2021-11-30 09:02:20 +00:00
<PackageReference Include="Microsoft.Build" Version="17.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.0">
<PrivateAssets>all</PrivateAssets>
2021-10-07 09:52:35 +00:00
</PackageReference>
2021-11-30 09:02:20 +00:00
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
2021-10-07 09:52:35 +00:00
</ItemGroup>
2022-07-15 09:48:15 +00:00
<ItemGroup>
2022-07-24 13:02:00 +00:00
<ProjectReference Include="..\..\..\migrations\mysql\ASC.Migrations.MySql.csproj" />
<ProjectReference Include="..\..\..\migrations\postgre\ASC.Migrations.PostgreSql.csproj" />
2022-07-22 19:34:12 +00:00
<ProjectReference Include="..\..\..\products\ASC.Files\Core\ASC.Files.Core.csproj" />
2022-07-15 09:48:15 +00:00
<ProjectReference Include="..\..\ASC.Core.Common\ASC.Core.Common.csproj" />
2022-07-22 19:34:12 +00:00
<ProjectReference Include="..\..\ASC.Data.Backup.Core\ASC.Data.Backup.Core.csproj" />
2022-07-15 09:48:15 +00:00
</ItemGroup>
2021-10-07 09:52:35 +00:00
</Project>