I am converting a large solution from Visual Studio 2008 to Visual Studio 2010. The conversion completes without errors. When I go to build the solution one particular section of the application throws error but it didn't when the solution was 2008.
Error 1 Could not load file or assembly 'System.Web.DataVisualization, Version=3.5.0.0, ...
Skinner's Blog has some nice introductory material for the new Directed Graph Markup Language in Visual Studio 2010, but I'd like more. Anyone know where to find some details documents or specs?
...
I have the ProjectItem, and want to get the IWPFTextView that is associated with it, if any.
I have tried to get an IVsTextManager, and then iterate through the views, but iVsTextManager.EnumViews always returns nothing.
Here is what I've got so far:
var txtMgr = (IVsTextManager)Package.GetGlobalService(typeof(SVsTextManager));
if (t...
When using NUnit, I can turn off shadow copy so that my test assemblies are run from the output directory. I need this because my tests in this case aren't unit tests, but are integration tests which need to be able to access some of the assemblies that are copied into the output directory by the build.
However, I can't find a way of t...
I imported a website made in visual studio express 2008 to visual studio express 2010. When I run the home page I get the following error:
"It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level. This error can be caused by a virtual directory not being configured as an applicatio...
Info: Visual Studio 2010, C#
I am looking at the following functionality via a Visual Studio Add-in
User has a Class Project and clicks a button (This bit is fine)
WCF Project is automatically created in current solution (This bit is fine)
Service Reference is added to the current Project
I can create a working WCF Project and if I ...
Is anyone successfully using Expression Blend Preview for .NET 4 with the RC of VS 2010/.NET 4? I installed EBP beside Expression Blend 3 on my development machine. It launches okay, but when I try to open a solution created with VS 200, it crashes.
Has anyone else run into this? Is there a fix? Thanks.
...
Hi,
I need to create an entirely new Sql Server 2008 database and want to use a Database Project in Visual Studio 2010 (Ultimate). I've created the project and added a table under the dbo schema.
The table .sql is shown only as plain text, though with colors. It has no designer, no Add Column, and no autocomplete. Existing column's pr...
I've downloaded the iso, mounted, and installer is running fine. However gets stuck during loading setup components. Just sits there and nothing happens.
What can I do to fix this, if anything?
...
I have VS2010, and I've opened up a web site. How can I now use MS Deploy to deploy to a zip file, which can be installed in a remote IIS site?
I've searched through all the menu options, but can't seem to find out where to get started.
Thanks in advance
...
I noticed when VS 2010 doesn't load the symbols for an app, the breakpoints do not fire. How do I force VS to load the symbols every time the web app runs in debug mode?
...
Is it possible to map stored procédures whit EF 4 using T4 templates ?
I have searched and I conclude that it is not possible yet.
It exist some methods like Edm.SourceComplexTypes(), Edm.SourceAssociations(), Edm.SourceEntities() but nothing about stored procedures ...
Someone have any answer ?
Thanks.
...
I have this code:
#include <iostream>
#include <functional>
struct A
{
int operator()(int i) const {
std::cout << "F: " << i << std::endl;
return i + 1;
}
};
int main()
{
A a;
std::tr1::function<int(int)> f = std::tr1::ref(a);
std::cout << f(6) << std::endl;
}
The aim is to pass the functor object...
A group of us are working on a project which we built with .NET 3.5 in Visual Studio 2008. I want to test out Visual Studio 2010 and .NET 4 (well, mainly for WPF 4). I am just wondering if I install VS 2010, will I still be able to use VS 2008 to open the first project.
I know when I open older projects made in VS 2003/2005, I get an up...
I can open the DefaultTemplate.xaml that was installed as part of our TFS 2010 RC setup. I created a copy of this template called ApplicationTemplate.xaml and modified it slightly, using the workflow designer in Visual Studio.
Now, I can no longer open ApplicationTemplate.xaml. When I try, I receive many errors like the following:
Er...
I.e. we use stdafxmanaged.h for all managed source files and stdafx.h for normale Win32 files. The reason I ask is that we have done this with success in VS.NET 2008, but when we upgraded to VS.NET 2010, the compiler always want to delete the PCH files and recompile everything all the time.
...
How to stop execution of an ASP.NET app on demand during debugging and show the line of code where the app was aborted at that moment? Using Visual Studio 2010 RC Ultimate.
...
I'm running this code on a UML Class Diagram, and it works just fine, but when trying to apply stereotypes from PropertiesEditor in Visual Studio for relationship ends (FirstRole and SecondRole), the stereotypes combo doesn't load even if in code there seems to be applicable stereotypes valid for association properties.
What should I put...
Does anyone know if it is possible to use Visual Studio 2010 RC with the beta 2 version of the .NET 4 framework? The reason I need to use the beta 2 version and not the RC is that there isn't an Expression Blend that can support the .NET 4 RC.
I uninstalled the .NET 4 framework that installed with Visual Studio 2010, then I reinstalled ...
How to export use case diagram in visual studio 2010 as image?
jpg or other image to Microsoft word
...