What's this?This is an extension for Visual Studio "15" (vNext), adding support for debugging scriptcs scripts, when opening them with "Open Folder". Note: this is a very early preview, and everything might change in the future. InformationAt Build 2016, Microsoft announced a new Visual Studio vNext feature called Open Folder:
Installation and configuration:Grab the latest vsix file from the Releases page, and double-click it to install in Visual Studio. Once installed, open Visual Studio "15", select File > Open > Folder..., and select a folder containing scriptcs (*.csx) files Right click on any .csx file, and select Set as Startup Item: Finally, click the dropdown arrow of the Debug button, and select Customize: A file called launch.json will open. We need to specify the path to scriptcs.exe inside the file like this: { "version": "0.2.0", "configurations": [ { "name": "HelloWorld.csx", "project": "HelloWorld.csx", "scriptcs_exe": "C:\\dev\\scriptcs\\src\\ScriptCs\\bin\\Release\\scriptcs.exe" } ]} Save the file, and press F5! |