Just some thoughts when working with Umbraco in Visual Studio 2010.
I tend to work a lot with my Umbraco projects directly in Visual Studio since it unhands some extra power and dimensions to the development process. However the uTube plugin crashes all xslt when you use the built in web server in VS.
This renders errors like
Could not load file or assembly 'Google.GData.Client ...
Could not load file or assembly 'Google.GData.Analytics ...
I did try the overall recommended solution which strangely was to add the assemblyBindings to the web.config. This did not work either, at least not at it's own.
Not sure why you'd need to do the assemblyBinding for the Google.GData.* assemblies. For the projects where I have used uTube in VS2010, I have referenced those DLLs in the project/solution.
Unless you already had the Google.GData.* assemblies registered in your GAC? (e.g. for another project?)
uTube in Visual Studio 2010
Just some thoughts when working with Umbraco in Visual Studio 2010.
I tend to work a lot with my Umbraco projects directly in Visual Studio since it unhands some extra power and dimensions to the development process. However the uTube plugin crashes all xslt when you use the built in web server in VS.
This renders errors like
Could not load file or assembly 'Google.GData.Client ...
Could not load file or assembly 'Google.GData.Analytics ...
I did try the overall recommended solution which strangely was to add the assemblyBindings to the web.config. This did not work either, at least not at it's own.
The solution is a combination of the above XML and GAC. They depend on each other.
Drag and drop Google.GData.Analytics.dll and Google.GData.Client.dll to c:\windows\gac\
or use gacutil -i ... to install them.
Unless someone have another solution?
Hi Eric,
Not sure why you'd need to do the assemblyBinding for the Google.GData.* assemblies. For the projects where I have used uTube in VS2010, I have referenced those DLLs in the project/solution.
Unless you already had the Google.GData.* assemblies registered in your GAC? (e.g. for another project?)
Not sure what to suggest.
- Lee
is working on a reply...