I am using SQL Server and Visual studio. I have an automatic build via CCNET. When I commit my code in SVN the automatic build runs and all unit tests runs with mocked/stubbed data.
The only thing that not goes automatic now is running the database changes/scripts, I do that by hand. Anybody got tips how this can be autometed?
...
I know that there are many questions and answers regarding having VisualStudio keyboard shortcuts in Eclipse.
I'm actually interested in the opposite: having Eclipse keyboard shortcuts in VisualStudio.
Does anyone know if this is possible?
...
Has anyone found a keyboard shortcut for the "Show All Files" in the Solution Explorer ?
And a related question ... is there any tool that can show the keyboard shortcut for any operation you're doing in VS ?
Cheers,
SteveC.
...
When I try to open a project's CodeAnalysis page I get the error
"An error occurred trying to load the page.
Only TrueType fonts are supported. This is not a TrueType font."
I also get a very simmilar ExceptionBox when I want to open the solution's propertywindow:
"Only TrueType fonts are supported. This is not a TrueType font."
Has...
I'm about to start working on a C# project. I'd like to buy VS 2010, but the only other member of the programming team is already using VS 2008. I'm concerned that having two different versions of VS in use will cause code compatibility issues. Is this a valid concern?
...
In our daily work we maintain some rather large Javascript libaries. We use VS2008 and while they made some improvements to the Javascript IDE, I still find it lacking. There is no outlining, no collapsing, or other ways to keep the code organized.
I have tried js-addin and JSLint which crash and don't have the features I want, respecti...
Visual Studio drives me crazy and I am suspecting I am doing something wrong.
This is what I do: I installed Visual Studio (Pro '08) a long time ago, I installed the Windows SDK (Win 7 x64), someone emails me a project, it fails to build.
Invariably, it can not find windows.h. While it is easy enough to include C:\Program Files\Microso...
Hello,
I have a method in a C# / Wpf project and I'd like to comment / document it using the XML comments like this
/// <summary>
/// Initialises Drag & Drop
/// </summary>
void initDragDrop()
{
}
When I now use this method somewhere in my project and hover the mouse over it, I get the message
"XML comment co...
I am trying to find out the version of Visual Study that is used to compile the python on my computer
It says
Python 2.6.2 (r262:71605, Apr 14 2009, 22:40:02) [MSC v.1500 32 bit (Intel)] on win32
What I do not understand is that MSC V.1500. Does it mean it is compiled with 2005?
I cannot find this information on `python.org' neither...
So, I have really been enjoying the integrated experience of using Gallio to run SpecFlow tests natively in VS, using all my usual VS hotkeys and everything. It works wonderfully, most of the time.
Periodically, however, and I have found no rhyme or reason to it, a new scenario added to the .feature file (for SpecFlow) does not case a ...
I've just started with C++, and maybe there's something that I'm doing wrong here, but I'm at a loss. When I try to build the solution, I get 4 LNK2005 errors like this one:
error LNK2005: "public: double __thiscall Point::GetX(void)const " (?GetX@Point@@QBENXZ) already defined in CppSandbox.obj
(there's one for each get/set method, an...
We are having problems removing the toolbar/sidebar from the Adobe Viewer control for .NET.. Of course it is possible with if you watch for Windows Procs. and what not, but we aren't extremely interested in this, so we started looking into 3rd party and the Adobe SDK.
The Adobe Acrobat SDK seems extremely complicated to me to understand...
Is there a plugin for Visual Studio C++ 2008/2010 express edition just like wave-vs.net live pair programming program? Or do I have to download and install the full version of Visual Studio?
...
Hey guys,
I am writing some unit tests and I'm getting an exception thrown from my real code when trying to do the following:
string IPaddress = HttpContext.Current.Request.UserHostName.ToString();
Is there a way to mock up an IP address without rewriting my code to accept IP address as a parameter?
Thanks!
...
Eclipse allows us to define a class as:
interface MyInterface {
void methodA();
int methodB();
}
class A : MyInterface {
MyInterface myInterface;
}
and then with this "Generate delegate methods", it will implement all needed methods for the interface, redirecting their logic to myInterface's methods:
class A : MyInterfac...
Hello,
I'm developing a small C# winforms application that consumes an unmanaged C++ library.
I have no access to the code of this library.
If I'm in Visual Studio and I runt my application, do my calls to the library everything is working find. Once I run CTRL + F5 I get an AccessViolationException.
I did some testing, created anoth...
Is there any plug-in for Visual Studio that can display the associated Application Pool name for those w3wp processes when debugging them with "Attach to Process..." ?
Usually I have to do following steps before debugging:
c:> \Windows\system32\inetsrv\appcmd list wps
then I get the process id for the Application Pool I want to debug,...
There is plenty of documentation on MSDN and elsewhere explaining how to create a publisher policy assembly. All of these examples use the command line tools (al.exe) to generate the policy assembly and GACUtil.exe to install the policy assembly into the GAC.
OK, as far as it goes. For various reasons, I'd like to be able to replicate t...
With the code below i get a CA2104 (DoNotDeclareReadOnlyMutableReferenceTypes) warning
public readonly ReadOnlyCollection<char> IllegalChars;
with part of the error message
change the field to one that is an
immutable reference type. If the
reference type
'ReadOnlyCollection' is, in
fact, immutable, exclude this message.
...
I am wondering if there is a way to modify the scheme Visual Studio (2008) uses for validating ASP.NET code.
I can find .xsd files with schemes for xhtml, xml, etc., but the scheme for ASP.NET code seems hard-coded somehow. I also can't find any settings to change the scheme or even disable the validation altogether.
Anyone any idea?
T...