scottdurow / SparkleXrm

An open-source library for building Dynamics CRM XRM solutions using Script#, jQuery & Knockoutjs.
MIT License
264 stars 194 forks source link

Plug-in assembly fullnames must be unique (ignoring the version build and revision number). #476

Open radevic opened 11 months ago

radevic commented 11 months ago

I must be missing something, I am trying to register a new version of assembly since I changed input/output parameters for some CWAs. In AssemblyInfo.cs I changed AssemblyVersion and AssemblyFileVersion properties from "1.0.0.0" to "1.1.0.0". When I try to run deploy-workflows script I get the error from the title. How do I make spkl realize that I am trying to register it as a new assembly? It seems that it finds 2 assemblies with same name and complains about it.

I can register assembly as new one in Plugin Registration Tool. I keep the same name to be able to change CWA version in workflows. New version is visible in plugin reg tool, public key token remains the same. I would just like to make spkl work this way, at least for updates if it is not possible for first registration.

Thanks in advance