ClickOnce application that uses PostSharp 1.0 seems to require 1.5 assemblies in GAC - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T08:47:36Zhttp://stackoverflow.com/feeds/question/765074http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/765074/clickonce-application-that-uses-postsharp-1-0-seems-to-require-1-5-assemblies-in0ClickOnce application that uses PostSharp 1.0 seems to require 1.5 assemblies in GACDmitri Nesteruk2009-04-19T08:31:31Z2009-06-11T08:00:01Z
<p>I have installed PostSharp 1.5 on a machine that had 1.0 previously. Now, my application which links to 1.0SP1 assemblies has for some reason started requesting for 1.5 assemblies to be <strong>in the GAC</strong> on the client side. Does anyone know why this is? (I've asked on the PostSharp forum but received no reply.)</p>
http://stackoverflow.com/questions/765074/clickonce-application-that-uses-postsharp-1-0-seems-to-require-1-5-assemblies-in/851890#8518900Answer by Saint Gerbil for ClickOnce application that uses PostSharp 1.0 seems to require 1.5 assemblies in GACSaint Gerbil2009-05-12T09:11:37Z2009-05-12T09:11:37Z<p>well it could be a referencing problem.</p>
<p>if you reference a dll which references a non specific version another, which references a specific version of another.</p>
<p>You inherit the dependancy.
So in this case.</p>
<p>Your code -> Postsharp(v1.0) -> Postsharp.Laos(any version and gets 1.0) -> PostSharp.MSBuild.dll (v1.0)</p>
<p>You update postsharp</p>
<p>Your code -> Postsharp(v1.0) -> Postsharp.Laos(any version and gets 1.5) -> PostSharp.MSBuild.dll (v1.5)</p>
<p><em>Note: the above is an example I'm not sure what order Postsharp references itself.</em></p>