You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ta...@apache.org on 2022/05/27 19:39:31 UTC

[qpid-proton-dotnet] branch main updated: PROTON-2551 Remove .vscode folders from source control

This is an automated email from the ASF dual-hosted git repository.

tabish pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-proton-dotnet.git


The following commit(s) were added to refs/heads/main by this push:
     new 174ea38  PROTON-2551 Remove .vscode folders from source control
174ea38 is described below

commit 174ea381efa370faa66cecb6df3ec69d905017c2
Author: Timothy Bish <ta...@gmail.com>
AuthorDate: Fri May 27 15:37:30 2022 -0400

    PROTON-2551 Remove .vscode folders from source control
    
    These IDE specific folders are easy to generate in the IDE and
    don't need to be tracked.
---
 .gitignore                                         |  1 +
 .vscode/launch.json                                | 26 --------------
 .vscode/tasks.json                                 | 41 ---------------------
 examples/.vscode/launch.json                       | 26 --------------
 examples/.vscode/tasks.json                        | 42 ----------------------
 examples/Example.HelloWorld/.vscode/launch.json    | 26 --------------
 examples/Example.HelloWorld/.vscode/tasks.json     | 42 ----------------------
 .../.vscode/launch.json                            | 26 --------------
 .../.vscode/tasks.json                             | 42 ----------------------
 .../Example.LargeMessageSender/.vscode/launch.json | 26 --------------
 .../Example.LargeMessageSender/.vscode/tasks.json  | 42 ----------------------
 examples/Example.Receive/.vscode/launch.json       | 26 --------------
 examples/Example.Receive/.vscode/tasks.json        | 42 ----------------------
 examples/Example.Request/.vscode/launch.json       | 26 --------------
 examples/Example.Request/.vscode/tasks.json        | 42 ----------------------
 examples/Example.Respond/.vscode/launch.json       | 26 --------------
 examples/Example.Respond/.vscode/tasks.json        | 42 ----------------------
 examples/Example.Send/.vscode/launch.json          | 26 --------------
 examples/Example.Send/.vscode/tasks.json           | 42 ----------------------
 .../.vscode/launch.json                            | 26 --------------
 .../.vscode/tasks.json                             | 42 ----------------------
 .../.vscode/launch.json                            | 26 --------------
 .../Example.StreamingFileSender/.vscode/tasks.json | 42 ----------------------
 .../Example.TransactedReceiver/.vscode/launch.json | 26 --------------
 .../Example.TransactedReceiver/.vscode/tasks.json  | 42 ----------------------
 .../Example.TransactedSender/.vscode/launch.json   | 26 --------------
 .../Example.TransactedSender/.vscode/tasks.json    | 42 ----------------------
 test/Proton.Client.Tests/.vscode/launch.json       | 27 --------------
 test/Proton.Client.Tests/.vscode/tasks.json        | 42 ----------------------
 test/Proton.TestPeer.Tests/.vscode/launch.json     | 26 --------------
 test/Proton.TestPeer.Tests/.vscode/tasks.json      | 42 ----------------------
 test/Proton.Tests/.vscode/launch.json              | 26 --------------
 test/Proton.Tests/.vscode/tasks.json               | 42 ----------------------
 33 files changed, 1 insertion(+), 1088 deletions(-)

diff --git a/.gitignore b/.gitignore
index c53298b..20e91b6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -50,6 +50,7 @@ bld/
 
 # Visual Studio 2015/2017 cache/options directory
 .vs/
+.vscode/
 # Uncomment if you have tasks that create the project's static files in wwwroot
 #wwwroot/
 
