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

24 lines
1009 B
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk.Web">
2019-05-15 14:56:09 +00:00
<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.0.0-preview4-19216-03" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="3.0.0-preview3.19153.1" />
2019-05-28 09:40:37 +00:00
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.0.0-preview5-19264-04" />
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" />
</ItemGroup>
2019-06-03 08:32:51 +00:00
<Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition="'$(BuildingInsideVisualStudio)' == 'true'">
<Exec Command="copy $(SolutionDir)products\ASC.People\bin\Debug\netcoreapp3.0\*.dll $(OutDir) /Y" />
</Target>
2019-05-15 14:56:09 +00:00
</Project>