-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Support compiling with WinForms in .NET 7 on Mac - Add VS debug targets for Rhino 8 netfx/netcore - Include launch.json/tasks.json for VS Code to make it easier to start debugging on Mac - Remove VS for Mac build
- Loading branch information
Showing
46 changed files
with
1,568 additions
and
564 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"omnisharp.defaultLaunchSolution": "Rhino.VisualStudio.Mac.sln", | ||
"var": { | ||
"configuration" : "Debug", | ||
"buildProperties" : "/v:Minimal /p:GenerateFullPaths=True /consoleLoggerParameters:NoSummary" | ||
}, | ||
"dotnet.defaultSolution": "Rhino.VisualStudio.Mac.sln", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Launch Rhino 8", | ||
"type": "coreclr", | ||
"request": "launch", | ||
"preLaunchTask": "build", | ||
"program": "", | ||
"osx": { | ||
"program": "/Applications/Rhino 8.app/Contents/MacOS/Rhinoceros" | ||
}, | ||
"windows": { | ||
"program": "C:\\Program Files\\Rhino 8\\System\\Rhino.exe", | ||
"targetArchitecture": "x86_64", | ||
}, | ||
"args": [], | ||
"env": { | ||
"RHINO_PACKAGE_DIRS": "${workspaceFolder}/bin/Debug" | ||
}, | ||
"cwd": "${workspaceFolder}", | ||
"stopAtEntry": false, | ||
"console": "internalConsole" | ||
}, | ||
//#if (RhinoVersion <= '7') | ||
{ | ||
"name": "Launch Rhino 7 Mac", | ||
"type": "rhino", | ||
"request": "launch", | ||
"preLaunchTask": "build", | ||
"program": "/Applications/Rhino 7.app/Contents/MacOS/Rhinoceros", | ||
"args": [], | ||
"env": { | ||
// "RHINO_PLUGIN_PATH": "${workspaceFolder}/bin/Debug/net48/MyGrasshopper.1.rhp", | ||
"GRASSHOPPER_PLUGINS": "${workspaceFolder}/bin/Debug/net48/MyGrasshopper.1.gha" | ||
}, | ||
"cwd": "${workspaceFolder}", | ||
"console": "internalConsole" | ||
}, | ||
{ | ||
"name": "Launch Rhino 7 Windows", | ||
"type": "clr", | ||
"request": "launch", | ||
"preLaunchTask": "build", | ||
"program": "C:\\Program Files\\Rhino 7\\System\\Rhino.exe", | ||
"targetArchitecture": "x86_64", | ||
"args": [ | ||
], | ||
"env": { | ||
}, | ||
"cwd": "${workspaceFolder}", | ||
"console": "internalConsole" | ||
}, | ||
//#endif | ||
//#if (RhinoVersion <= '6') | ||
{ | ||
"name": "Launch Rhino 6 Mac", | ||
"type": "rhino", | ||
"request": "launch", | ||
"preLaunchTask": "build", | ||
"program": "/Applications/Rhinoceros.app/Contents/MacOS/Rhinoceros", | ||
"args": [], | ||
"env": { | ||
// "RHINO_PLUGIN_PATH": "${workspaceFolder}/bin/Debug/net45/MyGrasshopper.1.rhp", | ||
"GRASSHOPPER_PLUGINS": "${workspaceFolder}/bin/Debug/net45/MyGrasshopper.1.gha" | ||
}, | ||
"cwd": "${workspaceFolder}", | ||
"console": "internalConsole" | ||
}, | ||
{ | ||
"name": "Launch Rhino 6 Windows", | ||
"type": "clr", | ||
"request": "launch", | ||
"preLaunchTask": "build", | ||
"program": "C:\\Program Files\\Rhino 6\\System\\Rhino.exe", | ||
"targetArchitecture": "x86_64", | ||
"args": [ | ||
], | ||
"env": { | ||
}, | ||
"cwd": "${workspaceFolder}", | ||
"console": "internalConsole" | ||
}, | ||
//#endif | ||
], | ||
"compounds": [] | ||
} |
Oops, something went wrong.