Skip to content
This repository has been archived by the owner on Aug 22, 2023. It is now read-only.

Commit

Permalink
Fix use of obsolete member
Browse files Browse the repository at this point in the history
  • Loading branch information
sandyarmstrong committed Dec 16, 2021
1 parent a6885a7 commit e9c0609
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ICSharpCode.NRefactory.Cecil/CecilLoader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ public IUnresolvedAssembly LoadModule(ModuleDefinition moduleDefinition)
moduleAttributes = interningProvider.InternList(moduleAttributes);

this.currentAssembly = new CecilUnresolvedAssembly(assemblyDefinition != null ? assemblyDefinition.Name.FullName : moduleDefinition.Name, this.DocumentationProvider);
currentAssembly.Location = moduleDefinition.FullyQualifiedName;
currentAssembly.Location = moduleDefinition.FileName;
currentAssembly.AssemblyAttributes.AddRange(assemblyAttributes);
currentAssembly.ModuleAttributes.AddRange(assemblyAttributes);

Expand Down

0 comments on commit e9c0609

Please sign in to comment.