-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit f4e10e8
Showing
166 changed files
with
14,128 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": ".NET Core Launch (Open Browser)", | ||
"type": "coreclr", | ||
"request": "launch", | ||
"preLaunchTask": "dotnet: build", | ||
// If you have changed target frameworks, make sure to update the program path. | ||
"program": "${workspaceFolder}/src/Sinedo/bin/Debug/net5.0/sinedo.dll", | ||
"args": [], | ||
"cwd": "${workspaceFolder}/src/Sinedo", | ||
"stopAtEntry": false, | ||
"serverReadyAction": { | ||
"action": "openExternally", | ||
"pattern": "\\bNow listening on:\\s+(https?://\\S+)" | ||
}, | ||
"env": { | ||
"ASPNETCORE_ENVIRONMENT": "Development" | ||
}, | ||
"sourceFileMap": { | ||
"/Views": "${workspaceFolder}/src/Sinedo/Views" | ||
} | ||
}, | ||
{ | ||
"name": ".NET Core Launch", | ||
"type": "coreclr", | ||
"request": "launch", | ||
"preLaunchTask": "dotnet: build", | ||
// If you have changed target frameworks, make sure to update the program path. | ||
"program": "${workspaceFolder}/src/Sinedo/bin/Debug/net5.0/sinedo.dll", | ||
"args": [], | ||
"cwd": "${workspaceFolder}/src/Sinedo", | ||
"stopAtEntry": false, | ||
"env": { | ||
"ASPNETCORE_ENVIRONMENT": "Development" | ||
}, | ||
"sourceFileMap": { | ||
"/Views": "${workspaceFolder}/src/Sinedo/Views" | ||
} | ||
}, | ||
{ | ||
"name": ".NET Core Attach", | ||
"type": "coreclr", | ||
"request": "attach" | ||
}, | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"command": "dotnet", | ||
"type": "process", | ||
"args": [ | ||
"publish", | ||
"${workspaceFolder}/src/Sinedo/Sinedo.csproj", | ||
"/property:GenerateFullPaths=true", | ||
"/consoleloggerparameters:NoSummary", | ||
"/t:CreateDeb", | ||
"/p:PublishSingleFile=true", | ||
"/p:PublishTrimmed=true", | ||
"/p:DebugType=None", | ||
"/p:DebugSymbols=false", | ||
"/p:RuntimeIdentifier=linux-arm64", | ||
"/p:Configuration=Release" | ||
], | ||
"group": "build", | ||
"dependsOn": "tsc: build", | ||
"label": "dotnet: publish (linux-arm64)", | ||
"problemMatcher": "$msCompile" | ||
}, | ||
{ | ||
"command": "dotnet", | ||
"type": "process", | ||
"args": [ | ||
"publish", | ||
"${workspaceFolder}/src/Sinedo/Sinedo.csproj", | ||
"/property:GenerateFullPaths=true", | ||
"/consoleloggerparameters:NoSummary", | ||
"/t:CreateDeb", | ||
"/p:PublishSingleFile=true", | ||
"/p:PublishTrimmed=true", | ||
"/p:DebugType=None", | ||
"/p:DebugSymbols=false", | ||
"/p:RuntimeIdentifier=linux-x64", | ||
"/p:Configuration=Release" | ||
], | ||
"group": "build", | ||
"dependsOn": "tsc: build", | ||
"label": "dotnet: publish (linux-x64)", | ||
"problemMatcher": "$msCompile" | ||
}, | ||
{ | ||
"command": "dotnet", | ||
"type": "process", | ||
"args": [ | ||
"publish", | ||
"${workspaceFolder}/src/Sinedo/Sinedo.csproj", | ||
"/property:GenerateFullPaths=true", | ||
"/consoleloggerparameters:NoSummary", | ||
"/p:PublishSingleFile=true", | ||
"/p:PublishTrimmed=true", | ||
"/p:DebugType=None", | ||
"/p:DebugSymbols=false", | ||
"/p:RuntimeIdentifier=osx-x64", | ||
"/p:Configuration=Release" | ||
], | ||
"group": "build", | ||
"dependsOn": "tsc: build", | ||
"label": "dotnet: publish (osx-x64)", | ||
"problemMatcher": "$msCompile" | ||
}, | ||
{ | ||
"command": "dotnet", | ||
"type": "process", | ||
"args": [ | ||
"build", | ||
"${workspaceFolder}/src/Sinedo/Sinedo.csproj", | ||
"/property:GenerateFullPaths=true", | ||
"/consoleloggerparameters:NoSummary" | ||
], | ||
"group": "build", | ||
"dependsOn": "tsc: build", | ||
"label": "dotnet: build", | ||
"problemMatcher": "$msCompile" | ||
}, | ||
{ | ||
"type": "typescript", | ||
"tsconfig": "src/Sinedo/wwwroot/app/tsconfig.json", | ||
"problemMatcher": [ | ||
"$tsc" | ||
], | ||
"group": "none", | ||
"label": "tsc: build" | ||
}, | ||
{ | ||
"type": "typescript", | ||
"tsconfig": "src/Sinedo/wwwroot/app/tsconfig.json", | ||
"option": "watch", | ||
"problemMatcher": [ | ||
"$tsc-watch" | ||
], | ||
"group": "build", | ||
"label": "tsc: watch" | ||
} | ||
] | ||
} |
Oops, something went wrong.