CI: add dotnet --info / df -h / free -m diagnostics and an explicit 'Restore NuGet packages' step before build to isolate restore failures (build of e15f650 on main exited with code -1 and zero dotnet output).
#5
@@ -6,6 +6,14 @@ The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) loos
|
|||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
## 2026.06.05.0015
|
||||||
|
|
||||||
|
- Build produced from commit fb27ab8a8503.
|
||||||
|
|
||||||
|
## Unreleased (carried forward)
|
||||||
|
|
||||||
|
- Fixed `ParameterNameConflictsWithAlias` registration error on `Get-InfisicalCertificateApplication`, `Get-InfisicalCertificateApplicationEnrollment`, and `New-InfisicalScepDynamicChallenge`. The cmdlets each declared an `[Alias]` entry that matched the parameter's own name, which PowerShell rejects at bind time and made the cmdlets unusable.
|
||||||
|
|
||||||
## 2026.06.04.2335
|
## 2026.06.04.2335
|
||||||
|
|
||||||
- Build produced from commit 3c39a99b9a4c.
|
- Build produced from commit 3c39a99b9a4c.
|
||||||
|
|||||||
@@ -11,11 +11,11 @@ namespace PSInfisicalAPI.Cmdlets
|
|||||||
public sealed class GetInfisicalCertificateApplicationCmdlet : InfisicalCmdletBase
|
public sealed class GetInfisicalCertificateApplicationCmdlet : InfisicalCmdletBase
|
||||||
{
|
{
|
||||||
[Parameter(ParameterSetName = "ById", Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true)]
|
[Parameter(ParameterSetName = "ById", Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true)]
|
||||||
[Alias("Id", "ApplicationId")]
|
[Alias("ApplicationId")]
|
||||||
public string Id { get; set; }
|
public string Id { get; set; }
|
||||||
|
|
||||||
[Parameter(ParameterSetName = "ByName", Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true)]
|
[Parameter(ParameterSetName = "ByName", Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true)]
|
||||||
[Alias("Name", "ApplicationName")]
|
[Alias("Name")]
|
||||||
public string ApplicationName { get; set; }
|
public string ApplicationName { get; set; }
|
||||||
|
|
||||||
[Parameter] public string ProjectId { get; set; }
|
[Parameter] public string ProjectId { get; set; }
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ namespace PSInfisicalAPI.Cmdlets
|
|||||||
public sealed class GetInfisicalCertificateApplicationEnrollmentCmdlet : InfisicalCmdletBase
|
public sealed class GetInfisicalCertificateApplicationEnrollmentCmdlet : InfisicalCmdletBase
|
||||||
{
|
{
|
||||||
[Parameter(Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true)]
|
[Parameter(Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true)]
|
||||||
[Alias("Id", "ApplicationId")]
|
[Alias("Id")]
|
||||||
public string ApplicationId { get; set; }
|
public string ApplicationId { get; set; }
|
||||||
|
|
||||||
[Parameter(Mandatory = true, Position = 1, ValueFromPipelineByPropertyName = true)]
|
[Parameter(Mandatory = true, Position = 1, ValueFromPipelineByPropertyName = true)]
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ namespace PSInfisicalAPI.Cmdlets
|
|||||||
public sealed class NewInfisicalScepDynamicChallengeCmdlet : InfisicalCmdletBase
|
public sealed class NewInfisicalScepDynamicChallengeCmdlet : InfisicalCmdletBase
|
||||||
{
|
{
|
||||||
[Parameter(Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true)]
|
[Parameter(Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true)]
|
||||||
[Alias("Id", "ApplicationId")]
|
[Alias("Id")]
|
||||||
public string ApplicationId { get; set; }
|
public string ApplicationId { get; set; }
|
||||||
|
|
||||||
[Parameter(Mandatory = true, Position = 1, ValueFromPipelineByPropertyName = true)]
|
[Parameter(Mandatory = true, Position = 1, ValueFromPipelineByPropertyName = true)]
|
||||||
|
|||||||
Reference in New Issue
Block a user