I'm having trouble moving from Visual Studio 2010 Beta 2 to Visual Studio 2010RC.
Did all the adjustments regarding assemblies and namespaces but i cannot figure out how to get the following decorator resolved (for DomainService):
[LinqToEntitiesMetadataProvider(typeof(myEntities))]
Does anyone know how this must be adjusted?
Thanks in advance
It is no longer called this way. The new name is:
LinqToEntitiesDomainServiceDescriptionProvider
Pretty confusing, if one expects the names to be the same!!
Hope it helps someone in the future!
Related
we are moving from visual studio 2013 to visual studio 2015, and it is necessery for us to work with both studio in the same folders. Is there a way to use that and how can I set the tfs to work with both visual studios
Kind regards and thank you in advance
Assuming you install both VS2013 and VS2015 on your machine. When you map a project from TFS to local path in VS2013, if you open VS2015, and select the workspace you create in VS2013, then you'll see the same local path in VS2015, you don't need to map it again (make sure your project can work in both VS2013 and VS2015):
I would highly recommend to not do that as you might end up seriously corrupting the workspaces. Can you explain a bit more on why is this so necessary? I have helped organizations migrate between various instances of TFS over the few years now and we have not faced a situation like this. If you explain your particular use case a bit more I can perhaps suggest an alternative way to do this.
Also if you are working with TFS you might find this tool useful
https://visualstudiogallery.msdn.microsoft.com/a6b04ebd-e025-4c90-b238-72b48f0dfbd2
I have a question about SpriteFont in XNA 4.0 with VS 2013.
I installed XNA 4.0 from this link: https://msxna.codeplex.com/releases/view/117230
I also installed Monogames 3.2. So, the problem is, I don't have the SpriteFont in my VS :s
There is a screenshot (Yes, sorry, my VS is in french ^^):
http://snag.gy/yROn3.jpg
I probably missed something...
If someone has an idea to help me ?
In addition to that, I see the SpriteFont in my extensions of Visual Studio 2013 in "C:\Users\name\AppData\Local\Microsoft\VisualStudio\12.0\Extensions\bkxnrhqx.q30\ItemTemplates\CSharp"
Thank you very much for any answer :)
Finally I found the problem, I just made a mistake, I choose XNA Content project, but it was Monogames Content ^^
Sorry for the mistake :)
Im doing a project that needs to be converted from 2001 solution to 2010. I'm having problems with these dll's as this does not work anymore in 2010. Does anyone know what is the equaivalent of these dll's in vs 2010?
1) Microsoft.ApplicationBlocks.ExceptionManagement
2) Microsoft.Web.Services2
Thanks in advance for your help.
go through these links
http://msdn.microsoft.com/en-us/library/e74a18c4.aspxhttp://msdn.microsoft.com/en-us/library/e74a18c4.aspx
http://support.microsoft.com/kb/829026
http://msdn.microsoft.com/en-us/library/ms730294.aspx
This might be useful for you
I'm about to start a project where I will be likely to use a lot of C++/CLI. I really miss C++/CLI Intellisense in VS 2010. I've heard of some Resharper-like products for C++, but wonder if they provide complete Intellisense. Do they also work with C++/CLI?
What are people doing to overcome this limitation?
Visual Assist X, a commercial addin for Visual Studio developed by Whole Tomato Software
Yes, Visual Assist X does support C++/CLI because we make heavy use of it. Its a good product, give it a try. What it doesn't do, however is make browsing or F1 help work.
Visual Assist is rumored to have IntelliSense support. They don't advertise it, which is mighty strange. Better try to eval version to check.
Other than that, I don't doubt that most devs replace the missing support in VS2010 with VS2008.
I'm thinking of developing a tool that runs under Visual Studio 2010 and am struggling to find sample applications, source codes, and especially handouts that help in this journey.
I wonder if anyone would have any recommendation of material, or website.
Thanks
Yes, please look into VSPackages, by far the easiest and best way to extend upon VisualStudio 2010.
http://msdn.microsoft.com/library/bb286983(VS.100).aspx
It's actually incredibly easy: Just open the New Project dialogue in Visual Studio and select Visual C#->Extensibility-> Visual Studio Package.
Then look into APIs like the DTE (Design Time Extensibility).
Have fun :)
Edit:
Further learning can be found in Open Source projects which I mentioned in the comments:
AllMargins: An extension that replaces the scroll bar.
http://code.msdn.microsoft.com/OverviewMargin/Release/ProjectReleases.aspx?ReleaseId=3957
And MetalScroll which does the same and is for VS2008 as an Add-In:
http://code.google.com/p/metalscroll/
The concepts of using the DTE are the same everywhere.