Chris@4: This directory contains a .Net wrapper class library for the ZLib1.dll Chris@4: Chris@4: The wrapper includes support for inflating/deflating memory buffers, Chris@4: .Net streaming wrappers for the gz streams part of zlib, and wrappers Chris@4: for the checksum parts of zlib. See DotZLib/UnitTests.cs for examples. Chris@4: Chris@4: Directory structure: Chris@4: -------------------- Chris@4: Chris@4: LICENSE_1_0.txt - License file. Chris@4: readme.txt - This file. Chris@4: DotZLib.chm - Class library documentation Chris@4: DotZLib.build - NAnt build file Chris@4: DotZLib.sln - Microsoft Visual Studio 2003 solution file Chris@4: Chris@4: DotZLib\*.cs - Source files for the class library Chris@4: Chris@4: Unit tests: Chris@4: ----------- Chris@4: The file DotZLib/UnitTests.cs contains unit tests for use with NUnit 2.1 or higher. Chris@4: To include unit tests in the build, define nunit before building. Chris@4: Chris@4: Chris@4: Build instructions: Chris@4: ------------------- Chris@4: Chris@4: 1. Using Visual Studio.Net 2003: Chris@4: Open DotZLib.sln in VS.Net and build from there. Output file (DotZLib.dll) Chris@4: will be found ./DotZLib/bin/release or ./DotZLib/bin/debug, depending on Chris@4: you are building the release or debug version of the library. Check Chris@4: DotZLib/UnitTests.cs for instructions on how to include unit tests in the Chris@4: build. Chris@4: Chris@4: 2. Using NAnt: Chris@4: Open a command prompt with access to the build environment and run nant Chris@4: in the same directory as the DotZLib.build file. Chris@4: You can define 2 properties on the nant command-line to control the build: Chris@4: debug={true|false} to toggle between release/debug builds (default=true). Chris@4: nunit={true|false} to include or esclude unit tests (default=true). Chris@4: Also the target clean will remove binaries. Chris@4: Output file (DotZLib.dll) will be found in either ./DotZLib/bin/release Chris@4: or ./DotZLib/bin/debug, depending on whether you are building the release Chris@4: or debug version of the library. Chris@4: Chris@4: Examples: Chris@4: nant -D:debug=false -D:nunit=false Chris@4: will build a release mode version of the library without unit tests. Chris@4: nant Chris@4: will build a debug version of the library with unit tests Chris@4: nant clean Chris@4: will remove all previously built files. Chris@4: Chris@4: Chris@4: --------------------------------- Chris@4: Copyright (c) Henrik Ravn 2004 Chris@4: Chris@4: Use, modification and distribution are subject to the Boost Software License, Version 1.0. Chris@4: (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)