google-code-export / fluorinefx

Automatically exported from code.google.com/p/fluorinefx
2 stars 4 forks source link

dotnet 3.5 error #23

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
using VS2008 to open FluorineFx-3.5 occurred error
2 file mast be modified on ObjectProxyRegistry.cs
#if !(NET_1_1) && !(NET_2_0) && !(NET_3_5) && !(SILVERLIGHT)
            _registeredProxies.Add(typeof(System.Data.Objects.DataClasses.StructuralObject), new EntityObjectProxy());
#endif

and  anther one is EntityObjectProxy.cs
#if !(NET_1_1) && !(NET_2_0) && !(NET_3_5) && !(SILVERLIGHT)
...
#endif

you forgot dotnet 3.5 framework

What version of the product are you using? On what operating system?
x86,windows server 2003

Original issue reported on code.google.com by tuabl...@gmail.com on 25 May 2011 at 5:12

GoogleCodeExporter commented 9 years ago
For .NET > 3.5 those lines should be compiled, so it is not correct to filter 
out
If you get a compilation error maybe you are missing an assembly reference

Original comment by zol...@thesilentgroup.com on 25 May 2011 at 7:10