DocSpace-buildtools/products/ASC.Files/Service/ASC.Files.Service.csproj

27 lines
1017 B
XML
Raw Normal View History

2020-07-14 10:03:53 +00:00
<Project Sdk="Microsoft.NET.Sdk.Web">
2020-04-23 09:38:50 +00:00
<PropertyGroup>
<OutputType>Exe</OutputType>
2021-08-25 15:26:13 +00:00
<TargetFramework>net6.0</TargetFramework>
<RazorCompileOnBuild>false</RazorCompileOnBuild>
<GenerateMvcApplicationPartsAssemblyAttributes>false</GenerateMvcApplicationPartsAssemblyAttributes>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
2020-04-23 09:38:50 +00:00
</PropertyGroup>
2020-05-14 17:39:40 +00:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
<ItemGroup>
2021-11-23 14:56:27 +00:00
<PackageReference Include="Autofac.Extensions.DependencyInjection" Version="7.2.0" />
<PackageReference Include="Microsoft.Extensions.Hosting.Systemd" Version="6.0.0" />
</ItemGroup>
2020-05-14 17:39:40 +00:00
2020-04-23 09:38:50 +00:00
<ItemGroup>
2020-06-03 14:53:58 +00:00
<ProjectReference Include="..\..\..\common\services\ASC.Feed.Aggregator\ASC.Feed.Aggregator.csproj" />
2020-07-28 12:45:14 +00:00
<ProjectReference Include="..\Core\ASC.Files.Core.csproj" />
2020-04-23 09:38:50 +00:00
</ItemGroup>
</Project>