<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <ProductVersion>8.0.50727</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{6E0F2D1E-6167-4032-BA90-DEE3A99207D0}</ProjectGuid> <OutputType>Library</OutputType> <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>Utilities</RootNamespace> <AssemblyName>Utilities</AssemblyName> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> <DebugType>full</DebugType> <Optimize>false</Optimize> <OutputPath>bin\Debug\</OutputPath> <DefineConstants>DEBUG;TRACE</DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> <DebugType>pdbonly</DebugType> <Optimize>true</Optimize> <OutputPath>bin\Release\</OutputPath> <DefineConstants>TRACE</DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> </PropertyGroup> <ItemGroup> <Reference Include="System" /> </ItemGroup> <ItemGroup> <Compile Include="ByteUtils\BigEndianReader.cs" /> <Compile Include="ByteUtils\BigEndianWriter.cs" /> <Compile Include="ByteUtils\ByteReader.cs" /> <Compile Include="ByteUtils\ByteUtils.cs" /> <Compile Include="ByteUtils\ByteWriter.cs" /> <Compile Include="ByteUtils\LittleEndianReader.cs" /> <Compile Include="ByteUtils\LittleEndianWriter.cs" /> <Compile Include="Conversion\BigEndianConverter.cs" /> <Compile Include="Conversion\Conversion.SimpleTypes.cs" /> <Compile Include="Conversion\LittleEndianConverter.cs" /> <Compile Include="Cryptography\CRC32.cs" /> <Compile Include="Generics\BlockingQueue.cs" /> <Compile Include="Generics\KeyValuePairList.cs" /> <Compile Include="Generics\Map.cs" /> <Compile Include="Generics\SortedList.cs" /> <Compile Include="IFileSystem\FileSystem.cs" /> <Compile Include="IFileSystem\FileSystemEntry.cs" /> <Compile Include="IFileSystem\IFileSystem.cs" /> <Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="Strings\QuotedStringUtils.cs" /> <Compile Include="Threading\CountdownLatch.cs" /> <Compile Include="Threading\Parallel.cs" /> </ItemGroup> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <!-- To modify your build process, add your task inside one of the targets below and uncomment it. Other similar extension points exist, see Microsoft.Common.targets. <Target Name="BeforeBuild"> </Target> <Target Name="AfterBuild"> </Target> --> </Project>