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-16 21:48:45 +0300
committerSandy Armstrong <sandy@xamarin.com>2021-12-16 21:48:45 +0300
commite9c0609ec51fe879cb7db4b8270f3260c75effbc (patch)
tree4e8fafe244f6025e03023d96abf6ab05ed5cd52e
parenta6885a748fbdb95a904572b93f9bcceeb86bcf88 (diff)
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);