eScrum Update: ASP.NET AJAX Control Toolkit Version Conflicts

For those who have experienced any problems getting eScrum (Now Available: Microsoft eScrum Version 1.0) installed and working due to ASP.NET AJAX Control Toolkit version conflicts:

Since you can't download previous versions of the ASP.NET AJAX Control Toolkit, and eScrum is compiled with a specific version, you may need to update the web.config file to allow automatic usage of a newer version of the ASP.NET AJAX Control Toolkit. eScrum has not been tested with newer versions, but may work well.

Add the following XML to the eScrum web.conifg file after the </configSections> close tag. Afterward, update the newVersion attribute to the version of the ASP.NET AJAX Control Toolkit that you are using.

<runtime>

      <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">

            <dependentAssembly>

                  <assemblyIdentity name="AjaxControlToolkit"

                        publicKeyToken="28f01b0e84b6d53e"

                        culture="neutral"/>

                  <bindingRedirect oldVersion="1.0.10301.0" newVersion="1.0.xxxxx.0"/>

            </dependentAssembly>

      </assemblyBinding>

</runtime>

Let me know if that helps/hinders.

1312