Skip to content

Commit

Permalink
Projektdateien hinzugefügt.
Browse files Browse the repository at this point in the history
  • Loading branch information
patbec committed Aug 27, 2021
0 parents commit f4e10e8
Show file tree
Hide file tree
Showing 166 changed files with 14,128 additions and 0 deletions.
454 changes: 454 additions & 0 deletions .gitignore

Large diffs are not rendered by default.

48 changes: 48 additions & 0 deletions .vscode/launch.json
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"
},
]
}
100 changes: 100 additions & 0 deletions .vscode/tasks.json
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"
}
]
}
Loading

0 comments on commit f4e10e8

Please sign in to comment.