diff --git a/.github/workflows/installer-creator-rhinogh.yml b/.github/workflows/installer-creator-rhinogh.yml index 90dabba458..8d8bcdfb02 100644 --- a/.github/workflows/installer-creator-rhinogh.yml +++ b/.github/workflows/installer-creator-rhinogh.yml @@ -69,7 +69,7 @@ jobs: - name: Restore all the applications shell: cmd run: | - for %%x in (Objects, ConnectorRhino, ConnectorGrasshopper) do ( + for %%x in (Objects, ConnectorRhino) do ( cd %%x && msbuild %%x.sln /t:Restore /p:Configuration=Release /p:WarningLevel=0 /p:IsDesktopBuild=false && cd ../ ) env: @@ -81,7 +81,7 @@ jobs: shell: cmd run: | SET _version=${{ github.event.inputs.version }} - for %%x in (Objects, ConnectorRhino, ConnectorGrasshopper) do ( + for %%x in (Objects, ConnectorRhino) do ( cd %%x && msbuild %%x.sln /p:Configuration=Release /p:WarningLevel=0 /p:IsDesktopBuild=false /p:AssemblyVersionNumber=%_version% /p:AssemblyInformationalVersion=%_version% /p:Version=%_version% && cd ../ ) diff --git a/.github/workflows/installer-creator.yml b/.github/workflows/installer-creator.yml index 7ef6093cd8..7f72799512 100644 --- a/.github/workflows/installer-creator.yml +++ b/.github/workflows/installer-creator.yml @@ -84,7 +84,7 @@ jobs: - name: Restore all the applications shell: cmd run: | - for %%x in (Objects, ConnectorAutocadCivil, ConnectorDynamo, ConnectorGrasshopper, ConnectorRevit, ConnectorRhino, ConnectorCSI, ConnectorGSA, ConnectorBentley) do ( + for %%x in (Objects, ConnectorAutocadCivil, ConnectorDynamo, ConnectorRevit, ConnectorRhino, ConnectorCSI, ConnectorGSA, ConnectorBentley) do ( cd %%x && msbuild %%x.sln /t:Restore /p:Configuration=Release /p:WarningLevel=0 /p:IsDesktopBuild=false && cd ../ )