cc0
cc0

Reputation: 1950

Using Visual Studio 2010 to develop for Windows 2k/2k3 servers

Is it problematic to use Visual Studio 2010 to develop a C# .NET 2.0 console application for windows 2k/2k3 server (with .NET 2.0 installed)?

Upvotes: 0

Views: 63

Answers (3)

TeaDrivenDev
TeaDrivenDev

Reputation: 6629

No. VS2010 allows developing for .NET 2.0, 3.0, 3.5 or 4.0.

Upvotes: 1

Davita
Davita

Reputation: 9124

No it's not. All you have to do is to compile your assembly for .NET 2.0. Right click on the project, select properties, Target Framework -> .NET Framework 2.0

Upvotes: 2

Mariusz
Mariusz

Reputation: 1409

No. You can target your framework to 2.0 for your console project in VS2010.

Upvotes: 3

Related Questions