Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

42
votes
6answers
5k views

(this == null) in C#!

Due to a bug that was fixed in C# 4, the following program prints true. (Try it in LINQPad) void Main() { new Derived(); } class Base { public Base(Func<string> valueMaker) { ...
19
votes
7answers
12k views

Getting an ASP.MVC2/VS2010 application to work in IIS 7.5

I've recently downloaded beta 2 of VS2010 and started playing with ASP.NET MVC2. Initial development was done with Casini, but now I wanted to run the application from IIS 7.5 (I'm running Windows 7). ...
13
votes
3answers
663 views

What Are Your Thoughts On Entity Framework 4.0? [closed]

The initial release of the Entity Framework wasn't regarded well in the development community. Developers felt a number of things were left out, and many continued to use other ORM's, such as LINQ To ...
12
votes
5answers
2k views

Visual SVN and Visual Studio 2010 Beta 2 won't play nice

I can't seem to get Visual SVN and Visual Studio Beta 2 to work together, anyone know of a workaround???
11
votes
3answers
9k views

How to export Visual Studio 2010 UML Modeling Diagrams

I recently created a very nice UML Class diagram inside Visual Studio 2010 (b2). The tools worked like a charm and I was able to model a rather complex domain within minutes. However, I cannot find ...
8
votes
1answer
2k views

Writing Visual Studio 2010 Plugin, would like to show a toolbox like Resharper in code editor

I would like to write a plugin for Visual Studio 2010 but in fact I face some problems. What I want to do seems easy, I would like that a little toolbox appears when selecting the text in code editor ...
7
votes
1answer
4k views

VS2010: how to remove/hide the “External Dependencies” folder in Solution Explorer

In VS2010 they added to all projects a virtual directory called "External Dependencies": It really bothers me especially because if there is a normal folder named "Apple" and one named "Deep" it ...
7
votes
13answers
1k views

Is Visual Studio 2010 Beta 2 usable?

Half a year ago, I tried Visual Studio 2010 Beta 1, but it was still way too buggy for production use. However, I really like some of the new features - Should I bother installing Beta 2 or is it ...
6
votes
8answers
4k views

Visual Studio 2010 (beta 2) solution in Visual Studio 2008

Is there a way to open a solution-file saved in Visual studio 2010 beta 2 in Visual studio 2008? ... or maybe a way to convert it? When i tried to open it in VS 2008 i get an error saying "The ...
6
votes
8answers
13k views

how to convert a VS 2010 soultion back to 2008

We started using VS 2010 and were very happy with it, so we converted our project into a 2010 solution (still .net 3.5) and continued our development in 2010. however, we are getting a lot of bugs ...
6
votes
2answers
411 views

F#: always “unexpected 'when' keyword”

The VS2010 Beta 2 F# compiler always complains about my usage of the when keyword, even when using copy-pasted code which is supposed to work, such as either of these snippets. For instance, this is ...
6
votes
13answers
888 views

Is there any risk while using Visual Studio 2010 Beta 2?

Is it safe to use the beta versions of Visual Studio? By safe I mean, while developing any project in this studio, is it probable that it may cause some losses to my project? Or any other kind of ...
5
votes
5answers
5k views

HttpUtility does not exist in the current context

I get this error when compiling a C# application. Looks like a trivial error, but I can't get around it. My setup is Windows 7 64 bit. Visual-Studio 2010 C# express B2Rel. I added a reference to ...
5
votes
2answers
1k views

Change shortcut for 'switch to markup' in Visual Studio 2010

How do I switch the shortcut for 'toggle to markup'? Shift + F7 is toggle to designer. In Visual Studio 2008 I could toggle between the code-behind and the markup with F7. I got used to it and now I ...
5
votes
3answers
548 views

Copy elision on Visual C++ 2010 Beta 2

I was reading Want Speed? Pass by Value on the C++ Next blog and created this program to get a feel for copy elision and move semantics in C++0x: #include <vector> #include <iostream> ...
5
votes
1answer
408 views

NOP in release build of F# code

I am playing with F# in VS2010 beta2, and since I am new to F#, I just picked one of the common examples and went ahead and implemented a factorial function as: let rec factorial n = if n <= 1 ...
4
votes
3answers
985 views

Debug using MbUnit/Gallio 3.1

