PowerShellStandard icon indicating copy to clipboard operation
PowerShellStandard copied to clipboard

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

**The issue** The issue seems to lie with the template. On creation of a new project, the `.csproj` file is populated with the ps standard library reference like so: ```...

I am having a project where version of PowershellStandard library version 5.1.1 is installed. I am not creating a new project in same solution and could not find the PowerShellStandard...

# Observation 1. https://github.com/PowerShell/PowerShellStandard/tree/master/src/5 contains only references to 7 (note that the folder is still named 5). 2. https://github.com/PowerShell/PowerShellStandard/blob/master/src/dotnetTemplate/README.md contains a sample help text that only mentions 3 and 7....

# To reproduce: ```powershell dotnet new -i ./src/dotnetTemplate/Microsoft.PowerShell.Standard.Module.Template/Microsoft.PowerShell.Standard.Module.Template dotnet new psmodule --help ``` # Actual output contains: ```text -v|--powershell-standard-version 5.1.0 - PowerShell Standard 5.1 3.0.0-preview-02 - PowerShell Standard 3.0 ```...

Today, PSStd provides an API surface that allows targeting of both Windows PowerShell and PS 6+. However, this is only one of the functions of a facade assembly. Another function...

Hi all, I am trying to use the `dotnet new` template for [PowerShellStandard 7.0.0-preview.1](https://www.nuget.org/packages/PowerShellStandard.Library/7.0.0-preview.1), but I found something weird. The installation command gives me no error, but the `psmodule` template...

A common issue when developing modules is running into assembly conflicts with other modules due to strong-named assemblies and having to use a [Powershell-Level "binding redirect" by intercepting the assembly...

Hello, Been trying to figure out how to do this. Say I have a script module that wants to use Microsoft.Extensions.Configuration. This nuget package, targeted for .NET standard 2.0, has...

question