Skip to content

Commit

Permalink
update branding
Browse files Browse the repository at this point in the history
  • Loading branch information
equiman committed May 21, 2022
1 parent 20f738b commit c4ceb01
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

env:
dotnet: 6.0.201
version: 1.9.2
version: 1.10.0
key: dein:toolbox
organization: dein
name: ToolBox
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

env:
dotnet: 6.0.201
version: 1.9.2
version: 1.10.0

jobs:
pack:
Expand All @@ -23,9 +23,9 @@ jobs:
- name: create file
run: dotnet pack ToolBox/ToolBox.csproj /p:NuspecFile=${{ github.workspace }}/ToolBox/ToolBox.nuspec -o ${{ github.workspace }}/Package/ -c release
- name: publish nuget on microsoft
run: dotnet nuget push "${{ github.workspace }}/Package/dein.ToolBox.${{ env.version }}.nupkg" -k ${{ secrets.NUGET_TOKEN }} -s "nuget" --skip-duplicate --no-symbols
run: dotnet nuget push "${{ github.workspace }}/Package/dein.ToolBox.${{ env.version }}.nupkg" -k ${{ secrets.NUGET_TOKEN }} -s "nuget" --skip-duplicate --no-symbols true 2>/dev/null
- name: publish nuget on github
run: dotnet nuget push "${{ github.workspace }}/Package/dein.ToolBox.${{ env.version }}.nupkg" -s "github" --skip-duplicate --no-symbols
run: dotnet nuget push "${{ github.workspace }}/Package/dein.ToolBox.${{ env.version }}.nupkg" -s "github" --skip-duplicate --no-symbols true 2>/dev/null

tweet:
needs: pack
Expand Down
4 changes: 2 additions & 2 deletions Sample/Sample.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<PackageReference Include="dein.Colorify" Version="2.7.1" />
<PackageReference Include="dein.ToolBox" Version="1.9.2" />
<PackageReference Include="dein.Colorify" Version="2.8.0" />
<PackageReference Include="dein.ToolBox" Version="1.10.0" />
</ItemGroup>
<PropertyGroup>
<OutputType>Exe</OutputType>
Expand Down
2 changes: 1 addition & 1 deletion ToolBox/ToolBox.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<AssemblyName>ToolBox</AssemblyName>
<PackageId>ToolBox</PackageId>
<VersionPrefix>1.9.2</VersionPrefix>
<VersionPrefix>1.10.0</VersionPrefix>
<ProjectGuid>{cc239282-2799-4be9-a88f-aa8b744b533d}</ProjectGuid>

<Authors>Camilo Martinez</Authors>
Expand Down
2 changes: 1 addition & 1 deletion ToolBox/ToolBox.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package >
<metadata>
<id>dein.ToolBox</id>
<version>1.9.2</version>
<version>1.10.0</version>
<title>dein ToolBox</title>
<authors>Camilo Martinez</authors>
<owners>dein,equiman</owners>
Expand Down
2 changes: 1 addition & 1 deletion sonar.bat
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@echo off
set /p token=<sonar.txt
:: https://docs.sonarqube.org/display/SONAR/Analysis+Parameters
dotnet sonarscanner begin /k:"dein:toolbox" /n:"ToolBox" /v:"1.9.2" /o:"dein" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.login="%token%" /d:sonar.language="cs" /d:sonar.exclusions="**/bin/**/*,**/obj/**/*" /d:sonar.coverage.exclusions="ToolBox.Tests/**,**/*Tests.cs" /d:sonar.cs.opencover.reportsPaths="%cd%\lcov.opencover.xml"
dotnet sonarscanner begin /k:"dein:toolbox" /n:"ToolBox" /v:"1.10.0" /o:"dein" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.login="%token%" /d:sonar.language="cs" /d:sonar.exclusions="**/bin/**/*,**/obj/**/*" /d:sonar.coverage.exclusions="ToolBox.Tests/**,**/*Tests.cs" /d:sonar.cs.opencover.reportsPaths="%cd%\lcov.opencover.xml"
dotnet restore
dotnet build
dotnet test ToolBox.Tests/ToolBox.Tests.csproj /p:CollectCoverage=true /p:CoverletOutputFormat=\"opencover,lcov\" /p:CoverletOutput=../lcov
Expand Down
2 changes: 1 addition & 1 deletion sonar.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
token="$(cat sonar.txt)"
dir="$(pwd)"
# https://docs.sonarqube.org/display/SONAR/Analysis+Parameters
dotnet sonarscanner begin /k:"dein:toolbox" /n:"ToolBox" /v:"1.9.2" /o:"dein" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.login="${token}" /d:sonar.language="cs" /d:sonar.exclusions="**/bin/**/*,**/obj/**/*" /d:sonar.cs.opencover.reportsPaths="${dir}/lcov.opencover.xml"
dotnet sonarscanner begin /k:"dein:toolbox" /n:"ToolBox" /v:"1.10.0" /o:"dein" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.login="${token}" /d:sonar.language="cs" /d:sonar.exclusions="**/bin/**/*,**/obj/**/*" /d:sonar.cs.opencover.reportsPaths="${dir}/lcov.opencover.xml"
dotnet restore
dotnet build
dotnet test ToolBox.Tests/ToolBox.Tests.csproj /p:CollectCoverage=true /p:CoverletOutputFormat=\"opencover,lcov\" /p:CoverletOutput=../lcov
Expand Down

0 comments on commit c4ceb01

Please sign in to comment.