Currently I have both Visual Studio 2005 and 2008 on my machine. If I uninstall Visual Studio 2005, would I be missing something? If there is, what are they? Let's assume that I did a complete (not default) installation for both releases.
Thanks in advance for your time and expertise.
...
I have a String resource that needs to have different value based on the conditional compile.
How to setup different Resources for different compile macros in Visual Studio 2008 Professional?
...
In a WPF application I use LINQ to SQL, SQL Server 2008.
SQL Server computer was replaced and SQL Server was installed under instance name not the same as before. Database was restored under the same name as before.
The new connection string was added to the application.
But it appeared that it is impossible for the application to con...
I have a solution which contains a website and various class libraries. The exists on the file system like so:
C:\Projects \MyWebsite\dev\MyWebsite.sln
C:\Projects\Core\MyClassLibrary1.csproj
C:\Projects\Core\MyClassLibrary2.csproj
I want to move the App.config file from MyClassLibrary1 project to the bin of the MyClassLibrary2. I...
I have an image of the political map of the USA. I want to write separate click events for each of the 50 states in Visual Studio. How would I do that?
...
I want to force a root namespace on the contents of any .cs source files that don't have their contents wrapped in an explicit namespace. In other words I want to keep classes and other namespace-level structures out of the default namespace.
(Working inside a Windows .NET environment with Visual Studio)
In the following example, I want...
Hello,
I have a name space Company.Controls, which contains several controls. I also have a class called "Common" which contains enums/structures/static methods that I use throughout the controls.
Is there a way to make these "Common" peices belong to the Company.Controls namespace this way I don't have to keep typing "Common.Structu...
I've downloaded the WTL 8.0 package and come to find the scripts to install App Wizards don't support VS 2010.
Does anyone know of updates scripts to support installation in VS 2010?
Thank you!
...
When I am trying to debug in visual studio 2008, im getting the following error. I have cleaned the asp.net temp folder and restarted VS. I also removed the supposedly breaking reference and added it back. But nothing seems to working. Has anyone faced similar situations and is there a solution.
Could not load file or assembly '"GCS.C...
Hello,
Is there a way to tell if the project was done in Visual Studio 2008 Express Edition or higher (pay) versions were used? Like if you were handed over a project and they ask you what version of Visual Studio was it created with (except the obvious 2005/2008/2010 difference).
With regards,
MadBoy
...
Possible Duplicate:
How can i build a visual studio solution using xbuild (from Mono)?
How to compile a visual studio project/solution with Mono ?
If this is possible, Will the output run without installing .NET Framework ?
...
I have a text file with a list of 300,000 words and the frequency with wich they occur. Each line is in the format Word:FequencyOfOccurence.
I want this information to be accessible from within the C# code. I can't hard code the list since it is too long, and I'm not sure how to go about accessing it from a file on the server. Ideall...
I want to install VS 2010 RC but do not want to get rid of VS 2008 until the 2010 final release.
...
MonoDevelop allows you to save your solution in either MonoDevelop format or Visual Studio format. What is the difference between these two formats? Are they different ways or storing the same thing? If not, what does one store that the other does not?
...
I want to be able to automatically publish to a local folder each time a web asp.net mvc 2 project is built.
I use Visual Studio 2008.
...
I am only aware of 2:
dumpbin which is included with Visual Studio
PEView from http://www.magma.ca/~wjr/.
...
I am using T4 for generation of some DTO classes + mappers.
I am splitting the files in a number of re-usable bits (some of which containing common methods, some others common procedures) and including them into the T4 templates that will produce my output - which is all good.
My problem is that the re-usable .tt files will try and pro...
Up until now in VC++, when I want to see everything I do :: . This shows all of my objects. Is there a way to make it like c# so it checks as you type without needing :: . Thanks
...
Is there a way to make the web deployment project automatically compress js and css files when building it? how can I automate this process?
...
I have an ArrayList filled with a bunch of Points and I want to loop over them, so I use this code:
for (int i = 0; i < currentClicks.Count; i++)
{
if (i > 0) // Skip the first click
{
clickPos = currentClicks[i];
prevPos = currentClicks[i - 1];
}
}
and I get this error on the clickPos and prevPos lines:
C...