vote up 0 vote down star

Hello, I am trying to create a Visual Studio Extension (either Add-In or VSPackage) that will do the following:

1) Find all selected projects in the current solution. 2) Obtain access to each project's app.config or web.config file and modify it.

I have been able to figure out step 1 for both an Add-In and a VSPackage. I haven't managed to figure out a way to do step 2). Does anyone have pointers to a blog / documentation that can help me complete step 2) ?

Also, which extensibility option would you recommend for such a project? An Add-In or a VSPackage?

Thanks,

armahg

flag

50% accept rate

1 Answer

vote up 0 vote down

Since you have the selected projects, why just don't check if project directory has web.config/app.config files and if they exist then edit them? They are just xml files.

link|flag
Hhmm I didn't think of that option. I was hoping there would be an API to do this with kind of like the AppSettings.Get, AppSettings.Set methods. I will try it though. Thanks. – armahg Feb 16 at 18:03
ConfigurationManager.OpenExeConfiguration - msdn.microsoft.com/en-us/library/… - this might help – Alex Reitbort Feb 16 at 19:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.