Hi, I currently have this code in my app.config
<? xml version = "1.0 "?>
< configuration >
< runtime >
< assemblyBinding xmlns = "urn:schemas-microsoft-com:asm.v1 ">
< dependentAssembly >
< assemblyIdentity name = "Microsoft.Build.Framework " publicKeyToken = "b03f5f7f11d50a3a " culture = "neutral "/>
< bindingRedirect oldVersion = "0.0.0.0-99.9.9.9 " newVersion = "3.5.0.0 "/>
</ dependentAssembly > ...
however, I don't want this to be located in my app.config as the code is in a library used by several other applications, and I don't want to add this to the app.config for each and every exe project.
I am most confident that this should be possible to do in code using the MSBuild API.
Can someone please tell me how?
Thanks!
/JO