I have a VS2013 C# MVC project where I need to run a post build process that takes 2 parameters where the values already exist within the web.config.
Within the post-build event command line I would like something like this: MyBatchFile.bat "WebConfigParam1" "WebConfigParam2" where both WebConfigParam1 and WebConfigParam2 exist in the app settings of the web.config. This would allow me to have dynamic properties based on environment, and would automate the process.
Does something like this exist?
Thanks!