File tree Expand file tree Collapse file tree 6 files changed +83
-0
lines changed Expand file tree Collapse file tree 6 files changed +83
-0
lines changed Original file line number Diff line number Diff line change 1+ #FileLock
2+ #Sat Jul 31 08:14:40 EDT 2021
3+ server=localhost\:64223
4+ hostName=localhost
5+ method=file
6+ id=17afc7ce0e399777accad23bd899d0c9fcd72c4275f
Original file line number Diff line number Diff line change 1+ {
2+ "version" : " 0.2.0" ,
3+ "configurations" : [
4+ {
5+ // Use IntelliSense to find out which attributes exist for C# debugging
6+ // Use hover for the description of the existing attributes
7+ // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
8+ "name" : " .NET Core Launch (console)" ,
9+ "type" : " coreclr" ,
10+ "request" : " launch" ,
11+ "preLaunchTask" : " build" ,
12+ // If you have changed target frameworks, make sure to update the program path.
13+ "program" : " ${workspaceFolder}/src/Hypermc/bin/Debug/net5.0-windows/Hypermc.dll" ,
14+ "args" : [],
15+ "cwd" : " ${workspaceFolder}/src/Hypermc" ,
16+ // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
17+ "console" : " internalConsole" ,
18+ "stopAtEntry" : false
19+ },
20+ {
21+ "name" : " .NET Core Attach" ,
22+ "type" : " coreclr" ,
23+ "request" : " attach"
24+ }
25+ ]
26+ }
Original file line number Diff line number Diff line change 1+ {
2+ "files.watcherExclude" : {
3+ "**/target" : true
4+ }
5+ }
Original file line number Diff line number Diff line change 1+ {
2+ "version" : " 2.0.0" ,
3+ "tasks" : [
4+ {
5+ "label" : " build" ,
6+ "command" : " dotnet" ,
7+ "type" : " process" ,
8+ "args" : [
9+ " build" ,
10+ " ${workspaceFolder}/src/Hypermc/Hypermc.csproj" ,
11+ " /property:GenerateFullPaths=true" ,
12+ " /consoleloggerparameters:NoSummary"
13+ ],
14+ "problemMatcher" : " $msCompile"
15+ },
16+ {
17+ "label" : " publish" ,
18+ "command" : " dotnet" ,
19+ "type" : " process" ,
20+ "args" : [
21+ " publish" ,
22+ " ${workspaceFolder}/src/Hypermc/Hypermc.csproj" ,
23+ " /property:GenerateFullPaths=true" ,
24+ " /consoleloggerparameters:NoSummary"
25+ ],
26+ "problemMatcher" : " $msCompile"
27+ },
28+ {
29+ "label" : " watch" ,
30+ "command" : " dotnet" ,
31+ "type" : " process" ,
32+ "args" : [
33+ " watch" ,
34+ " run" ,
35+ " ${workspaceFolder}/src/Hypermc/Hypermc.csproj" ,
36+ " /property:GenerateFullPaths=true" ,
37+ " /consoleloggerparameters:NoSummary"
38+ ],
39+ "problemMatcher" : " $msCompile"
40+ }
41+ ]
42+ }
Original file line number Diff line number Diff line change 1+ !define APP_NAME " HyperMc"
2+ !define APP_VERSION " 1.0.0"
3+
4+ !define INSTALLER_TITLE = " ${APP_NAME} - ${APP_VERSION} - Setup"
You can’t perform that action at this time.
0 commit comments