vCloud.Server.Common.csproj 865 B

1234567891011121314151617181920212223
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netstandard2.0</TargetFramework>
  4. <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
  5. </PropertyGroup>
  6. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  7. <OutputPath>..\..\Bin\netcoreapp2.0\</OutputPath>
  8. <DocumentationFile>..\..\Bin\netcoreapp2.0\vCloud.Server.Common.xml</DocumentationFile>
  9. </PropertyGroup>
  10. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  11. <OutputPath>..\..\Bin\netcoreapp2.0\</OutputPath>
  12. <DocumentationFile>..\..\Bin\netcoreapp2.0\vCloud.Server.Common.xml</DocumentationFile>
  13. </PropertyGroup>
  14. <ItemGroup>
  15. <PackageReference Include="Microsoft.Extensions.Primitives" Version="2.0.0" />
  16. <PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
  17. </ItemGroup>
  18. </Project>