From 22248deb338131ea756171945e698f36b3d9f2be Mon Sep 17 00:00:00 2001 From: spsarras Date: Thu, 12 Dec 2024 14:39:15 +0000 Subject: [PATCH] feat: add and remove scripts for debuging purposes --- addComposReference.ps1 | 6 ++++++ removeComposReference.ps1 | 6 ++++++ 2 files changed, 12 insertions(+) create mode 100644 addComposReference.ps1 create mode 100644 removeComposReference.ps1 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"