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

27 lines
1.0 KiB
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>
2020-11-15 15:55:57 +00:00
<TargetFramework>net5.0</TargetFramework>
<RazorCompileOnBuild>false</RazorCompileOnBuild>
<GenerateMvcApplicationPartsAssemblyAttributes>false</GenerateMvcApplicationPartsAssemblyAttributes>
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>
<PackageReference Include="Autofac.Extensions.DependencyInjection" Version="7.1.0" />
<PackageReference Include="Microsoft.Extensions.Hosting.Systemd" Version="5.0.1" />
<PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="5.0.1" />
</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>