DocSpace-buildtools/common/services/ASC.Data.Storage.Encryption/ASC.Data.Storage.Encryption.csproj

40 lines
1.5 KiB
XML
Raw Normal View History

2022-10-19 10:12:33 +00:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
2022-11-10 10:10:18 +00:00
<TargetFramework>net7.0</TargetFramework>
2022-10-19 10:12:33 +00:00
<ApplicationIcon />
<OutputType>Exe</OutputType>
<RazorCompileOnBuild>false</RazorCompileOnBuild>
<GenerateMvcApplicationPartsAssemblyAttributes>false</GenerateMvcApplicationPartsAssemblyAttributes>
2022-11-24 14:21:34 +00:00
<DisableImplicitComponentsAnalyzers>true</DisableImplicitComponentsAnalyzers>
2022-10-19 10:12:33 +00:00
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
2022-11-24 14:21:34 +00:00
<ImplicitUsings>enable</ImplicitUsings>
2022-10-19 10:12:33 +00:00
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
<ItemGroup>
2022-11-10 10:10:18 +00:00
<PackageReference Include="Autofac.Extensions.DependencyInjection" Version="8.0.0" />
<PackageReference Include="Grpc" Version="2.46.5">
2022-10-19 10:12:33 +00:00
<TreatAsUsed>true</TreatAsUsed>
</PackageReference>
2022-11-10 10:10:18 +00:00
<PackageReference Include="Grpc.Tools" Version="2.50.0">
2022-10-19 10:12:33 +00:00
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
2022-11-10 10:10:18 +00:00
<PackageReference Include="Microsoft.Extensions.Hosting.Systemd" Version="7.0.0" />
2022-10-19 10:12:33 +00:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\ASC.Api.Core\ASC.Api.Core.csproj" />
<ProjectReference Include="..\..\ASC.Data.Storage\ASC.Data.Storage.csproj" />
</ItemGroup>
</Project>