Utilities.csproj 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0">
  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. <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
  18. <TargetFrameworkProfile />
  19. </PropertyGroup>
  20. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  21. <DebugSymbols>true</DebugSymbols>
  22. <DebugType>full</DebugType>
  23. <Optimize>false</Optimize>
  24. <OutputPath>bin\Debug\</OutputPath>
  25. <DefineConstants>DEBUG;TRACE</DefineConstants>
  26. <ErrorReport>prompt</ErrorReport>
  27. <WarningLevel>4</WarningLevel>
  28. <Prefer32Bit>false</Prefer32Bit>
  29. </PropertyGroup>
  30. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  31. <DebugType>pdbonly</DebugType>
  32. <Optimize>true</Optimize>
  33. <OutputPath>bin\Release\</OutputPath>
  34. <DefineConstants>TRACE</DefineConstants>
  35. <ErrorReport>prompt</ErrorReport>
  36. <WarningLevel>4</WarningLevel>
  37. <Prefer32Bit>false</Prefer32Bit>
  38. </PropertyGroup>
  39. <ItemGroup>
  40. <Reference Include="System" />
  41. </ItemGroup>
  42. <ItemGroup>
  43. <Compile Include="ByteUtils\BigEndianReader.cs" />
  44. <Compile Include="ByteUtils\BigEndianWriter.cs" />
  45. <Compile Include="ByteUtils\ByteReader.cs" />
  46. <Compile Include="ByteUtils\ByteUtils.cs" />
  47. <Compile Include="ByteUtils\ByteWriter.cs" />
  48. <Compile Include="ByteUtils\LittleEndianReader.cs" />
  49. <Compile Include="ByteUtils\LittleEndianWriter.cs" />
  50. <Compile Include="Comparers\ReverseComparer.cs" />
  51. <Compile Include="Conversion\BigEndianConverter.cs" />
  52. <Compile Include="Conversion\Conversion.SimpleTypes.cs" />
  53. <Compile Include="Conversion\LittleEndianConverter.cs" />
  54. <Compile Include="Cryptography\CRC32.cs" />
  55. <Compile Include="Generics\BlockingQueue.cs" />
  56. <Compile Include="Generics\KeyValuePairList.cs" />
  57. <Compile Include="Generics\Map.cs" />
  58. <Compile Include="Generics\Reference.cs" />
  59. <Compile Include="Generics\SortedList.cs" />
  60. <Compile Include="IFileSystem\FileSystem.cs" />
  61. <Compile Include="IFileSystem\FileSystemEntry.cs" />
  62. <Compile Include="IFileSystem\IFileSystem.cs" />
  63. <Compile Include="Properties\AssemblyInfo.cs" />
  64. <Compile Include="Strings\QuotedStringUtils.cs" />
  65. <Compile Include="Threading\CountdownLatch.cs" />
  66. <Compile Include="Threading\Parallel.cs" />
  67. </ItemGroup>
  68. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  69. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  70. Other similar extension points exist, see Microsoft.Common.targets.
  71. <Target Name="BeforeBuild">
  72. </Target>
  73. <Target Name="AfterBuild">
  74. </Target>
  75. -->
  76. </Project>