Reputation: 47490
We have got a C# Windows application which uses devexpress controls, enterprise library and CC.net for building. We are planning to migrate VS2010 soon.
Have you come across similar situations? Are there any unforeseen issues?
Upvotes: 3
Views: 451
Reputation: 5940
I faced this : on XP machine, trying to build a project referencing a COM with multiple objects inside. Specifically, i've encountered this with INetFwMgr
- (The type or namespace name 'INetFwMgr' could not be found (are you missing a using directive or an assembly reference?)
. Its seems that i am not the only one.
EDIT: solution here.
Upvotes: 1
Reputation: 49482
If you are still targeting .NET 3.5 then the move should be very smooth. We recently moved a very large WinForms app across and encountered a couple of minor issues:
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
attribute on the offending propertiesUpvotes: 2
Reputation: 6450
If your code makes use of any of these features listed in column 1, you might need to take a look at this:
http://msdn.microsoft.com/en-us/library/ee855831.aspx
Upvotes: 3
Reputation: 7506
We did a similar migration almost a year ago (just after Visual Studio 2010 was released). That was a little bit too early as DevExpress were not quite ready with their .NET 4 version yet. We had to run the web application in "compatibility mode" for a week or so.
There were very few issues. From what I remember (our product is half .NET and half C++):
Upvotes: 2