Playground.csproj 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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)' == '' ">x86</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{8A062C6B-4441-49F3-B618-4238B6AB5290}</ProjectGuid>
  9. <OutputType>Exe</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>Playground</RootNamespace>
  12. <AssemblyName>Playground</AssemblyName>
  13. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  14. <TargetFrameworkProfile>
  15. </TargetFrameworkProfile>
  16. <FileAlignment>512</FileAlignment>
  17. <SccProjectName>SAK</SccProjectName>
  18. <SccLocalPath>SAK</SccLocalPath>
  19. <SccAuxPath>SAK</SccAuxPath>
  20. <SccProvider>SAK</SccProvider>
  21. </PropertyGroup>
  22. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  23. <PlatformTarget>x86</PlatformTarget>
  24. <DebugSymbols>true</DebugSymbols>
  25. <DebugType>full</DebugType>
  26. <Optimize>false</Optimize>
  27. <OutputPath>bin\Debug\</OutputPath>
  28. <DefineConstants>DEBUG;TRACE</DefineConstants>
  29. <ErrorReport>prompt</ErrorReport>
  30. <WarningLevel>4</WarningLevel>
  31. <UseVSHostingProcess>false</UseVSHostingProcess>
  32. </PropertyGroup>
  33. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  34. <PlatformTarget>x86</PlatformTarget>
  35. <DebugType>pdbonly</DebugType>
  36. <Optimize>true</Optimize>
  37. <OutputPath>bin\Release\</OutputPath>
  38. <DefineConstants>TRACE</DefineConstants>
  39. <ErrorReport>prompt</ErrorReport>
  40. <WarningLevel>4</WarningLevel>
  41. </PropertyGroup>
  42. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'ReleaseXBLV|x86'">
  43. <OutputPath>bin\x86\ReleaseXBLV\</OutputPath>
  44. </PropertyGroup>
  45. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'DebugXBLV|x86'">
  46. <OutputPath>bin\x86\DebugXBLV\</OutputPath>
  47. </PropertyGroup>
  48. <ItemGroup>
  49. <Reference Include="System" />
  50. <Reference Include="System.Core" />
  51. <Reference Include="Microsoft.CSharp" />
  52. </ItemGroup>
  53. <ItemGroup>
  54. <Compile Include="Program.cs" />
  55. <Compile Include="Properties\AssemblyInfo.cs" />
  56. </ItemGroup>
  57. <ItemGroup>
  58. <ProjectReference Include="..\System.Reactive.Core\System.Reactive.Core.csproj">
  59. <Project>{4E516F10-DA7A-4D43-963E-A93865ABEA5B}</Project>
  60. <Name>System.Reactive.Core</Name>
  61. </ProjectReference>
  62. <ProjectReference Include="..\System.Reactive.Debugger\System.Reactive.Debugger.csproj">
  63. <Project>{FFB7A57C-BC22-4B71-88D4-2489B3FF10B6}</Project>
  64. <Name>System.Reactive.Debugger</Name>
  65. </ProjectReference>
  66. <ProjectReference Include="..\System.Reactive.Experimental\System.Reactive.Experimental.csproj">
  67. <Project>{41E65B96-733B-41C4-A1BB-7476359B89EB}</Project>
  68. <Name>System.Reactive.Experimental</Name>
  69. </ProjectReference>
  70. <ProjectReference Include="..\System.Reactive.Interfaces\System.Reactive.Interfaces.csproj">
  71. <Project>{9E9B9C60-98B0-40FA-9C2B-1218D417CAA4}</Project>
  72. <Name>System.Reactive.Interfaces</Name>
  73. </ProjectReference>
  74. <ProjectReference Include="..\System.Reactive.PlatformServices\System.Reactive.PlatformServices.csproj">
  75. <Project>{0CCCF009-763F-40D2-8655-7A94828023BF}</Project>
  76. <Name>System.Reactive.PlatformServices</Name>
  77. </ProjectReference>
  78. <ProjectReference Include="..\System.Reactive.Linq\System.Reactive.Linq.csproj">
  79. <Project>{63252AE9-5186-45CA-BFCD-FA51C6B66A43}</Project>
  80. <Name>System.Reactive.Linq</Name>
  81. </ProjectReference>
  82. <ProjectReference Include="..\System.Reactive.Providers\System.Reactive.Providers.csproj">
  83. <Project>{C7B9D7BE-F47F-466B-A6B0-E46F1069B171}</Project>
  84. <Name>System.Reactive.Providers</Name>
  85. </ProjectReference>
  86. <ProjectReference Include="..\Tests.System.Reactive\Tests.System.Reactive.csproj">
  87. <Project>{2FEFC068-E2DE-43A9-A4E6-E0336A532B7A}</Project>
  88. <Name>Tests.System.Reactive</Name>
  89. </ProjectReference>
  90. </ItemGroup>
  91. <ItemGroup>
  92. <None Include="app.config" />
  93. </ItemGroup>
  94. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  95. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  96. Other similar extension points exist, see Microsoft.Common.targets.
  97. <Target Name="BeforeBuild">
  98. </Target>
  99. <Target Name="AfterBuild">
  100. </Target>
  101. -->
  102. </Project>