.NET Questions (CLOSED)Questions and Answers on any aspect of .NET. Now closed. |
||
|
This discussion group is now closed.
Have a question about .NET development? Try stackoverflow.com, a worldwide community of great developers asking and answering questions 24 hours a day. The archives of .NET Questions contain years of Q&A. Even older .NET Questions are still online, too. |
Hi Guys,
I build a macro that builds my application then uses a code protection program to protect the exe file then runs Innosetup builder to build my setup project. then uploads the setup project to my downloads folder on the website to update the setup file. What im having a problem with is finding a way to swtich it to Release | AnyCPU for the active configuration. I need a way to detect if its in Debug | AnyCPU mode and switch to release mode with a macro. then switch it back to Debug mode. any help or direction is appreciated. Thanx
I do not know the way to detect the current state, but you can record a Macro to switch to your desired situation and another one to go back.
Steps: 1. Visual Studio menu Tool, Macros, Record TemporaryMacro. 2. Menu Tool, Macros, Save TemporaryMacro. 3. Edit the macro in the Macro Explorer window (right-click macro name, click Edit) This is the code you get when switching to Release and the platform Itanium: Sub TemporaryMacro() DTE.ExecuteCommand("Build.SolutionConfigurations", "Release") DTE.ExecuteCommand("Build.SolutionPlatforms", "Itanium") End Sub |
|
Powered by FogBugz


