We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a697310 commit f36fcd5Copy full SHA for f36fcd5
src/PowerShellEditorServices/Extensions/Api/EditorExtensionServiceProvider.cs
@@ -162,7 +162,9 @@ public static object GetPsesAssemblyLoadContext()
162
/// </summary>
163
/// <param name="assemblyPath">The absolute path of the assembly to load.</param>
164
/// <returns>The loaded assembly object.</returns>
165
- public static Assembly LoadAssemblyInPsesLoadContext(string assemblyPath)
+#pragma warning disable CA1822 // Mark members as static
166
+ public Assembly LoadAssemblyInPsesLoadContext(string assemblyPath)
167
+#pragma warning restore CA1822 // Mark members as static
168
{
169
if (!VersionUtils.IsNetCore)
170
0 commit comments