Hello
Can you please update RhinoCommon and Grasshopper templates.
To work with Visual Studio Community 2022
Hello
Can you please update RhinoCommon and Grasshopper templates.
To work with Visual Studio Community 2022
Nobody really needs such templates though
All you really need is a project file that looks as simple as this:
I think a new SDK-style version csproj file might be better (with fewer lines).
Where do I select Rhino7.exe in the executable from VisualStudio2022?
It’s embedded in your .csproj file.
<PropertyGroup Condition="$(Configuration) == 'Debug' AND $([MSBuild]::IsOSPlatform(Windows))">
<StartProgram>C:\Program Files\Rhino 7\System\Rhino.exe</StartProgram>
<StartArguments></StartArguments>
<StartAction>Program</StartAction>
</PropertyGroup>
– Dale