When I use the [Debug] button in Gallio, the breakpoints in my unit tests are not hitting. The unit tests are written with MbUnit/Gallio. I am using MbUnit/Gallio version 3.1 build 397 with Visual ...
4
votes
2answers
387 views

Visual Studio: which setting to change for Find Next results in text editor?

Consider the Visual Studio's highly-customizable configuration of the text editor. The value I'd like to tweak is the highlighting of the found search string. See circled below. Question: in Visual ...
4
votes
2answers
1k views

Reference error with Fluent NHibernate 1.0 RTM and Visual Studio 2010 beta 2

I have a weird reference error when I use Fluent NHibernate 1.0 RTM and Visual Studio 2010 beta 2. Basically I have tried following the getting started tutorial on Fluent NHibernate's page and it ...
4
votes
16answers
16k views

error C2065: 'cout' : undeclared identifier

I am working on the 'driver' part of my programing assignment and i keep getting this absurd error: error C2065: 'cout' : undeclared identifier I have even tried using the std::cout but i get ...
4
votes
10answers
931 views

Visual Studio 2010 Beta 2 + ClearType

I was wondering: are you satisfied with the text-rendering in the Visual Studio 2010 editor (Beta 2)? On my primary monitor it looks very blurred, even when using font size 12! When using font size ...
4
votes
2answers
1k views

How to get GitExtensions installed on Visual Studio 2010 Beta 2?

How do I manually install GitExtensions as a plugin for Visual Studio 2010 Beta 2? There is no automatic option in the present installer, only plugin options for Visual Studio 2005/2008.
3
votes
1answer
1k views

Install .NET 4.0 dll to the GAC

I have a visual C# 2010 express install. Built a .NET 4.0 dll that is signed. Now I need to get it into the GAC. Im on 64bit vista. Anyone know if there is a gacutil supporting the 4.0 framework ...
3
votes
1answer
1k views

System.Core.dll in 4.0 added by default?

I was playing around with VS2010 beta2. I noticed that if I try to add System.Core.dll to a project which does not already have a reference to that, in VS2010, it complains saying I cannot add that ...
3
votes
6answers
34k views

Visual C# 2010 MSVCR100.dll missing when opening a project…tried EVERYTHING!

I installed Visual C# 2010 Beta 2 and I get this error every time I open a project: 'This application has failed to start because MSVCR100.dll was not found. Reinstalling the application may fix the ...
3
votes
1answer
183 views

VS 2010 addin for Fogbugz?

