Skip to content

Commit 066ec34

Browse files
authored
change nuget package id to MinimalCli (#63)
1 parent 42edacf commit 066ec34

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/cd-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Display structure of downloaded files
5252
run: ls -R
5353
- name: Push MinimalCommandLine Nuget
54-
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
54+
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
5555

5656
production:
5757
needs: integration
@@ -66,4 +66,4 @@ jobs:
6666
name: Nugets
6767

6868
- name: Push MinimalCommandLine Nuget
69-
run: dotnet nuget push ./MinimalCommandLine.0.5.0.${{github.run_number}}.nupkg --api-key ${{secrets.NUGETKEY}} --source https://api.nuget.org/v3/index.json
69+
run: dotnet nuget push ./MinimalCli.0.5.0.${{github.run_number}}.nupkg --api-key ${{secrets.NUGETKEY}} --source https://api.nuget.org/v3/index.json

src/MinimalCli.Core/MinimalCli.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<LangVersion>latest</LangVersion>
66
<Nullable>enable</Nullable>
7-
<PackageId>MinimalCommandLine.Core</PackageId>
7+
<PackageId>MinimalCli.Core</PackageId>
88
<Title>Minimal Command Line Core APIs</Title>
99
<Authors>dotnetKyle</Authors>
1010
<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>

src/MinimalCli.SourceGenerator/MinimalCli.SourceGenerator.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<LangVersion>latest</LangVersion>
66
<Nullable>enable</Nullable>
7-
<PackageId>MinimalCommandLine.SourceGenerator</PackageId>
7+
<PackageId>MinimalCli.SourceGenerator</PackageId>
88
<Title>Minimal Command Line Source Generator</Title>
99
<Authors>dotnetKyle</Authors>
1010
<Description>A source generator for MinimalCommandLine. Enables the quick rigging of commands using a Command attribute.</Description>

src/MinimalCli/MinimalCli.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<LangVersion>latest</LangVersion>
66
<Nullable>enable</Nullable>
7-
<PackageId>MinimalCommandLine</PackageId>
7+
<PackageId>MinimalCli</PackageId>
88
<Title>Minimal Command Line</Title>
99
<Authors>dotnetKyle</Authors>
1010
<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>

0 commit comments

Comments
 (0)