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