Skip to content

Commit

Permalink
Merge pull request #198 from seesharper/bump-to-lightinject6.5.2
Browse files Browse the repository at this point in the history
Bump to LightInject 6.5.2
  • Loading branch information
seesharper committed Sep 9, 2022
2 parents 1eb32c6 + 375510e commit 9f97402
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 8 deletions.
33 changes: 26 additions & 7 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,14 @@
{
"label": "build",
"command": "dotnet",
"args": ["build", "/property:GenerateFullPaths=true"],
"args": [
"build",
"/property:GenerateFullPaths=true"
],
"type": "shell",
"options": { "cwd": "src" },
"options": {
"cwd": "${workspaceFolder}"
},
"group": "build",
"presentation": {
"reveal": "always"
Expand All @@ -16,9 +21,15 @@
{
"label": "rebuild",
"command": "dotnet",
"args": ["build", "--no-incremental", "/property:GenerateFullPaths=true"],
"args": [
"build",
"--no-incremental",
"/property:GenerateFullPaths=true"
],
"type": "shell",
"options": { "cwd": "src" },
"options": {
"cwd": "src"
},
"group": "build",
"presentation": {
"reveal": "always",
Expand All @@ -30,7 +41,11 @@
"label": "test",
"command": "dotnet",
"type": "process",
"args": ["script", "${workspaceFolder}/build/build.csx", "test"],
"args": [
"script",
"${workspaceFolder}/build/build.csx",
"test"
],
"problemMatcher": "$msCompile",
"group": {
"kind": "test",
Expand All @@ -49,12 +64,16 @@
"label": "test with coverage",
"command": "dotnet",
"type": "process",
"args": ["script", "${workspaceFolder}/build/build.csx", "testcoverage"],
"args": [
"script",
"${workspaceFolder}/build/build.csx",
"testcoverage"
],
"problemMatcher": "$msCompile",
"group": {
"kind": "test",
"isDefault": true
}
}
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="LightInject" Version="6.5.1" />
<PackageReference Include="LightInject" Version="6.5.2" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0" />
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.354">
<PrivateAssets>all</PrivateAssets>
Expand Down

0 comments on commit 9f97402

Please sign in to comment.