You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running pulumi about for a .NET Pulumi program, it shows unknown for the language plugin version. Instead, it should show the version of the language plugin.
GetPluginInfo is returning version.Version for the version:
But the wrong package is being used. It's using "github.com/pulumi/pulumi/sdk/v3/go/common/version" when it should be using "github.com/pulumi/pulumi-dotnet/pulumi-language-dotnet/version" as the latter package's Version variable is the one that's actually being set during build:
When running
pulumi about
for a .NET Pulumi program, it showsunknown
for the language plugin version. Instead, it should show the version of the language plugin.GetPluginInfo
is returningversion.Version
for the version:pulumi-dotnet/pulumi-language-dotnet/main.go
Lines 805 to 809 in e105d32
But the wrong package is being used. It's using
"github.com/pulumi/pulumi/sdk/v3/go/common/version"
when it should be using"github.com/pulumi/pulumi-dotnet/pulumi-language-dotnet/version"
as the latter package'sVersion
variable is the one that's actually being set during build:pulumi-dotnet/.goreleaser.yml
Lines 17 to 18 in e105d32
The text was updated successfully, but these errors were encountered: