DocSpace-client/web/ASC.Web.Api/ASC.Web.Api.csproj

43 lines
1.8 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk.Web">
2019-05-15 14:56:09 +00:00
<PropertyGroup>
2019-12-06 09:12:51 +00:00
<TargetFramework>netcoreapp3.1</TargetFramework>
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked>
<TypeScriptToolsVersion>Latest</TypeScriptToolsVersion>
<IsPackable>false</IsPackable>
<DefaultItemExcludes>$(DefaultItemExcludes);</DefaultItemExcludes>
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
<AssemblyTitle>ASC.Web.Api</AssemblyTitle>
<Company>Ascensio System SIA</Company>
<Product>ASC.Web.Api</Product>
<Copyright>(c) Ascensio System SIA. All rights reserved</Copyright>
2019-05-15 14:56:09 +00:00
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
2019-08-12 10:53:12 +00:00
<ItemGroup>
<Compile Remove="Controllers\LdapController.cs" />
<Compile Remove="Controllers\SsoSettingsV2Controller.cs" />
</ItemGroup>
2019-05-15 14:56:09 +00:00
<ItemGroup>
2020-10-16 07:27:44 +00:00
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="3.1.9" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.1.4" />
2019-05-15 14:56:09 +00:00
</ItemGroup>
2019-05-28 15:05:20 +00:00
<ItemGroup>
<ProjectReference Include="..\..\common\ASC.Api.Core\ASC.Api.Core.csproj" />
2019-05-28 15:05:20 +00:00
<ProjectReference Include="..\..\common\ASC.Common\ASC.Common.csproj" />
<ProjectReference Include="..\..\common\ASC.Core.Common\ASC.Core.Common.csproj" />
2019-06-21 12:42:27 +00:00
<ProjectReference Include="..\..\common\ASC.Data.Reassigns\ASC.Data.Reassigns.csproj" />
2020-09-02 10:54:50 +00:00
<ProjectReference Include="..\..\common\ASC.Data.Storage\ASC.Data.Storage.csproj" />
2020-10-06 07:06:05 +00:00
<ProjectReference Include="..\..\common\services\ASC.AuditTrail\ASC.AuditTrail.csproj" />
2020-09-17 13:56:12 +00:00
<ProjectReference Include="..\..\common\services\ASC.Data.Backup\ASC.Data.Backup.csproj" />
2019-06-10 12:17:45 +00:00
<ProjectReference Include="..\ASC.Web.Core\ASC.Web.Core.csproj" />
</ItemGroup>
2019-05-15 14:56:09 +00:00
</Project>