I have a C# Solution that includes several websites. Those websites have some communal data (e.g. images and shared jQuery extensions). Currently the data is included in each Project. Obviously we're running into sync problems and as those data directories are becoming larger, we're moving more and more data around. We could hard enc...
How do I run Visual Studio 2008 projects in Visual Studio 2005?
...
In Visual Studio, a certain project has a designer window open which is crashing visual studio. As soon as I open visual studio it crashes. I know that if I could close that designer, I'd be back in business. But I can't click the close button on the designer view before studio crashes.
What should I do?
Note: I tried devenv.exe /saf...
I have just deployed my VB.net VS2008 winforms solution to the test server.
When I did I got an error:
Unable to install or run the application. The application requires that assembly
Microsoft.Synchronization.Data.Server Version 1.0.0.0 be installed in the Global Assembly Cache (GAC) first.
I however do not know why this requir...
I have a Visual Studio 2008 solution that contains around 30 projects. Some of these are web services / WCF services / ASP.NET MVC applications.
When I run all unit tests (Ctr+R, A) it insists on spinning up all the Development Servers for these various projects. This means that it takes far too long to run the tests and, actually, none...
Hello,
When trying to run a super basic unit test in VS2008 ASP.NET 2.0, it fails:
Details: At first a simple HelloWorld() test in this ASP.NET web application project works, then I add something more real-world to the project, like an SqlDataSource and try to test that, which fails. Then I remove everything except the HelloWorld() ...
Hello guys,
I have a CheckBoxList that is populated via DataSource (each one with it's value coming from a database so I can't hard-code anything inside it), and I need to Add a button for details on the right side of an specific Item of the CheckBoxList when some event is fired.
Can i do that? how?
...
Let's say a single solution (.sln) has 2 (.vcproj) named Proj1 and Proj2. By default, Visual Studio assigned Proj1 to be my startup project.
I set Proj2 to be my desired startup project.
Then I commit everything to my repository (excluding .suo).
I re-check out, and Proj1 is still the default startup project.
Does this mean Visual ...
I have a WCF service. now, I need to create a client that consumes my service. when I try to add a service reference from Visual Studio, this is what I get an error message :
"Could not load type 'System.Data.Design.TypedDataSetSchemaImporterExtensionFS35'
from assembly 'System.Design,Version=2.0.0.0,Culture=neutral,PublicKeyToken=b03f...
Maybe a simple add-on that highlights projects that need to be rebuilt in red or something? I have ADHD when it comes to what I built and when and this would be very useful.
If nothing as such exists, maybe I'll try to write a VS 2008 add on as an exercise.
Would people find that useful?
...
I'm working on a project for school, we use visual studio 2008 there and I use it at home, both are express edition. The project in question I started at school, but I cannot edit it at home, when I open the .sln I get this
"The IntelliSense information will not be available for .VC++ projects because the Intellisense database file Loc...
We have a Visual Studio 2008 solution with a large number of projects in it. For the current product, only some of those projects are being used.
We've created a build configuration for that product so we don't have to build every project in the solution.
I want to be able to easily run all the unit tests that are relevant for this bu...
I'm currently trying to use the latest stable fmod ex in my project.
I have a main executable in a project called engine4, and a project named DX9Platform in the solution as well which ti depends on. All the fmod code is in this DX9Platform project, which generates a lib file.
DX9Platform includes fmodex_vc.lib and builds fine. However...
I have an ASP.NET web application developed in Visual Studio 2008, composed of 3 different projects (one for UI, one of BO and the third for DAL).
How can I generate a single assembly file which holds all 3? Now it's generating 3 DLLS each for each project in the solution.
...
I've got about 650 NUnit tests in my current solution in VS2008, but 40 of these are categorized either as "LongRunning" or "Integration". I do not want these to run every time I've done a change and run my test-suite (only when I specifically ask for it, and on the CI at set times).
Setting this up with TestDriven.Net is a cinch:
Tools...
I have this code:
__asm jno no_oflow
overflow = 1;
__asm no_oflow:
It produces this nice warning:
error C4235: nonstandard extension used : '__asm' keyword not supported on this architecture
What would be an equivalent/acceptable replacement for this code to check the overflow of a subtraction operation that happened before it?
...
We are using VS2008 deployment for our databases [database solutions in VS where each one has their own schema.]
The script it produces does not work quite well. "Before deployment it compares the server objects and then creates the script" is the way msdn is telling, but obviously it tries to create objects those exist, or tries to drop...
Hi
If I create a .aspx-page in Visual Studio and delete the html & body tags, then the .NET intellisense will stop working.
Why is the html & body tags required to make the .NET intellisense work?
I have to remove the html & body tags because it is a RSS-feed I am creating and not a regular web page.
Just to clarify, it is the intelli...
This happens about 50% of the time I build my web application. I have it running on my localhost (start without debugging) and when I make changes and build it will always build successfully, but sometimes not remove the app_offline.htm file it adds for the build. I then have to either refresh the solution explorer to show the app_offlin...
I'm using a server variable to determine the path of my JS, CSS, and Images. However when I'm viewing them in Visual Studio "Design" view, the IDE will not be able to determine the path. See snippet below.
<link type="text/css" href="Stylesheets/<%=CSSVersion%>/Base.css" rel="stylesheet" />
CSSVersion would be configured on the code...