Utilities.csproj 2.9 KB

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