MatrixIO.IO.csproj 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProjectGuid>{EDC16014-ECA3-4B93-A849-B81EAC369DD2}</ProjectGuid>
  7. <OutputType>Library</OutputType>
  8. <AppDesignerFolder>Properties</AppDesignerFolder>
  9. <RootNamespace>MatrixIO</RootNamespace>
  10. <AssemblyName>MatrixIO.IO</AssemblyName>
  11. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  12. <TargetFrameworkProfile>Profile1</TargetFrameworkProfile>
  13. <FileAlignment>512</FileAlignment>
  14. <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  15. <SccProjectName>SAK</SccProjectName>
  16. <SccLocalPath>SAK</SccLocalPath>
  17. <SccAuxPath>SAK</SccAuxPath>
  18. <SccProvider>SAK</SccProvider>
  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. </PropertyGroup>
  29. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  30. <DebugType>pdbonly</DebugType>
  31. <Optimize>true</Optimize>
  32. <OutputPath>bin\Release\</OutputPath>
  33. <DefineConstants>TRACE</DefineConstants>
  34. <ErrorReport>prompt</ErrorReport>
  35. <WarningLevel>4</WarningLevel>
  36. </PropertyGroup>
  37. <ItemGroup>
  38. <Reference Include="System" />
  39. <Reference Include="System.Core" />
  40. <Reference Include="System.Xml" />
  41. </ItemGroup>
  42. <ItemGroup>
  43. <Compile Include="Collections\ConcurrentPriorityQueue.cs" />
  44. <Compile Include="Diagnostics\Trace.cs" />
  45. <Compile Include="IO\TimeAverage.cs" />
  46. <Compile Include="IO\ByteRange.cs" />
  47. <Compile Include="IO\ConstrainedStream.cs" />
  48. <Compile Include="IO\EndianExtensions.cs" />
  49. <Compile Include="IO\PortabilityFactory.cs" />
  50. <Compile Include="IO\StreamExtensions.cs" />
  51. <Compile Include="Properties\AssemblyInfo.cs" />
  52. </ItemGroup>
  53. <ItemGroup />
  54. <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
  55. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  56. Other similar extension points exist, see Microsoft.Common.targets.
  57. <Target Name="BeforeBuild">
  58. </Target>
  59. <Target Name="AfterBuild">
  60. </Target>
  61. -->
  62. </Project>