Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

Commit e10b2e7

Browse files
committed
REST-243: Rename files of trainingPegasus to DotnetBoilerPlate
1 parent 6e9c8b5 commit e10b2e7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+4308
-1
lines changed

.gitignore

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ bld/
3333
[Ll]ogs/
3434

3535
# Visual Studio 2015/2017 cache/options directory
36-
.vs/
36+
DotnetBoilerPlate/.vs
3737
# Uncomment if you have tasks that create the project's static files in wwwroot
3838
#wwwroot/
3939

@@ -396,3 +396,10 @@ FodyWeavers.xsd
396396

397397
# JetBrains Rider
398398
*.sln.iml
399+
400+
# Build Results
401+
**/bin
402+
**/obj
403+
404+
# Log Files
405+
**/logs

.vscode/extensions.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"recommendations": [
3+
"kreativ-software.csharpextensions",
4+
"jmrog.vscode-nuget-package-manager",
5+
"fudge.auto-using",
6+
"formulahendry.dotnet",
7+
"pkief.material-icon-theme",
8+
"patcx.vscode-nuget-gallery"
9+
]
10+
}

.vscode/launch.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": ".NET Core Launch (web)",
9+
"type": "coreclr",
10+
"request": "launch",
11+
"preLaunchTask": "build",
12+
"program": "${workspaceFolder}/DotnetBoilerPlate/DotnetBoilerPlate.API/bin/Debug/net6.0/DotnetBoilerPlate.API.dll",
13+
"args": [],
14+
"cwd": "${workspaceFolder}/DotnetBoilerPlate/DotnetBoilerPlate.API",
15+
"stopAtEntry": false,
16+
"serverReadyAction": {
17+
"action": "openExternally",
18+
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
19+
},
20+
"env": {
21+
"ASPNETCORE_ENVIRONMENT": "Development"
22+
},
23+
"sourceFileMap": {
24+
"/Views": "${workspaceFolder}/Views"
25+
}
26+
},
27+
{
28+
"name": ".NET Core Attach",
29+
"type": "coreclr",
30+
"request": "attach"
31+
}
32+
]
33+
}

.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}/DotnetBoilerPlate/DotnetBoilerPlate.sln",
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}/DotnetBoilerPlate/DotnetBoilerPlate.sln",
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}/DotnetBoilerPlate/DotnetBoilerPlate.sln"
37+
],
38+
"problemMatcher": "$msCompile"
39+
}
40+
]
41+
}

0 commit comments

Comments
 (0)