Visual Studio 2010 beta 2 known issues list?
Did anyone manage to find the list of known issues for Visual Studio 2010 beta 2? Readme in the installation folder redirects me to the beta 1 list. ...
Did anyone manage to find the list of known issues for Visual Studio 2010 beta 2? Readme in the installation folder redirects me to the beta 1 list. ...
For one of my ASP.Net site I use AnkhSVN to commit to a VisualSVN Server with a post commit hook to update the live website. This setup works great for every directory EXCEPT the Bin directory. When I build my solution the dll is placed in the site's /Bin but does not show up in Pending Changes. If I select the dll, right click -> Refre...
With Visual Studio Setup Project I can ask for the user for some input, like a location of a folder. There is any way for the installed application to read the user input? ...
for example: I have app A, which references library A and library B. in addition, library A itself references a different version of library B. (these are all in C#) I want all references to point to a binary DLL file. right now I have a lib folder like so: lib/LibA/v1/LibA_1.dll lib/LibB/v1/LibB_1.dll lib/LibB/v2/LibB_2.dll let's sa...
What's the easiest way to discover (without access to the source project) whether a .NET assembly DLL was compiled as 'x86', 'x64' or 'Any CPU'? Update: A command-line utility was sufficient to meet my immediate needs, but just for the sake of completeness, if someone wants to tell me how to do it programmatically then that would be of ...
If I set the assembly version number for a C# DLL in Visual Studio 2008, is it possible to have the compiled binary automatically include this version number in the file name? If I manually rename the file, projects that reference it break. Why is that? Does the file name somehow map to the assembly name inside? ...
I have noticed that when I was running Windows XP, if my code dereferenced null I would get a crash in debug and I could then easily identify where the bug was coming from. It seems that in Windows 7 (I'm running 64-bit), instead of crashing or creating any sort of notification, the code will simply break its current iteration and start...
We do have a project wich uses the MIDL tool to create specific header/iid and proxy files. Those files are compiled and linked with the rest of the project using a post build step that calls nmake. Is it possible to use precompiled headers with thos IDL generated files? How can I inject #include "stdafx-h" and remove other included hea...
Do the characters in the preview box mean anything? Have wracked my brains and probably missed the obvious, or I'm a bit daft and its something I should already know! ...
Pardon the massive headline. I'm in the situation of having to build an application on top of a database, that I cannot make any changes to. The database does not have any primary- or foreignkeys set. I'm using linq-2-sql, and I'm interested in having some properties exposed on the entities generated from my dbml. For instance, in the ...
Resource scripts loaded from .rgs files are used with ATL CComModule::UpdateRegistryFromResource(). It's quite common to see samples of such files on the net but I've never seen a complete description on what constructs are allowed in .rgs files. Is there such a document? ...
In my windows form I have a text box and a button, the text box “tb_LogBox” is multiline text box I am trying to create a background worker that is supposed to call a function i.e. “LogTimer.DnT()” when I compile is and run it Visual studio throws InvalidOperationException. The actual Error I am getting Cross-thread operation not vali...
The VS-IDE will write //{{NO_DEPENDENCIES}} to resource header files. This comment is actually a feature that prevents (unnecessary) rebuilding of cpp files that include the resource header. But, like stated in the MSDN, this can lead to "undesirable side-effects". In our project we do have the resource.h included in the stdafx.h for p...
I have just installed Visual Studio 2010 Beta 2 and it crashes when I try to open a file - also when opening any cpp file through the 'File' menu. Any ideas? Where is the appropriate forum to ask about this? ...
How can I show only the icons in visual studio windows? For example, the properties bar tab shows the icon and the text "Properties". Also the toolbox tab shows the icon the text "Toolbox". I would like to see only icons on tabs. Do you know where this setting is? Thanks ...
Hi All, Is there any tool for javascript commenting as it is in c# like ghost doc. /// <summary> /// Method to calculate distance between two points /// </summary> /// <param name="pointA">First point</param> /// <param name="pointB">Second point</param> function calculatePointDistance(pointA, pointB) { ... } there any tool...
Hey, Is there any API or command-line able to generate a VSTemplate file from a WebSite/Project that is NOT by using Projectgen.exe? Thanks. ...
Is it possible to replace text in a Visual Studio Snippet literal after the enter key is pressed and the snippet exits its edit mode? For example, given a snippet like this: public void $name$ { $end$ } If I were to enter $name$ as: My function name is it possible to have Visual Studio change it to: My_function_name or ...
Is there a way to exclude a particular type of .cs file when doing a search in Visual Studio 2005/8? Example: In a refactoring scenario i might search to identify string literals in my code so that i can refactor them into constants or some such. However, *designer.cs files are full of string literals which i don't care to deal with but...
vs2008 (and earlier versions) always creates empty folders in c:\users\<username>\my documents every time it runs. Is there any way to get it to honor the location of 'my documents'? It's never on my c: drive. This leads to the annoying problem of 2 'my documents' folders in windows explorer. MS is not following it's own guidelines. And ...