Last active
August 2, 2024 11:46
-
-
Save ricaun/482edc40d2b680ab733e12492264fd0d to your computer and use it in GitHub Desktop.
File to use in Revit 2025 to force Macro Manager to open csproj file with your IDE.
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
@echo off | |
REM Navigate to the specified directory | |
cd /d "%~1" | |
REM Loop through all .csproj files and open them | |
for %%f in (*.csproj) do ( | |
start "" "%%~f" | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Copy the
code.cmd
to some folder likeC:\Program Files\Autodesk\Revit 2025\code.cmd
and update the configuration in Macro Manager.