diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index e69eee1..fc3b892 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -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"
@@ -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",
@@ -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",
@@ -49,7 +64,11 @@
"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",
@@ -57,4 +76,4 @@
}
}
]
-}
+}
\ No newline at end of file
diff --git a/src/LightInject.Microsoft.DependencyInjection/LightInject.Microsoft.DependencyInjection.csproj b/src/LightInject.Microsoft.DependencyInjection/LightInject.Microsoft.DependencyInjection.csproj
index ec276ea..28fa7d1 100644
--- a/src/LightInject.Microsoft.DependencyInjection/LightInject.Microsoft.DependencyInjection.csproj
+++ b/src/LightInject.Microsoft.DependencyInjection/LightInject.Microsoft.DependencyInjection.csproj
@@ -18,7 +18,7 @@
$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb
-
+
all