diff options
| author | Roy <Roy.mail.net@gmail.com> | 2022-10-31 14:37:05 +0200 |
|---|---|---|
| committer | Roy <Roy.mail.net@gmail.com> | 2022-10-31 14:37:05 +0200 |
| commit | 6d4b2e504a88d3155e21b14b31f9eb3adbe1514e (patch) | |
| tree | 64985260452f1d19a61121a75d193334757f2d17 /Software/Visual_Studio/Scripting/Tango.Scripting.Editors | |
| parent | 6123db153fcb0539b30cb209a805715c63537884 (diff) | |
| download | Tango-6d4b2e504a88d3155e21b14b31f9eb3adbe1514e.tar.gz Tango-6d4b2e504a88d3155e21b14b31f9eb3adbe1514e.zip | |
FSE Procedures .net developer pack elimination.
Diffstat (limited to 'Software/Visual_Studio/Scripting/Tango.Scripting.Editors')
| -rw-r--r-- | Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Intellisense/Utils.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Intellisense/Utils.cs b/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Intellisense/Utils.cs index 2ead15d0d..e324c0edb 100644 --- a/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Intellisense/Utils.cs +++ b/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Intellisense/Utils.cs @@ -11,7 +11,7 @@ namespace Tango.Scripting.Editors.Intellisense { public static class Utils { - private static String dotNetXmlFolder = @"C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.X"; + public static String DotNetFrameworkDocsFolder = @"C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.X"; private static Dictionary<Assembly, XmlDocument> _assemblies_docs_cache; static Utils() @@ -39,10 +39,10 @@ namespace Tango.Scripting.Editors.Intellisense xmlDoc = new XmlDocument(); xmlDoc.Load(docuPath); } - else if (File.Exists(System.IO.Path.Combine(dotNetXmlFolder, System.IO.Path.GetFileName(docuPath)))) + else if (File.Exists(System.IO.Path.Combine(DotNetFrameworkDocsFolder, System.IO.Path.GetFileName(docuPath)))) { xmlDoc = new XmlDocument(); - xmlDoc.Load(System.IO.Path.Combine(dotNetXmlFolder, System.IO.Path.GetFileName(docuPath))); + xmlDoc.Load(System.IO.Path.Combine(DotNetFrameworkDocsFolder, System.IO.Path.GetFileName(docuPath))); } if (xmlDoc != null) |
