Skip to content

Commit

Permalink
Merge branch 'refactor' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
redssu committed Feb 25, 2023
2 parents 4adc9b4 + 9c552e3 commit 9447435
Show file tree
Hide file tree
Showing 104 changed files with 5,347 additions and 5,931 deletions.
454 changes: 454 additions & 0 deletions .gitignore

Large diffs are not rendered by default.

26 changes: 26 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"version": "0.2.0",
"configurations": [
{
// Use IntelliSense to find out which attributes exist for C# debugging
// Use hover for the description of the existing attributes
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
"name": ".NET Core Launch (console)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/src/bin/Debug/HarmonyTools.dll",
"args": [],
"cwd": "${workspaceFolder}/src",
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
"console": "internalConsole",
"stopAtEntry": false
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach"
}
]
}
41 changes: 41 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/src/HarmonyTools.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/src/HarmonyTools.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"--project",
"${workspaceFolder}/src/HarmonyTools.csproj"
],
"problemMatcher": "$msCompile"
}
]
}
27 changes: 0 additions & 27 deletions ConvertAll/ConvertAll.csproj

This file was deleted.

180 changes: 0 additions & 180 deletions ConvertAll/Program.cs

This file was deleted.

27 changes: 0 additions & 27 deletions Dat/Dat.csproj

This file was deleted.

Loading

0 comments on commit 9447435

Please sign in to comment.