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