Utilities.csproj 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="Current">
  2. <PropertyGroup>
  3. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  4. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  5. <ProductVersion>8.0.50727</ProductVersion>
  6. <SchemaVersion>2.0</SchemaVersion>
  7. <ProjectGuid>{6E0F2D1E-6167-4032-BA90-DEE3A99207D0}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Utilities</RootNamespace>
  11. <AssemblyName>Utilities</AssemblyName>
  12. <FileUpgradeFlags>
  13. </FileUpgradeFlags>
  14. <UpgradeBackupLocation>
  15. </UpgradeBackupLocation>
  16. <OldToolsVersion>2.0</OldToolsVersion>
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>bin\Debug\</OutputPath>
  23. <DefineConstants>DEBUG;TRACE</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. </PropertyGroup>
  35. <ItemGroup>
  36. <Reference Include="System" />
  37. </ItemGroup>
  38. <ItemGroup>
  39. <Compile Include="ByteUtils\BigEndianReader.cs" />
  40. <Compile Include="ByteUtils\BigEndianWriter.cs" />
  41. <Compile Include="ByteUtils\ByteReader.cs" />
  42. <Compile Include="ByteUtils\ByteUtils.cs" />
  43. <Compile Include="ByteUtils\ByteWriter.cs" />
  44. <Compile Include="ByteUtils\LittleEndianReader.cs" />
  45. <Compile Include="ByteUtils\LittleEndianWriter.cs" />
  46. <Compile Include="Comparers\ReverseComparer.cs" />
  47. <Compile Include="Conversion\BigEndianConverter.cs" />
  48. <Compile Include="Conversion\Conversion.SimpleTypes.cs" />
  49. <Compile Include="Conversion\LittleEndianConverter.cs" />
  50. <Compile Include="Cryptography\CRC32.cs" />
  51. <Compile Include="Generics\BlockingQueue.cs" />
  52. <Compile Include="Generics\KeyValuePairList.cs" />
  53. <Compile Include="Generics\Map.cs" />
  54. <Compile Include="Generics\Reference.cs" />
  55. <Compile Include="Generics\SortedList.cs" />
  56. <Compile Include="IFileSystem\FileSystem.cs" />
  57. <Compile Include="IFileSystem\FileSystemEntry.cs" />
  58. <Compile Include="IFileSystem\IFileSystem.cs" />
  59. <Compile Include="Properties\AssemblyInfo.cs" />
  60. <Compile Include="Strings\QuotedStringUtils.cs" />
  61. <Compile Include="Threading\CountdownLatch.cs" />
  62. <Compile Include="Threading\Parallel.cs" />
  63. </ItemGroup>
  64. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  65. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  66. Other similar extension points exist, see Microsoft.Common.targets.
  67. <Target Name="BeforeBuild">
  68. </Target>
  69. <Target Name="AfterBuild">
  70. </Target>
  71. -->
  72. </Project>