|
I have to say I am excited to see Microsoft release a new process template named eScrum. After installing it I must say I am pretty happy thus far. Steve Loethen goes into more detail about what the template offers. One issue I have with these new Microsoft project that use other downloadable Microsoft project to build their solutions are the constant list of separate download and moving dll. Just push the version you used with the download. In eScrum's case, they have you download ASP.NET AJAX, Microsoft XSS Library, and AJAX Control Toolkit. Arrgggg... One you start downloading the extra dlls you need, if you do not have version 1.0.10301.0 in your library of controls, you will need to follow the steps in the troubleshooting section that redirect the version of these controls the application will use. Arrrgggggg.... If you download the latest version, the readme will tell you to add this section to the web.config. <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.10606.0"/> </dependentAssembly> </assemblyBinding> </runtime>
|