I'm starting a project in Visual Studio 2010 and I'd like to use FogBugz in conjunction with it, but the addin supplied appears to be for VS 2008. Is there a version that works with 2010? [crosses ...
3
votes
2answers
446 views

Is there a planned StyleCop release for VS 2010?

Does anyone know when stylecop will be released to integrate into VS2010. I know you can tweak the config files to integrate it at the moment, but it is not possible to view the UI.
3
votes
1answer
369 views

Solution Templates in VS2010

I have heard it said that, unlike VS2008, VS2010 will support Solution templates in addition to item and project templates. However, the SolutionTemplates directory contains only a "blank.sln", so ...
3
votes
1answer
271 views

Install asp.net mvc 2 beta on Visual Studio 2010 Beta2

Is there any workaround on installing asp.net mvc 2 beta on a VS2010 Beta2 box?. Phil said on his post that it isn't supported for VS2010 beta2, mostly because of the tooling support and stuff... But ...
3
votes
2answers
338 views

I don't want to convert solution files when switching from Visual Studio 2008-2010. How?

I just got a new work laptop. I want to run Visual Studio 2010 Beta 2. However, the rest of my team is using Visual Studio 2008 with .Net 3.5, and I don't want to check-in the solution migration code ...
3
votes
5answers
2k views

Enable PHP highlights in VS 2010?

I've heard that Visual Studio 2010 Beta 2 has support for PHP. When I load a PHP file though, it has nothing highlighted and is nothing more than a glorified text editor. Is there a way to enable ...
3
votes
1answer
511 views

Do I want Publish or Release Build in VB.net?

I wrote a little (like 40 lines little) Winforms application with VB.net in Visual Studio 2010. Now I've released the code as a Google Code project. It's easy for a developer to get the source but I'd ...
3
votes
2answers
2k views

TFS 2010 Basic (beta 2) versus Subversion et al

For a solo developer using Visual Studio 2010 beta 2 is TFS Basic a better option than Subversion (with VisualSVN or Ankh) and (optionally) something like Cruisecontrol? I don't need distributed ...
3
votes
4answers
3k views

How To: Deploy SQL Database Project using Team System Build 2010 (beta 2)

Can anyone shed some light on how to get Team Build 2010 beta 2 to push a SQL database project to the SQL server? In VSTS 2008 you'd just add MSBuild commands with the targets attribute set to ...
3
votes
1answer
272 views

Is there a keyboard shortcut for 'Generate stub' in VS 2010?

As the title states, is there a keyboard shortcut for 'Generate stub' in VS 2010?
3
votes
7answers
556 views

Install Visual Studio 2010 Beta 2 beside VS2008

I am too paranoid to install VS2010 Beta 2 on my production machine beside VS2008 without hearing from people who have already took the plunge. I know MS says it's OK, but that does not necessarily ...
3
votes
3answers
1k views

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.
2
votes
1answer
891 views

devIL causes program to be unable to start correctly

I just tried to use devIL and ULIT to help me with opengl texture loading. However, whenever the program starts, I get the error: "The application was unable to start correctly (0xc000007b). Click OK ...
2
votes
3answers
3k views

Why can't convert TCHAR* to char*

error C2664: 'strcpy' : cannot convert parameter 1 from 'TCHAR *' to 'char *' code: LPCTSTR name, DWORD value strcpy (&this->valueName[0], name); error C2664: 'strlen' : cannot convert ...
2
votes
1answer
1k views

System.BadImageFormatException - can't solve it

I'm using Visual Studio 2010, running in Windows 7 X64 I was trying to create a simple WCF implementation of duplex communication. Sadly enough I got stuck very quickly. I have 3 projects: - Service ...
2
votes
3answers
2k views

Embedding IronPython in a C# application - import error on urllib

I have a Python file with as content: import re import urllib class A(object): def __init__(self, x): self.x = x def getVal(self): return self.x def __str__(self): ...
2
votes
3answers
869 views

How to improve Visual Studio 2010 cursor navigation performance?

My Visual Studio 2010 beta 2 is fast for all tasks except for cursor key navigation. Inside the text editor if you hold one of your keyboard's arrow keys, it will move slowly across the code. I ...
2
votes
3answers
555 views

Is there a TFS query macro for the current iteration?

Is there a way in TFS in VS2010 to specify that a particular iteration is the current one, and then return that for use in queries similar to the way @Project works? If not is there a way to do ...
2
votes
2answers
563 views

Open File Stream Win API

I'm trying to use the OpenSqlFilestream Instruction but my code did not recognise it What dll i have to load in order to use it?
2
votes
1answer
1k views

WCF Service Reference does not reuse types in existing assemblies (VS 2010 Beta 2)

I'm looking for the best approach to share types (the actual classes, not proxies) between a WCF service and a client. To that end, I defined the classes in a separate assembly that both service and ...
2
votes
1answer
361 views

Product version for VS2010 projects

When I create a new project of any kind (winforms app/classlib ..) using VS2010 beta2, all the projects have ProductVersion field set to 8.0.30703. I was expecting it to be something like ...
2
votes
1answer
280 views

What is the expiry date for VS2010 Beta 2 products? (especially TFS)

With the final release date now unknown, what is the expiry date for the Beta 2 products?
2
votes
3answers
574 views

Problem running ASP.NET MVC 2 website on IIS7

I'm trying to deploy my ASP.NET MVC 2 website from VS2010 beta 2 to IIS7. The publish works fine but none of the routes work, so when I go to the URL http://localhost/myapp/Home/Index I get the error: ...
2
votes
1answer
1k views

Visual Studio Tool to update a DBML? [closed]

Possible Duplicate: How to update Linq to SQL dbml file? Is there a quick command in VS2008 to update a DBML that I'm missing or do I have to dleete everything, re-add and then deal with ...
2
votes
2answers
315 views

What technical restrictions might prevent MS from implementing IntelliTrace on VS 2010 64-bit?

I found that IntelliTrace is not supported on Visual Studio 2010 64-bit version. MS says its because of technical restrictions Can anyone shed some light on what those restrictions might be? Thanx. ...

1 2 3