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

47 lines
1.6 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-05-20 15:14:44 +00:00
</ItemGroup>
2020-06-23 10:48:36 +00:00
<ItemGroup>
<PackageReference Include="Google.Protobuf" Version="3.12.3" />
2020-06-28 13:55:21 +00:00
<PackageReference Include="Grpc" Version="2.30.0" />
<PackageReference Include="Grpc.Tools" Version="2.30.0">
2020-06-23 10:48:36 +00:00
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="SharpCompress" Version="0.25.0" />
</ItemGroup>
2020-05-20 15:14:44 +00:00
<ItemGroup>
<ProjectReference Include="..\..\..\products\ASC.Files\Server\ASC.Files.csproj" />
<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" />
<ProjectReference Include="..\ASC.Notify\ASC.Notify.csproj" />
</ItemGroup>
2020-06-23 10:48:36 +00:00
<ItemGroup>
<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>