Skip to content
This repository has been archived by the owner on Dec 3, 2024. It is now read-only.

Commit

Permalink
Switch to pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
csutorasa committed Nov 6, 2023
1 parent b670208 commit e235ed8
Show file tree
Hide file tree
Showing 29 changed files with 10,055 additions and 83,905 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# IDE
.vs
*/*.csproj.user
.vscode
.idea

# Output
Expand Down
4 changes: 0 additions & 4 deletions .husky/pre-commit

This file was deleted.

1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
engine-strict=true
28 changes: 28 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch server",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "dotnetbuild",
"program": "${workspaceFolder}/XOutput.Server/bin/Debug/net7.0/XOutput.Server.dll",
"args": [],
"cwd": "${workspaceFolder}/XOutput.Server",
"stopAtEntry": false,
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
{
"name": "Launch app",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "dotnetbuild",
"program": "${workspaceFolder}/XOutput.App/bin/Debug/net7.0-windows/XOutput.App.dll",
"args": [],
"cwd": "${workspaceFolder}/XOutput.App",
"stopAtEntry": false
}
]
}
68 changes: 68 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "dotnet-build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/XOutput.sln",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "dotnet-watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"--project",
"${workspaceFolder}/XOutput.sln"
],
"problemMatcher": "$msCompile"
},
{
"label": "dotnet-format",
"command": "dotnet",
"type": "shell",
"args": [
"format",
"--project",
"${workspaceFolder}/XOutput.sln"
]
},
{
"label": "pnpm-install",
"command": "pnpm",
"type": "shell",
"args": [
"-r",
"install",
]
},
{
"label": "pnpm-build",
"command": "pnpm",
"type": "shell",
"args": [
"-r",
"run",
"build"
]
},
{
"label": "pnpm-format",
"command": "pnpm",
"type": "shell",
"args": [
"-r",
"run",
"fix-format"
]
}
]
}
Loading

0 comments on commit e235ed8

Please sign in to comment.