Skip to content

Commit 1bf5764

Browse files
committed
chore: removedd xmlrepository, added vscode launch files
1 parent cae7a3f commit 1bf5764

8 files changed

Lines changed: 76 additions & 296 deletions

File tree

.vscode/launch.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
// Use IntelliSense to find out which attributes exist for C# debugging
6+
// Use hover for the description of the existing attributes
7+
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
8+
"name": ".NET Core Launch (web)",
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}/SharpRepository.Samples.Net6Mvc/bin/Debug/net6.0/SharpRepository.Samples.Net6Mvc.dll",
14+
"args": [],
15+
"cwd": "${workspaceFolder}/SharpRepository.Samples.Net6Mvc",
16+
"stopAtEntry": false,
17+
// Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser
18+
"serverReadyAction": {
19+
"action": "openExternally",
20+
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
21+
},
22+
"env": {
23+
"ASPNETCORE_ENVIRONMENT": "Development"
24+
},
25+
"sourceFileMap": {
26+
"/Views": "${workspaceFolder}/Views"
27+
}
28+
},
29+
{
30+
"name": ".NET Core Attach",
31+
"type": "coreclr",
32+
"request": "attach"
33+
}
34+
]
35+
}

.vscode/tasks.json

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "build",
6+
"command": "dotnet",
7+
"type": "process",
8+
"args": [
9+
"build",
10+
"${workspaceFolder}/SharpRepository.Samples.Net6Mvc/SharpRepository.Samples.Net6Mvc.csproj",
11+
"/property:GenerateFullPaths=true",
12+
"/consoleloggerparameters:NoSummary"
13+
],
14+
"problemMatcher": "$msCompile"
15+
},
16+
{
17+
"label": "publish",
18+
"command": "dotnet",
19+
"type": "process",
20+
"args": [
21+
"publish",
22+
"${workspaceFolder}/SharpRepository.Samples.Net6Mvc/SharpRepository.Samples.Net6Mvc.csproj",
23+
"/property:GenerateFullPaths=true",
24+
"/consoleloggerparameters:NoSummary"
25+
],
26+
"problemMatcher": "$msCompile"
27+
},
28+
{
29+
"label": "watch",
30+
"command": "dotnet",
31+
"type": "process",
32+
"args": [
33+
"watch",
34+
"run",
35+
"--project",
36+
"${workspaceFolder}/SharpRepository.Samples.Net6Mvc/SharpRepository.Samples.Net6Mvc.csproj"
37+
],
38+
"problemMatcher": "$msCompile"
39+
}
40+
]
41+
}

SharpRepository.XmlRepository/SharpRepository.XmlRepository.csproj

Lines changed: 0 additions & 28 deletions
This file was deleted.

SharpRepository.XmlRepository/XmlConfigRepositoryFactory.cs

Lines changed: 0 additions & 51 deletions
This file was deleted.

SharpRepository.XmlRepository/XmlRepository.cs

Lines changed: 0 additions & 40 deletions
This file was deleted.

SharpRepository.XmlRepository/XmlRepositoryBase.cs

Lines changed: 0 additions & 147 deletions
This file was deleted.

SharpRepository.XmlRepository/XmlRepositoryConfiguration.cs

Lines changed: 0 additions & 19 deletions
This file was deleted.

SharpRepository.XmlRepository/repository.xml.json

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)