diff --git a/addComposReference.ps1 b/addComposReference.ps1 new file mode 100644 index 00000000..475873b0 --- /dev/null +++ b/addComposReference.ps1 @@ -0,0 +1,6 @@ +$relevantPath = "ComposGH\bin\x64\Debug\net48" +$absolutePath = Resolve-Path $relevantPath + +$destinationDir = "$env:APPDATA\Grasshopper\Libraries" + +echo $absolutePath > "$destinationDir\ComposGhTests.ghlink" diff --git a/removeComposReference.ps1 b/removeComposReference.ps1 new file mode 100644 index 00000000..113cc6bc --- /dev/null +++ b/removeComposReference.ps1 @@ -0,0 +1,6 @@ +$relevantPath = "ComposGH\bin\x64\Debug\net48" +$absolutePath = Resolve-Path $relevantPath + +$destinationDir = "$env:APPDATA\Grasshopper\Libraries" + +rm "$destinationDir\ComposGhTests.ghlink"