summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorAmy Yu <amycmyu@gmail.com>2018-07-03 12:59:22 -0700
committerAmy Yu <amycmyu@gmail.com>2018-07-09 11:50:19 -0700
commit98dd60aa14d4f52cc88b7f47379b1f90948ca26f (patch)
tree3130e8d5a324a2ae4dd27d61b198ad728e23c138 /src/tools
parenta7358133ec2544de4c4ddce5a1f75a8f449cb2ef (diff)
downloadcoreclr-98dd60aa14d4f52cc88b7f47379b1f90948ca26f.tar.gz
coreclr-98dd60aa14d4f52cc88b7f47379b1f90948ca26f.tar.bz2
coreclr-98dd60aa14d4f52cc88b7f47379b1f90948ca26f.zip
Fix test errors
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/r2rdump/R2RDump.csproj19
1 files changed, 11 insertions, 8 deletions
diff --git a/src/tools/r2rdump/R2RDump.csproj b/src/tools/r2rdump/R2RDump.csproj
index 5344edd470..47625f4a9a 100644
--- a/src/tools/r2rdump/R2RDump.csproj
+++ b/src/tools/r2rdump/R2RDump.csproj
@@ -1,4 +1,4 @@
-<Project Sdk="Microsoft.NET.Sdk">
+<Project Sdk="Microsoft.NET.Sdk" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
<PropertyGroup>
@@ -9,17 +9,20 @@
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<AssemblyKey>Open</AssemblyKey>
<IsDotNetFrameworkProductAssembly>true</IsDotNetFrameworkProductAssembly>
- </PropertyGroup>
-
- <PropertyGroup>
- <TargetFramework>netcoreapp2.0</TargetFramework>
+ <TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFrameworkIdentifier>.NETCoreApp</TargetFrameworkIdentifier>
</PropertyGroup>
<ItemGroup>
- <PackageReference Include="Microsoft.NETCore.CoreDisTools" Version="1.0.1-prerelease-00003" />
- <PackageReference Include="System.CommandLine" Version="0.1.0-e160119-1" />
- <PackageReference Include="System.Reflection.Metadata" Version="1.6.0" />
+ <PackageReference Include="Microsoft.NETCore.CoreDisTools">
+ <Version>1.0.1-prerelease-00003</Version>
+ </PackageReference>
+ <PackageReference Include="System.CommandLine">
+ <Version>0.1.0-e160119-1</Version>
+ </PackageReference>
+ <PackageReference Include="System.Reflection.Metadata">
+ <Version>1.6.0</Version>
+ </PackageReference>
</ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />