PowerShellStandard icon indicating copy to clipboard operation
PowerShellStandard copied to clipboard

Results 38 PowerShellStandard issues
Sort by recently updated
recently updated
newest added

- VMConnectionInfo - https://docs.microsoft.com/en-us/dotnet/api/system.management.automation.runspaces.vmconnectioninfo?view=pscore-6.2.0 - SSHConnectionInfo - https://docs.microsoft.com/en-us/dotnet/api/system.management.automation.runspaces.sshconnectioninfo?view=pscore-6.2.0

the current name of the standard library has some issues with regard to the upcoming PowerShell 7 release. We should consider renaming the library to `PowerShellStandard.Library.7.0.0` to show the terminus...

From here: https://github.com/PowerShell/PowerShell/issues/10372#issuecomment-522838685 This is to track the creation PSStandard version 6, which allows developers to target only PowerShell Core (v6 and v7). cc @SteveL-MSFT

Hello, I see on NuGet that the latest version of PowerShell Standard.Library Version 3 is 3.0.0-preview-02 from February 2018. Considering that we have much newer versions of PowerShell Standard.Library Version...

I ran the correct command to install this using the dotnet cli (the [blog post ](https://devblogs.microsoft.com/powershell/powershell-standard-library-build-single-module-that-works-across-windows-powershell-and-powershell-core/#)formatting is rekt, so I may not have done this correctly), but I don't see...

The README did not provide any information for package user. I have searched around, even looking into the [doc folder](https://github.com/PowerShell/PowerShellStandard/tree/master/doc) without understanding anything, until I see the [template directory](https://github.com/PowerShell/PowerShellStandard/tree/master/src/dotnetTemplate) with...

It is difficult to reference `PowerShellStandard` from xunit/mstest style unit tests in a project targeting net46. A reference assembly with empty implementations (returning `null` or `default(T)`) is placed alongside the...

Opening the issue here, as suggested by Steve [here](https://twitter.com/Steve_MSFT/status/1070730479236575232).: Given the following csproj file: ```xml net46 ``` Running `dotnet build` on it, results in a build error telling me that...

In .NET automation libraries I find these profiles convenient for debugging. Maybe others might find them useful. Only works for Visual Studio though. A drawback is hard coded paths to...

Area-DotnetNew

The nuget package [Microsoft.PowerShell.5.ReferenceAssemblies](https://www.nuget.org/packages/Microsoft.PowerShell.5.ReferenceAssemblies/) has an incorrect signature for `ScriptBlockAst.UsingStatements`, it uses: ```c# public ReadOnlyCollection UsingStatements { get; set; } ``` The correct signature is used in this repo: ```c#...