summaryrefslogtreecommitdiff
path: root/src/.nuget/optdata/optdata.csproj
blob: 20e2a40adae961fa74ad0ad6a5d835c7c7219bb0 (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
<Project Sdk="Microsoft.NET.Sdk">

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

  <PropertyGroup>
    <TargetFramework>netstandard</TargetFramework>
    <DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
    <RuntimeIdentifiers>win7-x64;win7-x86;linux-x64</RuntimeIdentifiers>
  </PropertyGroup>

  <ItemGroup>
    <PackageReference Include="optimization.PGO.CoreCLR" Version="$(PgoDataPackageVersion)" Condition="'$(PgoDataPackageVersion)'!=''" />
    <PackageReference Include="optimization.IBC.CoreCLR" Version="$(IbcDataPackageVersion)" Condition="'$(IbcDataPackageVersion)'!=''" />
  </ItemGroup>

  <Target Name="DumpPgoDataPackageVersion">
    <Message Importance="high" Text="$(PgoDataPackageVersion)" />
  </Target>

  <Target Name="DumpIbcDataPackageVersion">
    <Message Importance="high" Text="$(IbcDataPackageVersion)" />
  </Target>

</Project>