User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T23:26:02Zhttp://stackoverflow.com/feeds/user/54330http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/436958/net-app-config-question1.NET app.config questiongary.rosales2009-01-12T20:47:49Z2009-04-26T23:37:02Z
<p>I have created an Excel 2003 add-in that uses the CLR 2.0 and this add-in is to be installed in hundreds of machines at my customer's site. The issue is that some of the machines where the add-in is installed have .NET 1.1 and .NET 2.0 running side by side, and the plugin throws an error when it's trying to load. </p>
<p>The solution I have come across that works is to create an excel.exe.config file in the same folder where excel.exe is that sets the supportedRuntime version to v2.0.50727. </p>
<p>Because this solution does not scale well in my case (since the add-in is to be used in hundreds of machines where the users might not even have access to create a config file), I was wondering if I could add the same supportedRuntime parameter in my plugin app.config file and it would work. </p>
<p>If this will not work, do you guys know of anything else I could try?</p>
http://stackoverflow.com/questions/436958/net-app-config-question/437112#437112Comment by on .NET app.config question2009-01-12T23:05:39Z2009-01-12T23:05:39ZI don't think I explained the issue correctly. The error is in Excel 2003 since even though .NET 2.0 is installed, it defaults to .NET 1.1. I am using a tool called add-in-express for VS 2005, and I am pretty sure - though not 100% sure - this tool does use the IDTExtensiblity interface.http://stackoverflow.com/questions/436958/net-app-config-question/437112#437112Comment by on .NET app.config question2009-01-12T22:02:02Z2009-01-12T22:02:02ZUnfortunately, I don't have access to windows machine with VS and Excel right now to tell you the specific error. But I am pretty sure the error is related to the fact that Excel is loading CRL 1.1 instead of the CLR 2.0.http://stackoverflow.com/questions/436958/net-app-config-question/436982#436982Comment by on .NET app.config question2009-01-12T21:16:27Z2009-01-12T21:16:27ZI thought about this, but I would like to leave it as a last option if nothing else comes up.