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

Commit e9c0609

Browse files
committedDec 16, 2021
Fix use of obsolete member
1 parent a6885a7 commit e9c0609

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎ICSharpCode.NRefactory.Cecil/CecilLoader.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ public IUnresolvedAssembly LoadModule(ModuleDefinition moduleDefinition)
182182
moduleAttributes = interningProvider.InternList(moduleAttributes);
183183

184184
this.currentAssembly = new CecilUnresolvedAssembly(assemblyDefinition != null ? assemblyDefinition.Name.FullName : moduleDefinition.Name, this.DocumentationProvider);
185-
currentAssembly.Location = moduleDefinition.FullyQualifiedName;
185+
currentAssembly.Location = moduleDefinition.FileName;
186186
currentAssembly.AssemblyAttributes.AddRange(assemblyAttributes);
187187
currentAssembly.ModuleAttributes.AddRange(assemblyAttributes);
188188

0 commit comments

Comments
 (0)