Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/cd-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
2 changes: 1 addition & 1 deletion src/MinimalCli.Core/MinimalCli.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<PackageId>MinimalCommandLine.Core</PackageId>
<PackageId>MinimalCli.Core</PackageId>
<Title>Minimal Command Line Core APIs</Title>
<Authors>dotnetKyle</Authors>
<Description>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.</Description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<PackageId>MinimalCommandLine.SourceGenerator</PackageId>
<PackageId>MinimalCli.SourceGenerator</PackageId>
<Title>Minimal Command Line Source Generator</Title>
<Authors>dotnetKyle</Authors>
<Description>A source generator for MinimalCommandLine. Enables the quick rigging of commands using a Command attribute.</Description>
Expand Down
2 changes: 1 addition & 1 deletion src/MinimalCli/MinimalCli.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<PackageId>MinimalCommandLine</PackageId>
<PackageId>MinimalCli</PackageId>
<Title>Minimal Command Line</Title>
<Authors>dotnetKyle</Authors>
<Description>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!</Description>
Expand Down
Loading