diff --git a/.vscode/launch.json b/.vscode/launch.json
deleted file mode 100644
index 1820d3b..0000000
--- a/.vscode/launch.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
-   "version": "0.2.0",
-   "configurations": [
-      {
-         // 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
-         "name": ".NET Core Launch (console)",
-         "type": "coreclr",
-         "request": "launch",
-         "preLaunchTask": "build",
-         // If you have changed target frameworks, make sure to update the program path.
-         "program": "${workspaceFolder}/dist/1.0.0-SNAPSHOT/qpid-proton-dotnet-src-1.0.0-SNAPSHOT/examples/Example.LargeMessageSender/bin/Debug/net5.0/Example.LargeMessageSender.dll",
-         "args": [],
-         "cwd": "${workspaceFolder}/dist/1.0.0-SNAPSHOT/qpid-proton-dotnet-src-1.0.0-SNAPSHOT/examples/Example.LargeMessageSender",
-         // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
-         "console": "internalConsole",
-         "stopAtEntry": false
-      },
-      {
-         "name": ".NET Core Attach",
-         "type": "coreclr",
-         "request": "attach"
-      }
-   ]
-}
\ No newline at end of file
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
deleted file mode 100644
index 8b2bfee..0000000
--- a/.vscode/tasks.json
+++ /dev/null
@@ -1,41 +0,0 @@
-{
-   "version": "2.0.0",
-   "tasks": [
-      {
-         "label": "build",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "build",
-            "${workspaceFolder}/dist/1.0.0-SNAPSHOT/qpid-proton-dotnet-src-1.0.0-SNAPSHOT/examples/Example.LargeMessageSender/Example.LargeMessageSender.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      },
-      {
-         "label": "publish",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "publish",
-            "${workspaceFolder}/dist/1.0.0-SNAPSHOT/qpid-proton-dotnet-src-1.0.0-SNAPSHOT/examples/Example.LargeMessageSender/Example.LargeMessageSender.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      },
-      {
-         "label": "watch",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "watch",
-            "run",
-            "--project",
-            "${workspaceFolder}/dist/1.0.0-SNAPSHOT/qpid-proton-dotnet-src-1.0.0-SNAPSHOT/examples/Example.LargeMessageSender/Example.LargeMessageSender.csproj"
-         ],
-         "problemMatcher": "$msCompile"
-      }
-   ]
-}
\ No newline at end of file
diff --git a/examples/.vscode/launch.json b/examples/.vscode/launch.json
deleted file mode 100644
index 53d24ac..0000000
--- a/examples/.vscode/launch.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
-   "version": "0.2.0",
-   "configurations": [
-      {
-         // 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
-         "name": ".NET Core Launch (console)",
-         "type": "coreclr",
-         "request": "launch",
-         "preLaunchTask": "build",
-         // If you have changed target frameworks, make sure to update the program path.
-         "program": "${workspaceFolder}/Example.StreamingFileReceiver/bin/Debug/net5.0/Example.StreamingFileReceiver.dll",
-         "args": ["/tmp"],
-         "cwd": "${workspaceFolder}/Example.StreamingFileReceiver",
-         // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
-         "console": "internalConsole",
-         "stopAtEntry": false
-      },
-      {
-         "name": ".NET Core Attach",
-         "type": "coreclr",
-         "request": "attach"
-      }
-   ]
-}
\ No newline at end of file
diff --git a/examples/.vscode/tasks.json b/examples/.vscode/tasks.json
deleted file mode 100644
index 6675b6e..0000000
--- a/examples/.vscode/tasks.json
+++ /dev/null
@@ -1,42 +0,0 @@
-{
-   "version": "2.0.0",
-   "tasks": [
-      {
-         "label": "build",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "build",
-            "${workspaceFolder}/Example.ReconnectSender/Example.ReconnectSender.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      },
-      {
-         "label": "publish",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "publish",
-            "${workspaceFolder}/Example.ReconnectSender/Example.ReconnectSender.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      },
-      {
-         "label": "watch",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "watch",
-            "run",
-            "${workspaceFolder}/Example.ReconnectSender/Example.ReconnectSender.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      }
-   ]
-}
\ No newline at end of file
diff --git a/examples/Example.HelloWorld/.vscode/launch.json b/examples/Example.HelloWorld/.vscode/launch.json
deleted file mode 100644
index 7916a8e..0000000
--- a/examples/Example.HelloWorld/.vscode/launch.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
-   "version": "0.2.0",
-   "configurations": [
-      {
-         // 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
-         "name": ".NET Core Launch (console)",
-         "type": "coreclr",
-         "request": "launch",
-         "preLaunchTask": "build",
-         // If you have changed target frameworks, make sure to update the program path.
-         "program": "${workspaceFolder}/bin/Debug/net5.0/Proton.HelloWorld.dll",
-         "args": [],
-         "cwd": "${workspaceFolder}",
-         // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
-         "console": "internalConsole",
-         "stopAtEntry": false
-      },
-      {
-         "name": ".NET Core Attach",
-         "type": "coreclr",
-         "request": "attach"
-      }
-   ]
-}
\ No newline at end of file
diff --git a/examples/Example.HelloWorld/.vscode/tasks.json b/examples/Example.HelloWorld/.vscode/tasks.json
deleted file mode 100644
index b9612d5..0000000
--- a/examples/Example.HelloWorld/.vscode/tasks.json
+++ /dev/null
@@ -1,42 +0,0 @@
-{
-   "version": "2.0.0",
-   "tasks": [
-      {
-         "label": "build",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "build",
-            "${workspaceFolder}/Proton.HelloWorld.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      },
-      {
-         "label": "publish",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "publish",
-            "${workspaceFolder}/Proton.HelloWorld.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      },
-      {
-         "label": "watch",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "watch",
-            "run",
-            "${workspaceFolder}/Proton.HelloWorld.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      }
-   ]
-}
\ No newline at end of file
diff --git a/examples/Example.LargeMessageReceiver/.vscode/launch.json b/examples/Example.LargeMessageReceiver/.vscode/launch.json
deleted file mode 100644
index 3d5bace..0000000
--- a/examples/Example.LargeMessageReceiver/.vscode/launch.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
-   "version": "0.2.0",
-   "configurations": [
-      {
-         // 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
-         "name": ".NET Core Launch (console)",
-         "type": "coreclr",
-         "request": "launch",
-         "preLaunchTask": "build",
-         // If you have changed target frameworks, make sure to update the program path.
-         "program": "${workspaceFolder}/bin/Debug/net5.0/Example.LargeMessageReceiver.dll",
-         "args": [],
-         "cwd": "${workspaceFolder}",
-         // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
-         "console": "internalConsole",
-         "stopAtEntry": false
-      },
-      {
-         "name": ".NET Core Attach",
-         "type": "coreclr",
-         "request": "attach"
-      }
-   ]
-}
\ No newline at end of file
diff --git a/examples/Example.LargeMessageReceiver/.vscode/tasks.json b/examples/Example.LargeMessageReceiver/.vscode/tasks.json
deleted file mode 100644
index b496f7e..0000000
--- a/examples/Example.LargeMessageReceiver/.vscode/tasks.json
+++ /dev/null
@@ -1,42 +0,0 @@
-{
-   "version": "2.0.0",
-   "tasks": [
-      {
-         "label": "build",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "build",
-            "${workspaceFolder}/Example.LargeMessageReceiver.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      },
-      {
-         "label": "publish",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "publish",
-            "${workspaceFolder}/Example.LargeMessageReceiver.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      },
-      {
-         "label": "watch",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "watch",
-            "run",
-            "${workspaceFolder}/Example.LargeMessageReceiver.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      }
-   ]
-}
\ No newline at end of file
diff --git a/examples/Example.LargeMessageSender/.vscode/launch.json b/examples/Example.LargeMessageSender/.vscode/launch.json
deleted file mode 100644
index 69a4b86..0000000
--- a/examples/Example.LargeMessageSender/.vscode/launch.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
-   "version": "0.2.0",
-   "configurations": [
-      {
-         // 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
-         "name": ".NET Core Launch (console)",
-         "type": "coreclr",
-         "request": "launch",
-         "preLaunchTask": "build",
-         // If you have changed target frameworks, make sure to update the program path.
-         "program": "${workspaceFolder}/bin/Debug/net5.0/Example.LargeMessageSender.dll",
-         "args": [],
-         "cwd": "${workspaceFolder}",
-         // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
-         "console": "internalConsole",
-         "stopAtEntry": false
-      },
-      {
-         "name": ".NET Core Attach",
-         "type": "coreclr",
-         "request": "attach"
-      }
-   ]
-}
\ No newline at end of file
diff --git a/examples/Example.LargeMessageSender/.vscode/tasks.json b/examples/Example.LargeMessageSender/.vscode/tasks.json
deleted file mode 100644
index de4dc73..0000000
--- a/examples/Example.LargeMessageSender/.vscode/tasks.json
+++ /dev/null
@@ -1,42 +0,0 @@
-{
-   "version": "2.0.0",
-   "tasks": [
-      {
-         "label": "build",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "build",
-            "${workspaceFolder}/Example.LargeMessageSender.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      },
-      {
-         "label": "publish",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "publish",
-            "${workspaceFolder}/Example.LargeMessageSender.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      },
-      {
-         "label": "watch",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "watch",
-            "run",
-            "${workspaceFolder}/Example.LargeMessageSender.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      }
-   ]
-}
\ No newline at end of file
diff --git a/examples/Example.Receive/.vscode/launch.json b/examples/Example.Receive/.vscode/launch.json
deleted file mode 100644
index 60acc18..0000000
--- a/examples/Example.Receive/.vscode/launch.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
-   "version": "0.2.0",
-   "configurations": [
-      {
-         // 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
-         "name": ".NET Core Launch (console)",
-         "type": "coreclr",
-         "request": "launch",
-         "preLaunchTask": "build",
-         // If you have changed target frameworks, make sure to update the program path.
-         "program": "${workspaceFolder}/bin/Debug/net5.0/Proton.Receive.dll",
-         "args": [],
-         "cwd": "${workspaceFolder}",
-         // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
-         "console": "internalConsole",
-         "stopAtEntry": false
-      },
-      {
-         "name": ".NET Core Attach",
-         "type": "coreclr",
-         "request": "attach"
-      }
-   ]
-}
\ No newline at end of file
diff --git a/examples/Example.Receive/.vscode/tasks.json b/examples/Example.Receive/.vscode/tasks.json
deleted file mode 100644
index e5ca6d9..0000000
--- a/examples/Example.Receive/.vscode/tasks.json
+++ /dev/null
@@ -1,42 +0,0 @@
-{
-   "version": "2.0.0",
-   "tasks": [
-      {
-         "label": "build",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "build",
-            "${workspaceFolder}/Proton.Receive.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      },
-      {
-         "label": "publish",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "publish",
-            "${workspaceFolder}/Proton.Receive.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      },
-      {
-         "label": "watch",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "watch",
-            "run",
-            "${workspaceFolder}/Proton.Receive.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      }
-   ]
-}
\ No newline at end of file
diff --git a/examples/Example.Request/.vscode/launch.json b/examples/Example.Request/.vscode/launch.json
deleted file mode 100644
index 5f3ab96..0000000
--- a/examples/Example.Request/.vscode/launch.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
-   "version": "0.2.0",
-   "configurations": [
-      {
-         // 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
-         "name": ".NET Core Launch (console)",
-         "type": "coreclr",
-         "request": "launch",
-         "preLaunchTask": "build",
-         // If you have changed target frameworks, make sure to update the program path.
-         "program": "${workspaceFolder}/bin/Debug/net5.0/Example.Request.dll",
-         "args": [],
-         "cwd": "${workspaceFolder}",
-         // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
-         "console": "internalConsole",
-         "stopAtEntry": false
-      },
-      {
-         "name": ".NET Core Attach",
-         "type": "coreclr",
-         "request": "attach"
-      }
-   ]
-}
\ No newline at end of file
diff --git a/examples/Example.Request/.vscode/tasks.json b/examples/Example.Request/.vscode/tasks.json
deleted file mode 100644
index c915a1f..0000000
--- a/examples/Example.Request/.vscode/tasks.json
+++ /dev/null
@@ -1,42 +0,0 @@
-{
-   "version": "2.0.0",
-   "tasks": [
-      {
-         "label": "build",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "build",
-            "${workspaceFolder}/Example.Request.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      },
-      {
-         "label": "publish",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "publish",
-            "${workspaceFolder}/Example.Request.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      },
-      {
-         "label": "watch",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "watch",
-            "run",
-            "${workspaceFolder}/Example.Request.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      }
-   ]
-}
\ No newline at end of file
diff --git a/examples/Example.Respond/.vscode/launch.json b/examples/Example.Respond/.vscode/launch.json
deleted file mode 100644
index b2cb17b..0000000
--- a/examples/Example.Respond/.vscode/launch.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
-   "version": "0.2.0",
-   "configurations": [
-      {
-         // 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
-         "name": ".NET Core Launch (console)",
-         "type": "coreclr",
-         "request": "launch",
-         "preLaunchTask": "build",
-         // If you have changed target frameworks, make sure to update the program path.
-         "program": "${workspaceFolder}/bin/Debug/net5.0/Example.Respond.dll",
-         "args": [],
-         "cwd": "${workspaceFolder}",
-         // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
-         "console": "internalConsole",
-         "stopAtEntry": false
-      },
-      {
-         "name": ".NET Core Attach",
-         "type": "coreclr",
-         "request": "attach"
-      }
-   ]
-}
\ No newline at end of file
diff --git a/examples/Example.Respond/.vscode/tasks.json b/examples/Example.Respond/.vscode/tasks.json
deleted file mode 100644
index fd331ff..0000000
--- a/examples/Example.Respond/.vscode/tasks.json
+++ /dev/null
@@ -1,42 +0,0 @@
-{
-   "version": "2.0.0",
-   "tasks": [
-      {
-         "label": "build",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "build",
-            "${workspaceFolder}/Example.Respond.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      },
-      {
-         "label": "publish",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "publish",
-            "${workspaceFolder}/Example.Respond.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      },
-      {
-         "label": "watch",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "watch",
-            "run",
-            "${workspaceFolder}/Example.Respond.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      }
-   ]
-}
\ No newline at end of file
diff --git a/examples/Example.Send/.vscode/launch.json b/examples/Example.Send/.vscode/launch.json
deleted file mode 100644
index 250c82d..0000000
--- a/examples/Example.Send/.vscode/launch.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
-   "version": "0.2.0",
-   "configurations": [
-      {
-         // 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
-         "name": ".NET Core Launch (console)",
-         "type": "coreclr",
-         "request": "launch",
-         "preLaunchTask": "build",
-         // If you have changed target frameworks, make sure to update the program path.
-         "program": "${workspaceFolder}/bin/Debug/net5.0/Proton.Send.dll",
-         "args": [],
-         "cwd": "${workspaceFolder}",
-         // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
-         "console": "internalConsole",
-         "stopAtEntry": false
-      },
-      {
-         "name": ".NET Core Attach",
-         "type": "coreclr",
-         "request": "attach"
-      }
-   ]
-}
\ No newline at end of file
diff --git a/examples/Example.Send/.vscode/tasks.json b/examples/Example.Send/.vscode/tasks.json
deleted file mode 100644
index 88c0a76..0000000
--- a/examples/Example.Send/.vscode/tasks.json
+++ /dev/null
@@ -1,42 +0,0 @@
-{
-   "version": "2.0.0",
-   "tasks": [
-      {
-         "label": "build",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "build",
-            "${workspaceFolder}/Proton.Send.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      },
-      {
-         "label": "publish",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "publish",
-            "${workspaceFolder}/Proton.Send.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      },
-      {
-         "label": "watch",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "watch",
-            "run",
-            "${workspaceFolder}/Proton.Send.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      }
-   ]
-}
\ No newline at end of file
diff --git a/examples/Example.StreamingFileReceiver/.vscode/launch.json b/examples/Example.StreamingFileReceiver/.vscode/launch.json
deleted file mode 100644
index b9d8489..0000000
--- a/examples/Example.StreamingFileReceiver/.vscode/launch.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
-   "version": "0.2.0",
-   "configurations": [
-      {
-         // 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
-         "name": ".NET Core Launch (console)",
-         "type": "coreclr",
-         "request": "launch",
-         "preLaunchTask": "build",
-         // If you have changed target frameworks, make sure to update the program path.
-         "program": "${workspaceFolder}/bin/Debug/net5.0/Example.StreamingFileReceiver.dll",
-         "args": [],
-         "cwd": "${workspaceFolder}",
-         // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
-         "console": "internalConsole",
-         "stopAtEntry": false
-      },
-      {
-         "name": ".NET Core Attach",
-         "type": "coreclr",
-         "request": "attach"
-      }
-   ]
-}
\ No newline at end of file
diff --git a/examples/Example.StreamingFileReceiver/.vscode/tasks.json b/examples/Example.StreamingFileReceiver/.vscode/tasks.json
deleted file mode 100644
index 7ff6209..0000000
--- a/examples/Example.StreamingFileReceiver/.vscode/tasks.json
+++ /dev/null
@@ -1,42 +0,0 @@
-{
-   "version": "2.0.0",
-   "tasks": [
-      {
-         "label": "build",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "build",
-            "${workspaceFolder}/Example.StreamingFileReceiver.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      },
-      {
-         "label": "publish",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "publish",
-            "${workspaceFolder}/Example.StreamingFileReceiver.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      },
-      {
-         "label": "watch",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "watch",
-            "run",
-            "${workspaceFolder}/Example.StreamingFileReceiver.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      }
-   ]
-}
\ No newline at end of file
diff --git a/examples/Example.StreamingFileSender/.vscode/launch.json b/examples/Example.StreamingFileSender/.vscode/launch.json
deleted file mode 100644
index 0da4c17..0000000
--- a/examples/Example.StreamingFileSender/.vscode/launch.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
-   "version": "0.2.0",
-   "configurations": [
-      {
-         // 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
-         "name": ".NET Core Launch (console)",
-         "type": "coreclr",
-         "request": "launch",
-         "preLaunchTask": "build",
-         // If you have changed target frameworks, make sure to update the program path.
-         "program": "${workspaceFolder}/bin/Debug/net5.0/Example.StreamingFileSender.dll",
-         "args": [],
-         "cwd": "${workspaceFolder}",
-         // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
-         "console": "internalConsole",
-         "stopAtEntry": false
-      },
-      {
-         "name": ".NET Core Attach",
-         "type": "coreclr",
-         "request": "attach"
-      }
-   ]
-}
\ No newline at end of file
diff --git a/examples/Example.StreamingFileSender/.vscode/tasks.json b/examples/Example.StreamingFileSender/.vscode/tasks.json
deleted file mode 100644
index aea8ac4..0000000
--- a/examples/Example.StreamingFileSender/.vscode/tasks.json
+++ /dev/null
@@ -1,42 +0,0 @@
-{
-   "version": "2.0.0",
-   "tasks": [
-      {
-         "label": "build",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "build",
-            "${workspaceFolder}/Example.StreamingFileSender.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      },
-      {
-         "label": "publish",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "publish",
-            "${workspaceFolder}/Example.StreamingFileSender.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      },
-      {
-         "label": "watch",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "watch",
-            "run",
-            "${workspaceFolder}/Example.StreamingFileSender.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      }
-   ]
-}
\ No newline at end of file
diff --git a/examples/Example.TransactedReceiver/.vscode/launch.json b/examples/Example.TransactedReceiver/.vscode/launch.json
deleted file mode 100644
index 001920a..0000000
--- a/examples/Example.TransactedReceiver/.vscode/launch.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
-   "version": "0.2.0",
-   "configurations": [
-      {
-         // 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
-         "name": ".NET Core Launch (console)",
-         "type": "coreclr",
-         "request": "launch",
-         "preLaunchTask": "build",
-         // If you have changed target frameworks, make sure to update the program path.
-         "program": "${workspaceFolder}/bin/Debug/net5.0/Example.TransactedReceiver.dll",
-         "args": [],
-         "cwd": "${workspaceFolder}",
-         // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
-         "console": "internalConsole",
-         "stopAtEntry": false
-      },
-      {
-         "name": ".NET Core Attach",
-         "type": "coreclr",
-         "request": "attach"
-      }
-   ]
-}
\ No newline at end of file
diff --git a/examples/Example.TransactedReceiver/.vscode/tasks.json b/examples/Example.TransactedReceiver/.vscode/tasks.json
deleted file mode 100644
index 1c5dce0..0000000
--- a/examples/Example.TransactedReceiver/.vscode/tasks.json
+++ /dev/null
@@ -1,42 +0,0 @@
-{
-   "version": "2.0.0",
-   "tasks": [
-      {
-         "label": "build",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "build",
-            "${workspaceFolder}/Example.TransactedReceiver.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      },
-      {
-         "label": "publish",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "publish",
-            "${workspaceFolder}/Example.TransactedReceiver.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      },
-      {
-         "label": "watch",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "watch",
-            "run",
-            "${workspaceFolder}/Example.TransactedReceiver.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      }
-   ]
-}
\ No newline at end of file
diff --git a/examples/Example.TransactedSender/.vscode/launch.json b/examples/Example.TransactedSender/.vscode/launch.json
deleted file mode 100644
index 16ad134..0000000
--- a/examples/Example.TransactedSender/.vscode/launch.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
-   "version": "0.2.0",
-   "configurations": [
-      {
-         // 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
-         "name": ".NET Core Launch (console)",
-         "type": "coreclr",
-         "request": "launch",
-         "preLaunchTask": "build",
-         // If you have changed target frameworks, make sure to update the program path.
-         "program": "${workspaceFolder}/bin/Debug/net5.0/Example.TransactedSender.dll",
-         "args": [],
-         "cwd": "${workspaceFolder}",
-         // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
-         "console": "internalConsole",
-         "stopAtEntry": false
-      },
-      {
-         "name": ".NET Core Attach",
-         "type": "coreclr",
-         "request": "attach"
-      }
-   ]
-}
\ No newline at end of file
diff --git a/examples/Example.TransactedSender/.vscode/tasks.json b/examples/Example.TransactedSender/.vscode/tasks.json
deleted file mode 100644
index 60e0002..0000000
--- a/examples/Example.TransactedSender/.vscode/tasks.json
+++ /dev/null
@@ -1,42 +0,0 @@
-{
-   "version": "2.0.0",
-   "tasks": [
-      {
-         "label": "build",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "build",
-            "${workspaceFolder}/Example.TransactedSender.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      },
-      {
-         "label": "publish",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "publish",
-            "${workspaceFolder}/Example.TransactedSender.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      },
-      {
-         "label": "watch",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "watch",
-            "run",
-            "${workspaceFolder}/Example.TransactedSender.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      }
-   ]
-}
\ No newline at end of file
diff --git a/test/Proton.Client.Tests/.vscode/launch.json b/test/Proton.Client.Tests/.vscode/launch.json
deleted file mode 100644
index a8794c8..0000000
--- a/test/Proton.Client.Tests/.vscode/launch.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
-   "version": "0.2.0",
-   "configurations": [
-
-      {
-         // 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
-         "name": ".NET Core Launch (console)",
-         "type": "coreclr",
-         "request": "launch",
-         "preLaunchTask": "build",
-         // If you have changed target frameworks, make sure to update the program path.
-         "program": "${workspaceFolder}/bin/Debug/net5.0/Proton.Client.Tests.dll",
-         "args": [],
-         "cwd": "${workspaceFolder}",
-         // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
-         "console": "internalConsole",
-         "stopAtEntry": false,
-      },
-      {
-         "name": ".NET Core Attach",
-         "type": "coreclr",
-         "request": "attach"
-      }
-   ]
-}
\ No newline at end of file
diff --git a/test/Proton.Client.Tests/.vscode/tasks.json b/test/Proton.Client.Tests/.vscode/tasks.json
deleted file mode 100644
index ce3a138..0000000
--- a/test/Proton.Client.Tests/.vscode/tasks.json
+++ /dev/null
@@ -1,42 +0,0 @@
-{
-   "version": "2.0.0",
-   "tasks": [
-      {
-         "label": "build",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "build",
-            "${workspaceFolder}/Proton.Client.Tests.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      },
-      {
-         "label": "publish",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "publish",
-            "${workspaceFolder}/Proton.Client.Tests.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      },
-      {
-         "label": "watch",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "watch",
-            "run",
-            "${workspaceFolder}/Proton.Client.Tests.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      }
-   ]
-}
\ No newline at end of file
diff --git a/test/Proton.TestPeer.Tests/.vscode/launch.json b/test/Proton.TestPeer.Tests/.vscode/launch.json
deleted file mode 100644
index b1c68f5..0000000
--- a/test/Proton.TestPeer.Tests/.vscode/launch.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
-   "version": "0.2.0",
-   "configurations": [
-      {
-         // 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
-         "name": ".NET Core Launch (console)",
-         "type": "coreclr",
-         "request": "launch",
-         "preLaunchTask": "build",
-         // If you have changed target frameworks, make sure to update the program path.
-         "program": "${workspaceFolder}/bin/Debug/net5.0/Proton.TestPeer.Tests.dll",
-         "args": [],
-         "cwd": "${workspaceFolder}",
-         // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
-         "console": "internalConsole",
-         "stopAtEntry": false
-      },
-      {
-         "name": ".NET Core Attach",
-         "type": "coreclr",
-         "request": "attach"
-      }
-   ]
-}
\ No newline at end of file
diff --git a/test/Proton.TestPeer.Tests/.vscode/tasks.json b/test/Proton.TestPeer.Tests/.vscode/tasks.json
deleted file mode 100644
index 5cdee91..0000000
--- a/test/Proton.TestPeer.Tests/.vscode/tasks.json
+++ /dev/null
@@ -1,42 +0,0 @@
-{
-   "version": "2.0.0",
-   "tasks": [
-      {
-         "label": "build",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "build",
-            "${workspaceFolder}/Proton.TestPeer.Tests.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      },
-      {
-         "label": "publish",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "publish",
-            "${workspaceFolder}/Proton.TestPeer.Tests.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      },
-      {
-         "label": "watch",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "watch",
-            "run",
-            "${workspaceFolder}/Proton.TestPeer.Tests.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      }
-   ]
-}
\ No newline at end of file
diff --git a/test/Proton.Tests/.vscode/launch.json b/test/Proton.Tests/.vscode/launch.json
deleted file mode 100644
index 4356118..0000000
--- a/test/Proton.Tests/.vscode/launch.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
-   "version": "0.2.0",
-   "configurations": [
-      {
-         // 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
-         "name": ".NET Core Launch (console)",
-         "type": "coreclr",
-         "request": "launch",
-         "preLaunchTask": "build",
-         // If you have changed target frameworks, make sure to update the program path.
-         "program": "${workspaceFolder}/bin/Debug/net5.0/Proton.Tests.dll",
-         "args": [],
-         "cwd": "${workspaceFolder}",
-         // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
-         "console": "internalConsole",
-         "stopAtEntry": false
-      },
-      {
-         "name": ".NET Core Attach",
-         "type": "coreclr",
-         "request": "attach"
-      }
-   ]
-}
\ No newline at end of file
diff --git a/test/Proton.Tests/.vscode/tasks.json b/test/Proton.Tests/.vscode/tasks.json
deleted file mode 100644
index 2b0f9ec..0000000
--- a/test/Proton.Tests/.vscode/tasks.json
+++ /dev/null
@@ -1,42 +0,0 @@
-{
-   "version": "2.0.0",
-   "tasks": [
-      {
-         "label": "build",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "build",
-            "${workspaceFolder}/Proton.Tests.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      },
-      {
-         "label": "publish",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "publish",
-            "${workspaceFolder}/Proton.Tests.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      },
-      {
-         "label": "watch",
-         "command": "dotnet",
-         "type": "process",
-         "args": [
-            "watch",
-            "run",
-            "${workspaceFolder}/Proton.Tests.csproj",
-            "/property:GenerateFullPaths=true",
-            "/consoleloggerparameters:NoSummary"
-         ],
-         "problemMatcher": "$msCompile"
-      }
-   ]
-}
\ No newline at end of file


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org