Skip to content

Commit

Permalink
1.6.4 - Fixed: NuGet development dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
equiman committed Apr 27, 2020
1 parent a98aca3 commit b19a777
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 12 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: 3.1.201
version: 1.6.3
version: 1.6.4
key: dein:toolbox
organization: dein
name: ToolBox
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

env:
dotnet: 3.1.201
version: 1.6.3
version: 1.6.4

jobs:
pack:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ Fixed for any bug fixes.
Security to invite users to upgrade in case of vulnerabilities.
-->

## [1.6.4] - 2020-04-27

**Fixed:**

- NuGet development dependency.

## [1.6.3] - 2020-04-22

**Fixed:**
Expand Down
2 changes: 1 addition & 1 deletion 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.5.0" />
<PackageReference Include="dein.ToolBox" Version="1.6.3" />
<PackageReference Include="dein.ToolBox" Version="1.6.4" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
</ItemGroup>
<PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion Sample/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.6.3" /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.6.4" /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 Sample/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.6.3" /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.6.4" /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
4 changes: 2 additions & 2 deletions ToolBox/ToolBox.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<PropertyGroup>
<AssemblyName>ToolBox</AssemblyName>
<PackageId>ToolBox</PackageId>
<VersionPrefix>1.6.3</VersionPrefix>
<VersionPrefix>1.6.4</VersionPrefix>
<ProjectGuid>{cc239282-2799-4be9-a88f-aa8b744b533d}</ProjectGuid>

<Authors>Camilo Martinez</Authors>
<Company>dein Software</Company>
<NeutralLanguage>en-US</NeutralLanguage>
<AssemblyTitle>ToolBox</AssemblyTitle>
<Description>C# NETCore ToolBox Library</Description>
<Copyright>dein Software © 2017</Copyright>
<Copyright>dein Software © since 2017</Copyright>

<PackageTags>dotnet;core;win-x64;osx-x64</PackageTags>
<PackageIconUrl>https://github.com/deinsoftware/toolbox/blob/master/icon.png</PackageIconUrl>
Expand Down
6 changes: 3 additions & 3 deletions 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.6.3</version>
<version>1.6.4</version>
<title>dein ToolBox</title>
<authors>Camilo Martinez</authors>
<owners>dein,equiman</owners>
Expand All @@ -16,10 +16,10 @@
<summary>C# .Net Core Library with utilities like: command line, files, log, platform, shell, system, transform and validation [ Win+Mac+Linux ]</summary>
<documentation src="README.md" />
<releaseNotes>Refer to https://github.com/deinsoftware/colorify/blob/master/CHANGELOG.md on GitHub.</releaseNotes>
<copyright>dein Software © 2017</copyright>
<copyright>dein Software © since 2017</copyright>
<tags>toolboxes dotnet-core macos windows library csharp toolbox validation-library osdetection command-line</tags>
<language>en-US</language>
<developmentDependency>true</developmentDependency>
<developmentDependency>false</developmentDependency>
<dependencies>
<group targetFramework="netcoreapp2.2">
<dependency id="Newtonsoft.Json" version="12.0.3" />
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.6.3" /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.6.4" /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.6.3" /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.6.4" /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 b19a777

Please sign in to comment.