Skip to content

Commit 048a3fb

Browse files
Bump Microsoft.AspNetCore.Server.IIS from 2.2.0 to 2.2.6 in /src/Servers/IIS/IIS/test/testassets/InProcessNewShimWebSite (#42624)
* Bump Microsoft.AspNetCore.Server.IIS Bumps [Microsoft.AspNetCore.Server.IIS](https://github.com/aspnet/AspNetCore) from 2.2.0 to 2.2.6. - [Release notes](https://github.com/aspnet/AspNetCore/releases) - [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md) - [Commits](2.2.0...v2.2.6) --- updated-dependencies: - dependency-name: Microsoft.AspNetCore.Server.IIS dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * React to new shim `FileVersion` Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Doug Bunting <[email protected]>
1 parent adefeb4 commit 048a3fb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/Servers/IIS/IIS/test/IIS.NewShim.FunctionalTests/NewShimTests.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,11 @@ public async Task CheckNewShimIsUsed()
2727
{
2828
if (handle.ModuleName == "aspnetcorev2_inprocess.dll")
2929
{
30-
Assert.Equal("12.2.18316.0", handle.FileVersionInfo.FileVersion);
30+
Assert.Equal("12.2.19169.6", handle.FileVersionInfo.FileVersion);
3131
return;
3232
}
3333
}
34+
3435
throw new XunitException($"Could not find aspnetcorev2_inprocess.dll loaded in process {result.HostProcess.ProcessName}");
3536
}
3637
}

src/Servers/IIS/IIS/test/testassets/InProcessNewShimWebSite/InProcessNewShimWebSite.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
<ItemGroup>
3131
<!-- This package is hard-coded to the 2.2.0 package as a part of ensuring ANCM stays forward compatible. -->
32-
<PackageReference Include="Microsoft.AspNetCore.Server.IIS" Version="2.2.0">
32+
<PackageReference Include="Microsoft.AspNetCore.Server.IIS" Version="2.2.6">
3333
<AllowExplicitReference>true</AllowExplicitReference>
3434
</PackageReference>
3535
</ItemGroup>

0 commit comments

Comments
 (0)