Skip to content

Commit

Permalink
Fixed assembly binding redirection
Browse files Browse the repository at this point in the history
Fixed extension identity internal name
  • Loading branch information
icnocop committed Nov 3, 2024
1 parent 0044276 commit d7883a0
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log

## v1.0.1103.27 (November 3<sup>rd</sup>, 2024)
- Fixed assembly binding redirection error which may occur when loading the extension

## v1.0.1102.24 (November 2<sup>nd</sup>, 2024)
- Fixed [#2](https://github.com/icnocop/PackageReferenceVersionToAttribute/issues/2) - Added support for converting all projects in a solution, and converting multiple selected projects.
- Fixed [#1](https://github.com/icnocop/PackageReferenceVersionToAttribute/issues/1) - Preserved the XML declaration if it exists.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
<Compile Include="Commands\MultipleProjectNodesCommand.cs" />
<Compile Include="Commands\SolutionNodeCommand.cs" />
<Compile Include="Logging\CustomLoggerProvider.cs" />
<Compile Include="Properties\AssemblyBindingRedirects.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Commands\ProjectNodeCommand.cs" />
<Compile Include="Package.cs" />
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// <copyright file="AssemblyBindingRedirects.cs" company="Rami Abughazaleh">
// Copyright (c) Rami Abughazaleh. All rights reserved.
// </copyright>

using Microsoft.VisualStudio.Shell;

[assembly: ProvideBindingRedirection(
AssemblyName = "Microsoft.Extensions.DependencyInjection",
OldVersionLowerBound = "0.0.0.0",
OldVersionUpperBound = "8.0.0.0",
NewVersion = "8.0.0.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"coding"
],
"identity": {
"internalName": "PackageReferenceVersionToAttribute"
"internalName": "PackageReferenceVersionToAttributeExtension"
},
"assetFiles": [
{
Expand Down

0 comments on commit d7883a0

Please sign in to comment.