From e9c0609ec51fe879cb7db4b8270f3260c75effbc Mon Sep 17 00:00:00 2001 From: Sandy Armstrong Date: Thu, 16 Dec 2021 10:48:45 -0800 Subject: Fix use of obsolete member --- ICSharpCode.NRefactory.Cecil/CecilLoader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ICSharpCode.NRefactory.Cecil/CecilLoader.cs b/ICSharpCode.NRefactory.Cecil/CecilLoader.cs index f1d16a2a..a3a8be82 100644 --- a/ICSharpCode.NRefactory.Cecil/CecilLoader.cs +++ b/ICSharpCode.NRefactory.Cecil/CecilLoader.cs @@ -182,7 +182,7 @@ namespace ICSharpCode.NRefactory.TypeSystem 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); -- cgit v1.2.3