-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to 1.8.0 version with dotnet 6 support
- Loading branch information
Showing
14 changed files
with
212 additions
and
182 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,8 @@ on: | |
- "v*" | ||
|
||
env: | ||
dotnet: 5.0.100 | ||
version: 1.7.1 | ||
dotnet: 6.0.201 | ||
version: 1.8.0 | ||
|
||
jobs: | ||
pack: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
{ | ||
// Use IntelliSense to find out which attributes exist for C# debugging | ||
// Use hover for the description of the existing attributes | ||
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": ".NET Launch (console)", | ||
"type": "coreclr", | ||
"request": "launch", | ||
"preLaunchTask": "build", | ||
// If you have changed target frameworks, make sure to update the program path. | ||
"program": "${workspaceFolder}/ToolBox.Tests/bin/Debug/net5.0/ToolBox.Tests.dll", | ||
"args": [], | ||
"cwd": "${workspaceFolder}/ToolBox.Tests", | ||
// For more information about the 'console' field, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window | ||
"console": "internalConsole", | ||
"stopAtEntry": false, | ||
"internalConsoleOptions": "openOnSessionStart" | ||
}, | ||
{ | ||
"name": ".NET Attach", | ||
"type": "coreclr", | ||
"request": "attach", | ||
"processId": "${command:pickProcess}" | ||
} | ||
] | ||
} | ||
// Use IntelliSense to find out which attributes exist for C# debugging | ||
// Use hover for the description of the existing attributes | ||
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": ".NET Launch (console)", | ||
"type": "coreclr", | ||
"request": "launch", | ||
"preLaunchTask": "build", | ||
// If you have changed target frameworks, make sure to update the program path. | ||
"program": "${workspaceFolder}/ToolBox.Tests/bin/Debug/net6.0/ToolBox.Tests.dll", | ||
"args": [], | ||
"cwd": "${workspaceFolder}/ToolBox.Tests", | ||
// For more information about the 'console' field, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window | ||
"console": "internalConsole", | ||
"stopAtEntry": false, | ||
"internalConsoleOptions": "openOnSessionStart" | ||
}, | ||
{ | ||
"name": ".NET Attach", | ||
"type": "coreclr", | ||
"request": "attach", | ||
"processId": "${command:pickProcess}" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,118 +1,116 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [{ | ||
"label": "build", | ||
"command": "dotnet", | ||
"type": "process", | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
}, | ||
"args": [ | ||
"build", | ||
"${workspaceFolder}/ToolBox/ToolBox.csproj" | ||
], | ||
"problemMatcher": "$msCompile" | ||
}, | ||
{ | ||
"label": "build tests", | ||
"command": "dotnet", | ||
"type": "process", | ||
"group": "build", | ||
"args": [ | ||
"build", | ||
"${workspaceFolder}/ToolBox.Tests/ToolBox.Tests.csproj" | ||
], | ||
"problemMatcher": "$msCompile" | ||
}, | ||
{ | ||
"label": "test", | ||
"command": "dotnet", | ||
"type": "process", | ||
"group": { | ||
"kind": "test", | ||
"isDefault": true | ||
}, | ||
"args": [ | ||
"test", | ||
"${workspaceFolder}/ToolBox.Tests/ToolBox.Tests.csproj", | ||
"/p:CollectCoverage=true", | ||
"/p:CoverletOutputFormat=\"opencover,lcov\"", | ||
"/p:CoverletOutput=../lcov" | ||
], | ||
"problemMatcher": "$msCompile" | ||
}, | ||
{ | ||
"label": "publish win", | ||
"command": "dotnet", | ||
"group": "none", | ||
"args": [ | ||
"publish", | ||
"${workspaceRoot}/ToolBox/ToolBox.csproj", | ||
"-o", | ||
"${workspaceRoot}/Library/win/", | ||
"-c", | ||
"release", | ||
"-r", | ||
"win10-x64" | ||
], | ||
"problemMatcher": "$msCompile" | ||
}, | ||
{ | ||
"label": "publish mac", | ||
"command": "dotnet", | ||
"args": [ | ||
"publish", | ||
"${workspaceRoot}/ToolBox/ToolBox.csproj", | ||
"-o", | ||
"${workspaceRoot}/Library/mac/", | ||
"-c", | ||
"release", | ||
"-r", | ||
"osx.10.12-x64" | ||
], | ||
"problemMatcher": "$msCompile" | ||
}, | ||
{ | ||
"label": "pack", | ||
"command": "dotnet", | ||
"args": [ | ||
"pack", | ||
"${workspaceRoot}/ToolBox/ToolBox.csproj", | ||
"/p:NuspecFile=${workspaceRoot}/ToolBox/ToolBox.nuspec", | ||
"-o", | ||
"${workspaceRoot}/Package/", | ||
"-c", | ||
"release" | ||
], | ||
"problemMatcher": "$msCompile" | ||
}, | ||
{ | ||
"label": "permissions", | ||
"type": "shell", | ||
"osx": { | ||
"command": "chmod +x ${workspaceRoot}/sonar.sh" | ||
}, | ||
"presentation": { | ||
"reveal": "always", | ||
"panel": "new" | ||
}, | ||
"problemMatcher": [] | ||
}, | ||
{ | ||
"label": "sonar", | ||
"type": "shell", | ||
"windows": { | ||
"command": "${workspaceRoot}\\sonar.bat" | ||
}, | ||
"osx": { | ||
"command": "${workspaceRoot}/sonar.sh" | ||
}, | ||
"presentation": { | ||
"reveal": "always", | ||
"panel": "new" | ||
}, | ||
"problemMatcher": [] | ||
} | ||
] | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "build", | ||
"command": "dotnet", | ||
"type": "process", | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
}, | ||
"args": ["build", "${workspaceFolder}/ToolBox/ToolBox.csproj"], | ||
"problemMatcher": "$msCompile" | ||
}, | ||
{ | ||
"label": "build tests", | ||
"command": "dotnet", | ||
"type": "process", | ||
"group": "build", | ||
"args": [ | ||
"build", | ||
"${workspaceFolder}/ToolBox.Tests/ToolBox.Tests.csproj" | ||
], | ||
"problemMatcher": "$msCompile" | ||
}, | ||
{ | ||
"label": "test", | ||
"command": "dotnet", | ||
"type": "process", | ||
"group": { | ||
"kind": "test", | ||
"isDefault": true | ||
}, | ||
"args": [ | ||
"test", | ||
"${workspaceFolder}/ToolBox.Tests/ToolBox.Tests.csproj", | ||
"/p:CollectCoverage=true", | ||
"/p:CoverletOutputFormat=\"opencover,lcov\"", | ||
"/p:CoverletOutput=../lcov" | ||
], | ||
"problemMatcher": "$msCompile" | ||
}, | ||
{ | ||
"label": "publish win", | ||
"command": "dotnet", | ||
"group": "none", | ||
"args": [ | ||
"publish", | ||
"${workspaceRoot}/ToolBox/ToolBox.csproj", | ||
"-o", | ||
"${workspaceRoot}/Library/win/", | ||
"-c", | ||
"release", | ||
"-r", | ||
"win10-x64" | ||
], | ||
"problemMatcher": "$msCompile" | ||
}, | ||
{ | ||
"label": "publish mac", | ||
"command": "dotnet", | ||
"args": [ | ||
"publish", | ||
"${workspaceRoot}/ToolBox/ToolBox.csproj", | ||
"-o", | ||
"${workspaceRoot}/Library/mac/", | ||
"-c", | ||
"release", | ||
"-r", | ||
"osx.10.12-x64" | ||
], | ||
"problemMatcher": "$msCompile" | ||
}, | ||
{ | ||
"label": "pack", | ||
"command": "dotnet", | ||
"args": [ | ||
"pack", | ||
"${workspaceRoot}/ToolBox/ToolBox.csproj", | ||
"/p:NuspecFile=${workspaceRoot}/ToolBox/ToolBox.nuspec", | ||
"-o", | ||
"${workspaceRoot}/Package/", | ||
"-c", | ||
"release" | ||
], | ||
"problemMatcher": "$msCompile" | ||
}, | ||
{ | ||
"label": "permissions", | ||
"type": "shell", | ||
"osx": { | ||
"command": "chmod +x ${workspaceRoot}/sonar.sh" | ||
}, | ||
"presentation": { | ||
"reveal": "always", | ||
"panel": "new" | ||
}, | ||
"problemMatcher": [] | ||
}, | ||
{ | ||
"label": "sonar", | ||
"type": "shell", | ||
"windows": { | ||
"command": "${workspaceRoot}\\sonar.bat" | ||
}, | ||
"osx": { | ||
"command": "${workspaceRoot}/sonar.sh" | ||
}, | ||
"presentation": { | ||
"reveal": "always", | ||
"panel": "new" | ||
}, | ||
"problemMatcher": [] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<ItemGroup> | ||
<PackageReference Include="dein.Colorify" Version="2.6.0" /> | ||
<PackageReference Include="dein.ToolBox" Version="1.7.1" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" /> | ||
<PackageReference Include="dein.Colorify" Version="2.7.0" /> | ||
<PackageReference Include="dein.ToolBox" Version="1.8.0" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net5.0</TargetFramework> | ||
<TargetFramework>net6.0</TargetFramework> | ||
</PropertyGroup> | ||
</Project> |
Oops, something went wrong.