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

Commit fb5f153

Browse files
Merge pull request #4 from xamarin/dev/sandy/obsolete
Fix use of obsolete member
2 parents 9233d6a + e9c0609 commit fb5f153

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: 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)