Browse Source

set up submodules

Karathan 5 years ago
parent
commit
a6d90affd9
4 changed files with 47 additions and 0 deletions
  1. 3
    0
      .gitmodules
  2. 28
    0
      .vscode/launch.json
  3. 15
    0
      .vscode/tasks.json
  4. 1
    0
      BlizzSharp

+ 3
- 0
.gitmodules View File

@@ -0,0 +1,3 @@
1
+[submodule "BlizzSharp"]
2
+	path = BlizzSharp
3
+	url = git@gitlab.karathan.at:Karathan/BlizzSharp.git

+ 28
- 0
.vscode/launch.json View File

@@ -0,0 +1,28 @@
1
+{
2
+   // Use IntelliSense to find out which attributes exist for C# debugging
3
+   // Use hover for the description of the existing attributes
4
+   // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
5
+   "version": "0.2.0",
6
+   "configurations": [
7
+        {
8
+            "name": ".NET Core Launch (console)",
9
+            "type": "coreclr",
10
+            "request": "launch",
11
+            "preLaunchTask": "build",
12
+            // If you have changed target frameworks, make sure to update the program path.
13
+            "program": "${workspaceFolder}/AuctionTracker/bin/Debug/netcoreapp2.0/AuctionTracker.dll",
14
+            "args": [],
15
+            "cwd": "${workspaceFolder}/AuctionTracker",
16
+            // For more information about the 'console' field, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window
17
+            "console": "internalConsole",
18
+            "stopAtEntry": false,
19
+            "internalConsoleOptions": "openOnSessionStart"
20
+        },
21
+        {
22
+            "name": ".NET Core Attach",
23
+            "type": "coreclr",
24
+            "request": "attach",
25
+            "processId": "${command:pickProcess}"
26
+        }
27
+    ,]
28
+}

+ 15
- 0
.vscode/tasks.json View File

@@ -0,0 +1,15 @@
1
+{
2
+    "version": "2.0.0",
3
+    "tasks": [
4
+        {
5
+            "label": "build",
6
+            "command": "dotnet",
7
+            "type": "process",
8
+            "args": [
9
+                "build",
10
+                "${workspaceFolder}/AuctionTracker/AuctionTracker.csproj"
11
+            ],
12
+            "problemMatcher": "$msCompile"
13
+        }
14
+    ]
15
+}

+ 1
- 0
BlizzSharp

@@ -0,0 +1 @@
1
+Subproject commit c29b9b4b29974186b53e77fb249dfddb5cb59743