diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 2fc441b..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}/DiscordBot/bin/Debug/net5.0/DiscordBot.dll", - "args": [], - "cwd": "${workspaceFolder}/DiscordBot", - // 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/solution-explorer/class.cs-template b/.vscode/solution-explorer/class.cs-template deleted file mode 100644 index 20c7109..0000000 --- a/.vscode/solution-explorer/class.cs-template +++ /dev/null @@ -1,5 +0,0 @@ -namespace {{namespace}}; - -public class {{name}} -{ -} diff --git a/.vscode/solution-explorer/class.ts-template b/.vscode/solution-explorer/class.ts-template deleted file mode 100644 index ff2edef..0000000 --- a/.vscode/solution-explorer/class.ts-template +++ /dev/null @@ -1,3 +0,0 @@ -export class {{name}} { - -} \ No newline at end of file diff --git a/.vscode/solution-explorer/class.vb-template b/.vscode/solution-explorer/class.vb-template deleted file mode 100644 index 38ef67f..0000000 --- a/.vscode/solution-explorer/class.vb-template +++ /dev/null @@ -1,9 +0,0 @@ -Imports System - -Namespace {{namespace}} - - Public Class {{name}} - - End Class - -End Namespace diff --git a/.vscode/solution-explorer/default.ts-template b/.vscode/solution-explorer/default.ts-template deleted file mode 100644 index 04af870..0000000 --- a/.vscode/solution-explorer/default.ts-template +++ /dev/null @@ -1,3 +0,0 @@ -export default {{name}} { - -} \ No newline at end of file diff --git a/.vscode/solution-explorer/enum.cs-template b/.vscode/solution-explorer/enum.cs-template deleted file mode 100644 index 1ded8c0..0000000 --- a/.vscode/solution-explorer/enum.cs-template +++ /dev/null @@ -1,5 +0,0 @@ -namespace {{namespace}}; - -public enum {{name}} -{ -} diff --git a/.vscode/solution-explorer/interface.cs-template b/.vscode/solution-explorer/interface.cs-template deleted file mode 100644 index bf25cbb..0000000 --- a/.vscode/solution-explorer/interface.cs-template +++ /dev/null @@ -1,5 +0,0 @@ -namespace {{namespace}}; - -public interface {{name}} -{ -} diff --git a/.vscode/solution-explorer/interface.ts-template b/.vscode/solution-explorer/interface.ts-template deleted file mode 100644 index 3ea404b..0000000 --- a/.vscode/solution-explorer/interface.ts-template +++ /dev/null @@ -1,3 +0,0 @@ -export interface {{name}} { - -} \ No newline at end of file diff --git a/.vscode/solution-explorer/template-list.json b/.vscode/solution-explorer/template-list.json deleted file mode 100644 index 2849622..0000000 --- a/.vscode/solution-explorer/template-list.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "templates": [ - { - "name": "Class", - "extension": "cs", - "file": "./class.cs-template", - "parameters": "./template-parameters.js" - }, - { - "name": "Interface", - "extension": "cs", - "file": "./interface.cs-template", - "parameters": "./template-parameters.js" - }, - { - "name": "Enum", - "extension": "cs", - "file": "./enum.cs-template", - "parameters": "./template-parameters.js" - }, - { - "name": "Class", - "extension": "ts", - "file": "./class.ts-template", - "parameters": "./template-parameters.js" - }, - { - "name": "Interface", - "extension": "ts", - "file": "./interface.ts-template", - "parameters": "./template-parameters.js" - }, - { - "name": "Default", - "extension": "ts", - "file": "./default.ts-template", - "parameters": "./template-parameters.js" - }, - { - "name": "Class", - "extension": "vb", - "file": "./class.vb-template", - "parameters": "./template-parameters.js" - } - ] -} \ No newline at end of file diff --git a/.vscode/solution-explorer/template-parameters.js b/.vscode/solution-explorer/template-parameters.js deleted file mode 100644 index daba8b2..0000000 --- a/.vscode/solution-explorer/template-parameters.js +++ /dev/null @@ -1,17 +0,0 @@ -var path = require("path"); - -module.exports = function(filename, projectPath, folderPath) { - var namespace = "Unknown"; - if (projectPath) { - namespace = path.basename(projectPath, path.extname(projectPath)); - if (folderPath) { - namespace += "." + folderPath.replace(path.dirname(projectPath), "").substring(1).replace(/[\\\/]/g, "."); - } - namespace = namespace.replace(/[\\\-]/g, "_"); - } - - return { - namespace: namespace, - name: path.basename(filename, path.extname(filename)) - } -}; \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index adf4d42..0000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "build", - "command": "dotnet", - "type": "process", - "args": [ - "build", - "${workspaceFolder}/DiscordBot/DiscordBot.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "publish", - "command": "dotnet", - "type": "process", - "args": [ - "publish", - "${workspaceFolder}/DiscordBot/DiscordBot.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "watch", - "command": "dotnet", - "type": "process", - "args": [ - "watch", - "run", - "${workspaceFolder}/DiscordBot/DiscordBot.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - } - ] -} \ No newline at end of file