1234567891011121314151617181920212223 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>netstandard2.0</TargetFramework>
- <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <OutputPath>..\..\Bin\netcoreapp2.0\</OutputPath>
- <DocumentationFile>..\..\Bin\netcoreapp2.0\vCloud.Server.Common.xml</DocumentationFile>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <OutputPath>..\..\Bin\netcoreapp2.0\</OutputPath>
- <DocumentationFile>..\..\Bin\netcoreapp2.0\vCloud.Server.Common.xml</DocumentationFile>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Microsoft.Extensions.Primitives" Version="2.0.0" />
- <PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
- </ItemGroup>
- </Project>
|