Skip to content

Enable Windows Arm64 #2237

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.vs/
bin/
obj/
module/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,9 @@ public static object GetPsesAssemblyLoadContext()
/// </summary>
/// <param name="assemblyPath">The absolute path of the assembly to load.</param>
/// <returns>The loaded assembly object.</returns>
public static Assembly LoadAssemblyInPsesLoadContext(string assemblyPath)
#pragma warning disable CA1822 // Mark members as static
public Assembly LoadAssemblyInPsesLoadContext(string assemblyPath)
#pragma warning restore CA1822 // Mark members as static
{
if (!VersionUtils.IsNetCore)
{
Expand Down
4 changes: 2 additions & 2 deletions src/PowerShellEditorServices/Utility/Extensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ namespace Microsoft.PowerShell.EditorServices.Utility
internal static class ObjectExtensions
{
/// <summary>
/// Extension to evaluate an object's ToString() method in an exception safe way. This will
/// extension method will not throw.
/// Extension to evaluate an object's ToString() method in an exception safe way. This extension
/// method will not throw.
/// </summary>
/// <param name="obj">The object on which to call ToString()</param>
/// <returns>The ToString() return value or a suitable error message is that throws.</returns>
Expand Down