Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xamarin/NRefactory.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSandy Armstrong <sandy@xamarin.com>2021-12-17 03:06:24 +0300
committerGitHub <noreply@github.com>2021-12-17 03:06:24 +0300
commitfb5f1535acf896fb6ad67fd0953236391712f0a1 (patch)
tree4e8fafe244f6025e03023d96abf6ab05ed5cd52e
parent9233d6a863a72ff89cafc48e6ea3dfc41c625722 (diff)
parente9c0609ec51fe879cb7db4b8270f3260c75effbc (diff)
Merge pull request #4 from xamarin/dev/sandy/obsoletenet6
Fix use of obsolete member
-rw-r--r--ICSharpCode.NRefactory.Cecil/CecilLoader.cs2
1 files changed, 1 insertions, 1 deletions
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);