Fix RestoreSources for optdata packages
[platform/upstream/coreclr.git] / src / .nuget / optdata / optdata.csproj
1 <Project Sdk="Microsoft.NET.Sdk">
2
3   <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
4
5   <PropertyGroup>
6     <TargetFramework>netstandard</TargetFramework>
7     <DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
8     <RuntimeIdentifiers>win7-x64;win7-x86;linux-x64</RuntimeIdentifiers>
9   </PropertyGroup>
10
11   <ItemGroup>
12     <PackageReference Include="optimization.PGO.CoreCLR" Version="$(PgoDataPackageVersion)" Condition="'$(PgoDataPackageVersion)'!=''" />
13     <PackageReference Include="optimization.IBC.CoreCLR" Version="$(IbcDataPackageVersion)" Condition="'$(IbcDataPackageVersion)'!=''" />
14   </ItemGroup>
15
16   <Target Name="DumpPgoDataPackageVersion">
17     <Message Importance="high" Text="$(PgoDataPackageVersion)" />
18   </Target>
19
20   <Target Name="DumpIbcDataPackageVersion">
21     <Message Importance="high" Text="$(IbcDataPackageVersion)" />
22   </Target>
23
24 </Project>