Skip to content

Commit

Permalink
Fix ILVerify dependencies (#54112)
Browse files Browse the repository at this point in the history
- Update ILVerify to build for NetCoreAppToolCurrent
  • Loading branch information
jkotas committed Jun 14, 2021
1 parent b8b3ef1 commit 5bf0a3f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions src/coreclr/.nuget/dotnet-ilverify/dotnet-ilverify.pkgproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@

<ItemGroup>
<PackageFile Include="DotnetToolSettings.xml">
<TargetPath>tools\netcoreapp3.1\any\DotnetToolSettings.xml</TargetPath>
<TargetPath>tools\$(NetCoreAppToolCurrent)\any\DotnetToolSettings.xml</TargetPath>
</PackageFile>
<PackageFile Include="$(ArtifactsDir)bin\ILVerify\$(TargetArchitecture)\$(Configuration)\ILVerify.dll">
<TargetPath>tools\netcoreapp3.1\any\ILVerify.dll</TargetPath>
<TargetPath>tools\$(NetCoreAppToolCurrent)\any\ILVerify.dll</TargetPath>
</PackageFile>
<PackageFile Include="$(ArtifactsDir)bin\ILVerify\$(TargetArchitecture)\$(Configuration)\System.CommandLine.dll">
<TargetPath>tools\netcoreapp3.1\any\System.CommandLine.dll</TargetPath>
<TargetPath>tools\$(NetCoreAppToolCurrent)\any\System.CommandLine.dll</TargetPath>
</PackageFile>
<PackageFile Include="$(ArtifactsDir)bin\ILVerify\$(TargetArchitecture)\$(Configuration)\ILVerify.deps.json">
<TargetPath>tools\netcoreapp3.1\any\ILVerify.deps.json</TargetPath>
<TargetPath>tools\$(NetCoreAppToolCurrent)\any\ILVerify.deps.json</TargetPath>
</PackageFile>
<PackageFile Include="$(ArtifactsDir)bin\ILVerify\$(TargetArchitecture)\$(Configuration)\ILVerify.runtimeconfig.json">
<TargetPath>tools\netcoreapp3.1\any\ILVerify.runtimeconfig.json</TargetPath>
<TargetPath>tools\$(NetCoreAppToolCurrent)\any\ILVerify.runtimeconfig.json</TargetPath>
</PackageFile>
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/coreclr/tools/ILVerify/ILVerify.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>$(NetCoreAppToolCurrent)</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<UseAppHost>false</UseAppHost>
<RollForward>Major</RollForward>
Expand Down

0 comments on commit 5bf0a3f

Please sign in to comment.