T
Tom Berger
Hello,
for a C# windows application I have created a project that is a kind of data
caching layer between the GUI and the remote server.
I am using socket operations for communication to server and a typed dataset
to cache the data.
Now I want to reuse that project as it is for a mobile application (e.g.
Windows mobile 5.0). SO I have created a new project in VS2008 for mobile
devices and added all files of my existing application project.
When I try to compile it there are hundreds of errors conserning the
dataset. It mainly complaints about "System.Runtime.Seriazable" and other
things:
.....
Error 51 The type or namespace name 'Serialization' does not exist in the
namespace 'System.Runtime' (are you missing an assembly reference?)
C:\Dokumente und Einstellungen\Test\Eigene Dateien\Visual Studio
2008\Projects\SmartDeviceProject1\SmartDeviceProject1\DataSetMonitoring.designer.cs
9517 69 SmartDeviceProject1
Error 52 The type or namespace name 'Serialization' does not exist in the
namespace 'System.Runtime' (are you missing an assembly reference?)
C:\Dokumente und Einstellungen\Test\Eigene Dateien\Visual Studio
2008\Projects\SmartDeviceProject1\SmartDeviceProject1\DataSetMonitoring.designer.cs
9517 130 SmartDeviceProject1
Error 53 The type or namespace name 'Serialization' does not exist in the
namespace 'System.Runtime' (are you missing an assembly reference?)
C:\Dokumente und Einstellungen\Test\Eigene Dateien\Visual Studio
2008\Projects\SmartDeviceProject1\SmartDeviceProject1\DataSetMonitoring.designer.cs
93 60 SmartDeviceProject1
Error 54 The type or namespace name 'Serialization' does not exist in the
namespace 'System.Runtime' (are you missing an assembly reference?)
C:\Dokumente und Einstellungen\Test\Eigene Dateien\Visual Studio
2008\Projects\SmartDeviceProject1\SmartDeviceProject1\DataSetMonitoring.designer.cs
93 121 SmartDeviceProject1
Error 55 The type or namespace name 'Browsable' does not exist in the
namespace 'System.ComponentModel' (are you missing an assembly reference?)
C:\Dokumente und Einstellungen\Test\Eigene Dateien\Visual Studio
2008\Projects\SmartDeviceProject1\SmartDeviceProject1\DataSetMonitoring.designer.cs
203 40 SmartDeviceProject1
Error 56 The type or namespace name 'BrowsableAttribute' does not exist in
the namespace 'System.ComponentModel' (are you missing an assembly
reference?) C:\Dokumente und Einstellungen\Test\Eigene Dateien\Visual Studio
2008\Projects\SmartDeviceProject1\SmartDeviceProject1\DataSetMonitoring.designer.cs
203 40 SmartDeviceProject1
Error 57 The type or namespace name 'DesignerSerializationVisibility' does
not exist in the namespace 'System.ComponentModel' (are you missing an
assembly reference?) C:\Dokumente und Einstellungen\Test\Eigene
Dateien\Visual Studio
2008\Projects\SmartDeviceProject1\SmartDeviceProject1\DataSetMonitoring.designer.cs
204 40 SmartDeviceProject1
Error 58 The type or namespace name
'DesignerSerializationVisibilityAttribute' does not exist in the namespace
'System.ComponentModel' (are you missing an assembly reference?)
C:\Dokumente und Einstellungen\Test\Eigene Dateien\Visual Studio
2008\Projects\SmartDeviceProject1\SmartDeviceProject1\DataSetMonitoring.designer.cs
204 40 SmartDeviceProject1
....
Is there an easy way to transfer applications, or assemblys or classes or
entire projects into a SmartDevice application? Kind of converter? Why seems
the dataset to be completely different on both target plattforms? I would
have expected that things like the dataset is exactly the same with both
frameworks...
Thanks for your advice!
for a C# windows application I have created a project that is a kind of data
caching layer between the GUI and the remote server.
I am using socket operations for communication to server and a typed dataset
to cache the data.
Now I want to reuse that project as it is for a mobile application (e.g.
Windows mobile 5.0). SO I have created a new project in VS2008 for mobile
devices and added all files of my existing application project.
When I try to compile it there are hundreds of errors conserning the
dataset. It mainly complaints about "System.Runtime.Seriazable" and other
things:
.....
Error 51 The type or namespace name 'Serialization' does not exist in the
namespace 'System.Runtime' (are you missing an assembly reference?)
C:\Dokumente und Einstellungen\Test\Eigene Dateien\Visual Studio
2008\Projects\SmartDeviceProject1\SmartDeviceProject1\DataSetMonitoring.designer.cs
9517 69 SmartDeviceProject1
Error 52 The type or namespace name 'Serialization' does not exist in the
namespace 'System.Runtime' (are you missing an assembly reference?)
C:\Dokumente und Einstellungen\Test\Eigene Dateien\Visual Studio
2008\Projects\SmartDeviceProject1\SmartDeviceProject1\DataSetMonitoring.designer.cs
9517 130 SmartDeviceProject1
Error 53 The type or namespace name 'Serialization' does not exist in the
namespace 'System.Runtime' (are you missing an assembly reference?)
C:\Dokumente und Einstellungen\Test\Eigene Dateien\Visual Studio
2008\Projects\SmartDeviceProject1\SmartDeviceProject1\DataSetMonitoring.designer.cs
93 60 SmartDeviceProject1
Error 54 The type or namespace name 'Serialization' does not exist in the
namespace 'System.Runtime' (are you missing an assembly reference?)
C:\Dokumente und Einstellungen\Test\Eigene Dateien\Visual Studio
2008\Projects\SmartDeviceProject1\SmartDeviceProject1\DataSetMonitoring.designer.cs
93 121 SmartDeviceProject1
Error 55 The type or namespace name 'Browsable' does not exist in the
namespace 'System.ComponentModel' (are you missing an assembly reference?)
C:\Dokumente und Einstellungen\Test\Eigene Dateien\Visual Studio
2008\Projects\SmartDeviceProject1\SmartDeviceProject1\DataSetMonitoring.designer.cs
203 40 SmartDeviceProject1
Error 56 The type or namespace name 'BrowsableAttribute' does not exist in
the namespace 'System.ComponentModel' (are you missing an assembly
reference?) C:\Dokumente und Einstellungen\Test\Eigene Dateien\Visual Studio
2008\Projects\SmartDeviceProject1\SmartDeviceProject1\DataSetMonitoring.designer.cs
203 40 SmartDeviceProject1
Error 57 The type or namespace name 'DesignerSerializationVisibility' does
not exist in the namespace 'System.ComponentModel' (are you missing an
assembly reference?) C:\Dokumente und Einstellungen\Test\Eigene
Dateien\Visual Studio
2008\Projects\SmartDeviceProject1\SmartDeviceProject1\DataSetMonitoring.designer.cs
204 40 SmartDeviceProject1
Error 58 The type or namespace name
'DesignerSerializationVisibilityAttribute' does not exist in the namespace
'System.ComponentModel' (are you missing an assembly reference?)
C:\Dokumente und Einstellungen\Test\Eigene Dateien\Visual Studio
2008\Projects\SmartDeviceProject1\SmartDeviceProject1\DataSetMonitoring.designer.cs
204 40 SmartDeviceProject1
....
Is there an easy way to transfer applications, or assemblys or classes or
entire projects into a SmartDevice application? Kind of converter? Why seems
the dataset to be completely different on both target plattforms? I would
have expected that things like the dataset is exactly the same with both
frameworks...
Thanks for your advice!