mirror of
https://github.com/tonytins/amtkstat.git
synced 2026-02-10 12:54:47 -05:00
Initial migration to Tauri 2.0
- Updated package.json with project metadata and moves dependencies to devDependencies. - Adds .editorconfig for consistent code style - Updated VSCode and .NET project settings for improved development workflow.
This commit is contained in:
parent
81799106f8
commit
2cd45c4a6c
13 changed files with 1243 additions and 664 deletions
20
.vscode/launch.json
vendored
20
.vscode/launch.json
vendored
|
|
@ -1,11 +1,11 @@
|
|||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Launch and Debug Standalone Blazor WebAssembly App",
|
||||
"type": "blazorwasm",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceFolder}/src"
|
||||
}
|
||||
]
|
||||
}
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Launch and Debug Standalone Blazor WebAssembly App",
|
||||
"type": "blazorwasm",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceFolder}/src"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
116
.vscode/tasks.json
vendored
116
.vscode/tasks.json
vendored
|
|
@ -1,61 +1,57 @@
|
|||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "dotnet build",
|
||||
"command": "dotnet",
|
||||
"type": "process",
|
||||
"args": [
|
||||
"build",
|
||||
"${workspaceFolder}/src/AmtrakStatus.csproj",
|
||||
"/property:GenerateFullPaths=true",
|
||||
"/consoleloggerparameters:NoSummary;ForceNoAlign"
|
||||
],
|
||||
"problemMatcher": "$msCompile"
|
||||
},
|
||||
{
|
||||
"label": "dotnet publish",
|
||||
"command": "dotnet",
|
||||
"type": "process",
|
||||
"args": [
|
||||
"publish",
|
||||
"${workspaceFolder}/src/AmtrakStatus.csproj",
|
||||
"/property:GenerateFullPaths=true",
|
||||
"/consoleloggerparameters:NoSummary;ForceNoAlign"
|
||||
],
|
||||
"problemMatcher": "$msCompile"
|
||||
},
|
||||
{
|
||||
"label": "dotnet watch",
|
||||
"command": "dotnet",
|
||||
"type": "process",
|
||||
"args": [
|
||||
"watch",
|
||||
"run",
|
||||
"--project",
|
||||
"${workspaceFolder}/src/AmtrakStatus.csproj"
|
||||
],
|
||||
"problemMatcher": "$msCompile"
|
||||
},
|
||||
{
|
||||
"type": "cargo",
|
||||
"command": "tauri",
|
||||
"isBackground": true,
|
||||
"args": [
|
||||
"dev"
|
||||
],
|
||||
"group": "build",
|
||||
"label": "tauri dev"
|
||||
},
|
||||
{
|
||||
"type": "cargo",
|
||||
"command": "tauri",
|
||||
"isBackground": true,
|
||||
"args": [
|
||||
"build"
|
||||
],
|
||||
"group": "build",
|
||||
"label": "tauri build"
|
||||
}
|
||||
]
|
||||
}
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "dotnet build",
|
||||
"command": "dotnet",
|
||||
"type": "process",
|
||||
"args": [
|
||||
"build",
|
||||
"${workspaceFolder}/src/AmtrakStatus.csproj",
|
||||
"/property:GenerateFullPaths=true",
|
||||
"/consoleloggerparameters:NoSummary;ForceNoAlign"
|
||||
],
|
||||
"problemMatcher": "$msCompile"
|
||||
},
|
||||
{
|
||||
"label": "dotnet publish",
|
||||
"command": "dotnet",
|
||||
"type": "process",
|
||||
"args": [
|
||||
"publish",
|
||||
"${workspaceFolder}/src/AmtrakStatus.csproj",
|
||||
"/property:GenerateFullPaths=true",
|
||||
"/consoleloggerparameters:NoSummary;ForceNoAlign"
|
||||
],
|
||||
"problemMatcher": "$msCompile"
|
||||
},
|
||||
{
|
||||
"label": "dotnet watch",
|
||||
"command": "dotnet",
|
||||
"type": "process",
|
||||
"args": [
|
||||
"watch",
|
||||
"run",
|
||||
"--project",
|
||||
"${workspaceFolder}/src/AmtrakStatus.csproj"
|
||||
],
|
||||
"problemMatcher": "$msCompile"
|
||||
},
|
||||
{
|
||||
"type": "cargo",
|
||||
"command": "tauri",
|
||||
"isBackground": true,
|
||||
"args": ["dev"],
|
||||
"group": "build",
|
||||
"label": "tauri dev"
|
||||
},
|
||||
{
|
||||
"type": "cargo",
|
||||
"command": "tauri",
|
||||
"isBackground": true,
|
||||
"args": ["build"],
|
||||
"group": "build",
|
||||
"label": "tauri build"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue