Welcome to mirror list, hosted at ThFree Co, Russian Federation.

netcoreapp.depproj « netcoreapp « external - github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d4dcfcfa703fc4b942187ebfa5cf2f9714800aa3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
  <!-- This project restores and publishes the targeting pack for specific versions of .NET Core.
       With this, we are able to compile assemblies against shipped, stable versions of .NET Core. -->
  <PropertyGroup>
    <BinPlaceRef>true</BinPlaceRef>
    <NuGetDeploySourceItem>Reference</NuGetDeploySourceItem>
    <NETCoreAppPackageVersion>2.0.0</NETCoreAppPackageVersion>
    <TargetFramework>netcoreapp2.0</TargetFramework>
  </PropertyGroup>

  <ItemGroup>
    <PackageReference Include="Microsoft.NETCore.App">
      <Version>$(NETCoreAppPackageVersion)</Version>
    </PackageReference>
  </ItemGroup>

  <ItemGroup>
    <!-- for all configurations this project provides refs for that configuration -->
    <BinPlaceConfiguration Include="$(Configuration)">
      <RefPath>$(RefPath)</RefPath>
    </BinPlaceConfiguration>
  </ItemGroup>

  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project>