Small issue:

nant-0.91-alpha1\tests\NAnt.Core\Util\ConsoleWriter.cs(48,32): error CS0234:
The type or namespace name 'OutputEncoding' does not exist in the namespace
'Tests.NAnt.Console' (are you missing an assembly reference?)


Compiling in VS2010 (so csc from net4). Looks like its more strict then
previous compilers (or noone really use NET_2_0 on tests?).

This change helps:

Old code:

        static Encoding ConsoleEncoding {
            get {
#if NET_2_0
                return Console.OutputEncoding;
#else
                return Encoding.Default;
#endif
            }

New Code:
        static Encoding ConsoleEncoding {
            get {
#if NET_2_0
                return System.Console.OutputEncoding;
#else
                return Encoding.Default;
#endif
            }
        }

Ing. Martin Aliger
martin_ali...@gordic.cz



-----Original Message-----
From: Ryan Boggs [mailto:rmbo...@gmail.com] 
Sent: Sunday, May 30, 2010 4:03 AM
To: mono-l...@lists.ximian.com; nant-us...@lists.sourceforge.net;
nant-developers@lists.sourceforge.net; nant-annou...@lists.sourceforge.net
Subject: [nant-dev] Announcing NAnt 0.91 Alpha1

Announcing NAnt 0.91 Alpha1
We are proud to announce the first alpha release of NAnt 0.91, the
first official release with .NET 4.0 support.

The primary goal for this release is to improve support for .NET 4.0.
Please give this release a test and report any NAnt core specific bugs
back along with examples as soon as you can.

This release focuses on extending our already strong support for
multiple target frameworks, bringing improved flexibility and
performance.  A number of outstanding issues have been fixed as well.

A roadmap has been created to help illustrate the current release
plan.  Please note that this roadmap is a work in progress and is
subject to change depending on feature priorities, issues, and
developer's comfort level with the release:
https://sourceforge.net/apps/mediawiki/nant/index.php?title=Roadmap

Binary and source distributions are available for immediate download from:
http://sourceforge.net/project/showfiles.php?group_id=31650

The CVS tag for NAnt 0.91Alpha1 is:
rel-0-91-alpha1

Instruction for checking out sources from CVS are available here:
http://sourceforge.net/cvs/?group_id=31650

Discussion of NAnt occurs on the mailing list at
nant-us...@lists.sourceforge.net.

Bugs can be reported using the Bug Tracker at
http://sourceforge.net/projects/nant.

For more detailed progress on the inner workings of NAnt, check out
the NAnt Blog at https://sourceforge.net/apps/wordpress/nant/

About NAnt:
NAnt is a free .NET build tool, allowing applications to be built
targeting both Microsoft .NET and Mono while supporting both Windows
and Linux platforms.

Check the NAnt homepage for additional info at http://nant.sourceforge.net.

Thanks,
Ryan

----------------------------------------------------------------------------
--

_______________________________________________
nant-developers mailing list
nant-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-developers


------------------------------------------------------------------------------

_______________________________________________
nant-developers mailing list
nant-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-developers

Reply via email to