DocSpace-buildtools/common/services/ASC.Data.Backup/ASC.Data.Backup.csproj

49 lines
1.7 KiB
XML
Raw Normal View History

2020-06-03 09:15:05 +00:00
<Project Sdk="Microsoft.NET.Sdk.Web">
2020-05-20 15:14:44 +00:00
2020-06-03 09:15:05 +00:00
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<ApplicationIcon />
<OutputType>Exe</OutputType>
</PropertyGroup>
2020-05-20 15:14:44 +00:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
<ItemGroup>
2020-06-23 10:48:36 +00:00
<None Remove="protos\BackupProgress.proto" />
2020-09-17 13:56:12 +00:00
<None Remove="protos\DeleteSchedule.proto" />
2020-05-20 15:14:44 +00:00
</ItemGroup>
2020-06-23 10:48:36 +00:00
<ItemGroup>
2020-10-15 18:30:16 +00:00
<PackageReference Include="Google.Protobuf" Version="3.13.0" />
2020-10-16 07:27:44 +00:00
<PackageReference Include="Grpc" Version="2.32.0" />
<PackageReference Include="Grpc.Tools" Version="2.32.0">
2020-06-23 10:48:36 +00:00
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
2020-10-15 18:30:16 +00:00
<PackageReference Include="SharpCompress" Version="0.26.0" />
2020-06-23 10:48:36 +00:00
</ItemGroup>
2020-05-20 15:14:44 +00:00
<ItemGroup>
2020-07-28 12:45:14 +00:00
<ProjectReference Include="..\..\..\products\ASC.Files\Core\ASC.Files.Core.csproj" />
2020-06-29 09:32:43 +00:00
<ProjectReference Include="..\..\..\web\ASC.Web.Core\ASC.Web.Core.csproj" />
2020-05-20 15:14:44 +00:00
<ProjectReference Include="..\..\ASC.Common\ASC.Common.csproj" />
<ProjectReference Include="..\..\ASC.Core.Common\ASC.Core.Common.csproj" />
<ProjectReference Include="..\..\ASC.Data.Storage\ASC.Data.Storage.csproj" />
</ItemGroup>
2020-06-23 10:48:36 +00:00
<ItemGroup>
2020-09-17 13:56:12 +00:00
<Protobuf Include="protos\DeleteSchedule.proto" />
2020-06-23 10:48:36 +00:00
<Protobuf Include="protos\BackupProgress.proto" />
</ItemGroup>
2020-05-26 08:52:47 +00:00
<Target Name="ChangeAliasesOfStrongNameAssemblies" BeforeTargets="FindReferenceAssembliesForReferences;ResolveReferences">
<ItemGroup>
<ReferencePath Condition="'%(FileName)' == 'MySqlConnector'">
<Aliases>MySqlConnectorAlias</Aliases>
</ReferencePath>
</ItemGroup>
2020-06-23 10:48:36 +00:00
2020-05-26 08:52:47 +00:00
</Target>
2020-05-20 15:14:44 +00:00
</Project>