Commit a861f38f authored by justcoding121's avatar justcoding121

release build

parent 871985c0
...@@ -10,7 +10,18 @@ ...@@ -10,7 +10,18 @@
"cwd": "${workspaceRoot}", "cwd": "${workspaceRoot}",
"stopAtEntry": false, "stopAtEntry": false,
"console": "integratedTerminal", "console": "integratedTerminal",
"preLaunchTask": "build-basic-example-netcore" "preLaunchTask": "build-basic-example-netcore-debug"
},
{
"name": "NetCore|Release|Basic Example",
"type": "coreclr",
"request": "launch",
"program": "${workspaceRoot}/examples/Titanium.Web.Proxy.Examples.Basic/bin/Release/netcoreapp2.0/Titanium.Web.Proxy.Examples.Basic.NetCore.dll",
"args": [],
"cwd": "${workspaceRoot}",
"stopAtEntry": false,
"console": "integratedTerminal",
"preLaunchTask": "build-basic-example-netcore-release"
} }
] ]
} }
\ No newline at end of file
...@@ -14,7 +14,8 @@ ...@@ -14,7 +14,8 @@
"**/Titanium.Web.Proxy.Examples.Wpf/" : true, "**/Titanium.Web.Proxy.Examples.Wpf/" : true,
"**/*.Basic.csproj/": true, "**/*.Basic.csproj/": true,
"**/*.Docs.csproj/": true, "**/*.Docs.csproj/": true,
"**/*.Proxy.csproj/": true "**/*.Proxy.csproj/": true,
"**/*.Proxy.csproj" : true
}, },
"search.exclude": { "search.exclude": {
"**/.build": true, "**/.build": true,
...@@ -30,6 +31,7 @@ ...@@ -30,6 +31,7 @@
"**/Titanium.Web.Proxy.Examples.Wpf/" : true, "**/Titanium.Web.Proxy.Examples.Wpf/" : true,
"**/*.Basic.csproj/": true, "**/*.Basic.csproj/": true,
"**/*.Docs.csproj/": true, "**/*.Docs.csproj/": true,
"**/*.Proxy.csproj/": true "**/*.Proxy.csproj/": true,
"**/*.Proxy.csproj" : true
} }
} }
\ No newline at end of file
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
"version": "2.0.0", "version": "2.0.0",
"tasks": [ "tasks": [
{ {
"label": "build-basic-example-netcore", "label": "build-basic-example-netcore-debug",
"type": "process", "type": "process",
"command": "dotnet", "command": "dotnet",
"args": ["build","${workspaceFolder}/examples/Titanium.Web.Proxy.Examples.Basic/Titanium.Web.Proxy.Examples.Basic.NetCore.csproj"], "args": ["build","${workspaceFolder}/examples/Titanium.Web.Proxy.Examples.Basic/Titanium.Web.Proxy.Examples.Basic.NetCore.csproj"],
...@@ -11,6 +11,17 @@ ...@@ -11,6 +11,17 @@
"kind": "build", "kind": "build",
"isDefault": true "isDefault": true
} }
},
{
"label": "build-basic-example-netcore-release",
"type": "process",
"command": "dotnet",
"args": ["build","${workspaceFolder}/examples/Titanium.Web.Proxy.Examples.Basic/Titanium.Web.Proxy.Examples.Basic.NetCore.csproj", "-c", "Release"],
"problemMatcher": "$msCompile",
"group": {
"kind": "build",
"isDefault": true
}
} }
] ]
} }
\ No newline at end of file
...@@ -5,7 +5,8 @@ ...@@ -5,7 +5,8 @@
"**/tests/", "**/tests/",
"**/Titanium.Web.Proxy.Examples.Wpf/", "**/Titanium.Web.Proxy.Examples.Wpf/",
"**/*.Basic.csproj", "**/*.Basic.csproj",
"**/*.Proxy.csproj" "**/*.Proxy.csproj",
"**/*.Mono.csproj"
] ]
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment