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

  <PropertyGroup>
    <TargetFramework>netstandard2.0</TargetFramework>
    <DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
    <RuntimeIdentifiers>win7-x64;win7-x86;linux-x64</RuntimeIdentifiers>
  </PropertyGroup>

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

  <PropertyGroup>
    <RestoreSources>
      https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json;
      $(RestoreSources);
    </RestoreSources>
  </PropertyGroup>

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

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

</Project>