DocSpace-buildtools/web/ASC.Web.Studio/ASC.Web.Studio.csproj

32 lines
1.2 KiB
XML
Raw Normal View History

2019-06-04 14:43:20 +00:00
<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>
2019-05-15 14:56:09 +00:00
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked>
<TypeScriptToolsVersion>Latest</TypeScriptToolsVersion>
<IsPackable>false</IsPackable>
<DefaultItemExcludes>$(DefaultItemExcludes);</DefaultItemExcludes>
2019-05-15 14:56:09 +00:00
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
2019-07-01 14:35:43 +00:00
2019-05-15 14:56:09 +00:00
<ItemGroup>
2020-06-25 11:38:34 +00:00
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.5" />
2020-08-21 02:34:37 +00:00
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="3.1.7">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
2019-05-15 14:56:09 +00:00
</ItemGroup>
2019-06-04 14:43:20 +00:00
<ItemGroup>
2019-09-10 12:42:15 +00:00
<ProjectReference Include="..\..\common\ASC.Api.Core\ASC.Api.Core.csproj" />
2019-06-04 14:43:20 +00:00
<ProjectReference Include="..\..\common\ASC.Data.Storage\ASC.Data.Storage.csproj" />
2019-07-09 10:29:53 +00:00
<ProjectReference Include="..\ASC.Web.Core\ASC.Web.Core.csproj" />
2019-06-04 14:43:20 +00:00
</ItemGroup>
2019-05-15 14:56:09 +00:00
</Project>