Skip to content

Commit

Permalink
Release prepared (#15)
Browse files Browse the repository at this point in the history
* Release prepared
* version to 1.1.xxx
  • Loading branch information
jinek authored Oct 28, 2022
1 parent 6a6b4d2 commit 7945d7a
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/general_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration release
- name: Pack
run: dotnet pack --configuration release -o ./packages --version-suffix alpha-9${{ github.run_number }} # https://stackoverflow.com/a/60067489/2362847
- name: Pack
run: dotnet pack --configuration release -o ./packages -p:PackageVersion=1.1.${{ github.run_number }} # https://stackoverflow.com/a/60067489/2362847
- name: Push
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main'}}
run: dotnet nuget push **/*.nupkg --api-key ${{ secrets.NUGET_KEY }} --source https://api.nuget.org/v3/index.json
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ Quick start video: https://youtu.be/-8zvnZgi1us

Locally:
```
dotnet tool install toolui.runner --version 0.10.12-alpha-5
dotnet tool run dotnet-ui
dotnet tool uninstall toolui.runner
dotnet tool install ToolUI
dotnet tool run dotnet-toolui
dotnet tool uninstall ToolUI
```
Globally:
```
dotnet tool install toolui.runner --global --version 0.10.12-alpha-5
dotnet-ui
dotnet tool uninstall toolui.runner --global
dotnet tool install ToolUI --global
dotnet-toolui
dotnet tool uninstall ToolUI --global
```
8 changes: 8 additions & 0 deletions src/ToolUI.sln
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ToolUi.Runner", "ToolUi.Runner\ToolUi.Runner.csproj", "{2325AC88-A24A-4F57-AA79-032EE80B8A55}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Root", "Root", "{46441E53-103B-4E92-BEF3-A079E56DC426}"
ProjectSection(SolutionItems) = preProject
..\LICENSE = ..\LICENSE
..\README.md = ..\README.md
..\.github\workflows\general_build.yml = ..\.github\workflows\general_build.yml
.gitignore = .gitignore
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down
6 changes: 3 additions & 3 deletions src/ToolUi.Runner/ToolUi.Runner.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
<AssemblyName>ToolUi.Runner</AssemblyName>
</PropertyGroup>

<PropertyGroup>
<VersionPrefix>0.10.18</VersionPrefix>
<PropertyGroup>
<Authors>Evgeny Gorbovoy</Authors>
<Description>Text user interface for managing other dotnet tools</Description>
<Copyright>Copyright © Evgeny Gorbovoy 2021 - 2022</Copyright>

<PackageId>ToolUI</PackageId>
<IsPackable>true</IsPackable>
<PackAsTool>true</PackAsTool>
<ToolCommandName>dotnet-ui</ToolCommandName>
<ToolCommandName>dotnet-toolui</ToolCommandName>
</PropertyGroup>

<PropertyGroup>
Expand Down

0 comments on commit 7945d7a

Please sign in to comment.