2007-03-11, 07:16 PM
bgowland Wrote:Go to the Build menu - you'll now have a 'Configuration Manager' option. Enjoy!Thank you bgowland! It seems VS Express isn't as bad as I initially thought.
I'm using a file "MyProjectName.csproj.user" as follows to tell Visual Studio Express to start the debugger on gbpvr (details).
Code:
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<StartAction>Program</StartAction>
<StartProgram>C:\Program Files\devnz\gbpvr\gbpvr.exe</StartProgram>
</PropertyGroup>
</Project>
Is there an easier way?