Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / .NET Framework / New Users / March 2006

Single source code to compile over .NET 1.0,  1.1,  2.0  and  CF

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Vipul Pathak - 10 Mar 2006 14:10 GMT
Hi everyone,

I have a .NET 1.1 application ready to be ported on .NET 2.0.

With some of the features made obsolete in 2.0 and the new recomended
methods are not available in .NET 1.1, It leaved me with a question in mind:

How come I conditionally compile my application with .NET 1.1 and 2.0 ?

An example of obsolete method in 2.0 is:
//-------------------------------------------------------------------
// .NET 1.1:   OK,   .NET 2.0:  Warning, Property
ConfigurationSettings.AppSettings is obsolete !
string szNewKbAddr =
System.Configuration.ConfigurationSettings.AppSettings[AppConstant.KEY_NEW_K
B_ADDRESS];

// .NET 1.1:   Error,   .NET 2.0:  OK
string szNewKbAddr =
System.Configuration.ConfigurationManager.AppSettings[AppConstant.KEY_NEW_KB
_ADDRESS];
//-------------------------------------------------------------------

I have used the code block similar to below, for conditional compilation of
code for .NET 1.1 and .NET CF:
//-------------------------------------------------------------------
   #if(_WIN32_WCE)
       ...    ...    .NET  CF  specific  code    ...    ...
   #else
       ...    ...    .NET  1.1 specific code    ...    ...
   #endif
//-------------------------------------------------------------------

Do we have any solution, to either conditionally compile the single source
code application on different versions of .NET ( 1.1 and 2.0 )  ?
OR-   any other solution please ?

Thanks ...

* (Vipul)() ;
Frans Bouma [C# MVP] - 10 Mar 2006 14:35 GMT
> Hi everyone,
>
[quoted text clipped - 36 lines]
>
> Thanks ...

    Create nmake files and pass a define, like NET20. In the source, you
place
#if NET20
//... .net 20 specific
#endif
#if NET11
//... .net 11 specific
#endif

    statements.

Example: (makefile_20)
SOURCES=AssemblyInfoDotNet20.cs DynamicQueryEngine.cs
SqlServerSpecificCreator.cs

REFERENCES=SD.LLBLGen.Pro.ORMSupportClasses.NET20.dll
REFDIR=..\ORMSupportClasses\DotNET2.0\bin\

all : $(SOURCES)
       csc /t:library
/out:DotNET2.0\bin\SD.LLBLGen.Pro.DQE.SqlServer.NET20.dll
/doc:DotNET2.0\bin\SD.LLBLGen.Pro.DQE.S
qlServer.NET20.xml /d:TRACE,DOTNET20 /o /lib:$(REFDIR) /r:$(REFERENCES)
$(SOURCES)

debug : $(SOURCES)
       csc /t:library /debug
/out:DotNET2.0\bin\SD.LLBLGen.Pro.DQE.SqlServer.NET20.dll
/d:TRACE,DEBUG,DOTNET20 /lib:$(R
EFDIR) /r:$(REFERENCES) $(SOURCES)

clean:
       del /Q DotNET2.0\bin\SD.LLBLGen.Pro.DQE.SqlServer.NET20.*

and I start this with a simple .cmd file:
mkdir DotNET2.0\bin
nmake /nologo /f makefile_20 clean
nmake /nologo /f makefile_20

        Frans

Signature

------------------------------------------------------------------------
Lead developer of LLBLGen Pro, the productive O/R mapper for .NET
LLBLGen Pro website: http://www.llblgen.com
My .NET blog: http://weblogs.asp.net/fbouma
Microsoft MVP (C#)
------------------------------------------------------------------------

Vipul Pathak - 10 Mar 2006 16:53 GMT
Thanks a lot .....   :-)

* (Vipul)() ;

> > Hi everyone,
> >
[quoted text clipped - 77 lines]
>
> Frans
Nick Hounsome - 11 Mar 2006 10:53 GMT
> Hi everyone,
>
[quoted text clipped - 5 lines]
>
> How come I conditionally compile my application with .NET 1.1 and 2.0 ?

Obsolete doesn't mean that they wont work.

I would just use the obsolete methods and ignore the warnings - you are less
likely to get version specific bugs that way.

Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.