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

33 lines
1.2 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>
2021-08-25 15:26:13 +00:00
<TargetFramework>net6.0</TargetFramework>
2020-06-03 09:15:05 +00:00
<ApplicationIcon />
<OutputType>Exe</OutputType>
<RazorCompileOnBuild>false</RazorCompileOnBuild>
<GenerateMvcApplicationPartsAssemblyAttributes>false</GenerateMvcApplicationPartsAssemblyAttributes>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
2020-06-03 09:15:05 +00:00
</PropertyGroup>
2020-05-20 15:14:44 +00:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
2021-11-30 13:03:23 +00:00
</PropertyGroup>
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>
<ItemGroup>
<PackageReference Include="Autofac.Extensions.DependencyInjection" Version="7.2.0" />
<PackageReference Include="Microsoft.Extensions.Hosting.Systemd" Version="6.0.0" />
</ItemGroup>
2021-09-02 12:41:54 +00:00
<ItemGroup>
<ProjectReference Include="..\..\ASC.Data.Backup.Core\ASC.Data.Backup.Core.csproj" />
</ItemGroup>
2020-05-20 15:14:44 +00:00
</Project>