diff --git a/.github/workflows/cd-build.yml b/.github/workflows/cd-build.yml index a206aa5..376d9e8 100644 --- a/.github/workflows/cd-build.yml +++ b/.github/workflows/cd-build.yml @@ -51,7 +51,7 @@ jobs: - name: Display structure of downloaded files run: ls -R - name: Push MinimalCommandLine Nuget - run: dotnet nuget push ./MinimalCommandLine.0.5.0.${{github.run_number}}-alpha.nupkg --api-key ${{secrets.NUGETKEY}} --source https://api.nuget.org/v3/index.json + run: dotnet nuget push ./MinimalCli.0.5.0.${{github.run_number}}-alpha.nupkg --api-key ${{secrets.NUGETKEY}} --source https://api.nuget.org/v3/index.json production: needs: integration @@ -66,4 +66,4 @@ jobs: name: Nugets - name: Push MinimalCommandLine Nuget - run: dotnet nuget push ./MinimalCommandLine.0.5.0.${{github.run_number}}.nupkg --api-key ${{secrets.NUGETKEY}} --source https://api.nuget.org/v3/index.json + run: dotnet nuget push ./MinimalCli.0.5.0.${{github.run_number}}.nupkg --api-key ${{secrets.NUGETKEY}} --source https://api.nuget.org/v3/index.json diff --git a/src/MinimalCli.Core/MinimalCli.Core.csproj b/src/MinimalCli.Core/MinimalCli.Core.csproj index 83070ad..f09222b 100644 --- a/src/MinimalCli.Core/MinimalCli.Core.csproj +++ b/src/MinimalCli.Core/MinimalCli.Core.csproj @@ -4,7 +4,7 @@ netstandard2.0 latest enable - MinimalCommandLine.Core + MinimalCli.Core Minimal Command Line Core APIs dotnetKyle A set of minimal builders that sits on top of the System.CommandLine namespace to give an experience similar to the ASP.Net Core minimal API builders. diff --git a/src/MinimalCli.SourceGenerator/MinimalCli.SourceGenerator.csproj b/src/MinimalCli.SourceGenerator/MinimalCli.SourceGenerator.csproj index 3892eae..a0e5712 100644 --- a/src/MinimalCli.SourceGenerator/MinimalCli.SourceGenerator.csproj +++ b/src/MinimalCli.SourceGenerator/MinimalCli.SourceGenerator.csproj @@ -4,7 +4,7 @@ netstandard2.0 latest enable - MinimalCommandLine.SourceGenerator + MinimalCli.SourceGenerator Minimal Command Line Source Generator dotnetKyle A source generator for MinimalCommandLine. Enables the quick rigging of commands using a Command attribute. diff --git a/src/MinimalCli/MinimalCli.csproj b/src/MinimalCli/MinimalCli.csproj index a62f981..dc519e8 100644 --- a/src/MinimalCli/MinimalCli.csproj +++ b/src/MinimalCli/MinimalCli.csproj @@ -4,7 +4,7 @@ netstandard2.0 latest enable - MinimalCommandLine + MinimalCli Minimal Command Line dotnetKyle A source generator on top of System.CommandLine to minimize the boiler plate needed to get started. Just add a [Command] attribute to a function to get started!