DocSpace-buildtools/common/Tools/ASC.Migration.Creator/ASC.Migration.Creator.csproj

34 lines
1.4 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk.Web">
2021-10-07 09:52:35 +00:00
<PropertyGroup>
<OutputType>Exe</OutputType>
2022-11-10 10:10:18 +00:00
<TargetFramework>net7.0</TargetFramework>
<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" />
2023-01-19 16:10:38 +00:00
<PackageReference Include="Microsoft.Build" Version="17.4.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.2">
2021-11-30 09:02:20 +00:00
<PrivateAssets>all</PrivateAssets>
2021-10-07 09:52:35 +00:00
</PackageReference>
2022-11-10 10:10:18 +00:00
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="7.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-29 12:53:29 +00:00
<ProjectReference Include="..\..\ASC.ActiveDirectory\ASC.ActiveDirectory.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-26 11:52:53 +00:00
<ProjectReference Include="..\ASC.Migration.Core\ASC.Migration.Core.csproj" />
2022-07-15 09:48:15 +00:00
</ItemGroup>
2021-10-07 09:52:35 +00:00
</Project>