File tree Expand file tree Collapse file tree 7 files changed +12
-5
lines changed
Expand file tree Collapse file tree 7 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 88
99env :
1010 dotnet : 3.1.201
11- version : 7.8.1
11+ version : 7.9.0
1212 key : dein:hardhat
1313 organization : dein
1414 name : HardHat
Original file line number Diff line number Diff line change 77
88env :
99 dotnet : 3.1.201
10- version : 7.8.1
10+ version : 7.9.0
1111
1212jobs :
1313 win :
Original file line number Diff line number Diff line change @@ -9,6 +9,12 @@ Fixed for any bug fixes.
99Security to invite users to upgrade in case of vulnerabilities.
1010-->
1111
12+ ## [ 7.9.0] - 2020-04-24
13+
14+ ** Added:**
15+
16+ - Task to kill all gulp process running
17+
1218## [ 7.8.1] - 2020-04-24
1319
1420** Updated:**
Original file line number Diff line number Diff line change 22 <PropertyGroup >
33 <AssemblyName >HardHat</AssemblyName >
44 <PackageId >HardHat</PackageId >
5- <VersionPrefix >7.8.1 </VersionPrefix >
5+ <VersionPrefix >7.9.0 </VersionPrefix >
66 <ProjectGuid >{b407f8af-bade-4c29-a9e6-11547ca64281}</ProjectGuid >
77
88 <Authors >Camilo Martinez</Authors >
Original file line number Diff line number Diff line change @@ -283,6 +283,7 @@ Choose the desired letter combination and let **HardHat** work for you.
283283| <kbd >tr</kbd > | Revert original files to selected project. |
284284| <kbd >tt</kbd > | Launch ` gulp test ` command over selected project to ` TASK_PROJECT ` . Start server according to previous configuration. |
285285| <kbd >ts</kbd > | Launch ` gulp server ` command over selected project to ` TASK_PROJECT ` . Start server according to previous configuration. |
286+ | <kbd >tk</kbd > | Run ` kill gulp ` command. |
286287| <kbd >tl</kbd > | Launch ` gulp log ` command over selected project to ` TASK_PROJECT ` . |
287288
288289_ See [ Environment Variables] ( #environment-variables ) section_ for ` TASK_PROJECT ` configuration.
Original file line number Diff line number Diff line change 11@ echo off
22set /p token = < sonar.txt
33:: https://docs.sonarqube.org/display/SONAR/Analysis+Parameters
4- dotnet sonarscanner begin /k:" dein:hardhat" /n:" HardHat" /v:" 7.8.1 " /o:" dein" /d:sonar.host.url=" https://sonarcloud.io" /d:sonar.login=" %token% " /d:sonar.language=" cs" /d:sonar.exclusions=" **/bin/**/*,**/obj/**/*"
4+ dotnet sonarscanner begin /k:" dein:hardhat" /n:" HardHat" /v:" 7.9.0 " /o:" dein" /d:sonar.host.url=" https://sonarcloud.io" /d:sonar.login=" %token% " /d:sonar.language=" cs" /d:sonar.exclusions=" **/bin/**/*,**/obj/**/*"
55dotnet restore
66dotnet build
77dotnet test HardHat.Tests/HardHat.Tests.csproj
Original file line number Diff line number Diff line change 11#! /bin/bash
22token=" $( cat sonar.txt) "
33# https://docs.sonarqube.org/display/SONAR/Analysis+Parameters
4- dotnet sonarscanner begin /k:" dein:hardhat" /n:" HardHat" /v:" 7.8.1 " /o:" dein" /d:sonar.host.url=" https://sonarcloud.io" /d:sonar.login=" ${token} " /d:sonar.language=" cs" /d:sonar.exclusions=" **/bin/**/*,**/obj/**/*"
4+ dotnet sonarscanner begin /k:" dein:hardhat" /n:" HardHat" /v:" 7.9.0 " /o:" dein" /d:sonar.host.url=" https://sonarcloud.io" /d:sonar.login=" ${token} " /d:sonar.language=" cs" /d:sonar.exclusions=" **/bin/**/*,**/obj/**/*"
55dotnet restore
66dotnet build
77dotnet test HardHat.Tests/HardHat.Tests.csproj
You can’t perform that action at this time.
0 commit comments