System.Interactive.Async.csproj 4.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{7269A578-326A-4C3E-9874-A2D2600095BC}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>System.Interactive.Async</RootNamespace>
  12. <AssemblyName>System.Interactive.Async</AssemblyName>
  13. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. <NoWarn>1591</NoWarn>
  16. </PropertyGroup>
  17. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'ReleaseSL5|AnyCPU'">
  18. <NoWarn>1591</NoWarn>
  19. </PropertyGroup>
  20. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release40|AnyCPU'">
  21. <NoWarn>1591</NoWarn>
  22. <GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
  23. </PropertyGroup>
  24. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug40|AnyCPU'">
  25. <NoWarn>1591</NoWarn>
  26. </PropertyGroup>
  27. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug35|AnyCPU'">
  28. <NoWarn>1591</NoWarn>
  29. </PropertyGroup>
  30. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release35|AnyCPU'">
  31. <NoWarn>1591</NoWarn>
  32. </PropertyGroup>
  33. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'DebugSL4|AnyCPU'">
  34. <NoWarn>1591</NoWarn>
  35. </PropertyGroup>
  36. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'ReleaseSL4|AnyCPU'">
  37. <NoWarn>1591</NoWarn>
  38. </PropertyGroup>
  39. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'DebugSL5|AnyCPU'">
  40. <NoWarn>1591</NoWarn>
  41. </PropertyGroup>
  42. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'DebugWP7|AnyCPU'">
  43. <NoWarn>1591</NoWarn>
  44. </PropertyGroup>
  45. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'ReleaseWP7|AnyCPU'">
  46. <NoWarn>1591</NoWarn>
  47. </PropertyGroup>
  48. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'DebugPL|AnyCPU'">
  49. <NoWarn>1591</NoWarn>
  50. </PropertyGroup>
  51. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'ReleasePL|AnyCPU'">
  52. <NoWarn>1591</NoWarn>
  53. </PropertyGroup>
  54. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release45|AnyCPU'">
  55. <OutputPath>bin\Release45\</OutputPath>
  56. <DefineConstants>;TRACE;DESKTOPCLR;DESKTOPCLR40;DESKTOPCLR45</DefineConstants>
  57. <DocumentationFile>bin\Release45\System.Interactive.Async.XML</DocumentationFile>
  58. <Optimize>true</Optimize>
  59. <NoWarn>1591</NoWarn>
  60. <DebugType>pdbonly</DebugType>
  61. <PlatformTarget>AnyCPU</PlatformTarget>
  62. <GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
  63. <ErrorReport>prompt</ErrorReport>
  64. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  65. </PropertyGroup>
  66. <Import Project="..\Common.targets" />
  67. <PropertyGroup>
  68. <DocumentationFile>$(OutputPath)\$(AssemblyName).XML</DocumentationFile>
  69. </PropertyGroup>
  70. <PropertyGroup Condition=" '$(Configuration)' == 'DebugPL' Or '$(Configuration)' == 'ReleasePL' ">
  71. <TargetFrameworkProfile>Profile1</TargetFrameworkProfile>
  72. </PropertyGroup>
  73. <ItemGroup>
  74. <Reference Include="mscorlib" Condition=" '$(BuildPlatform)' == 'SILVERLIGHT' " />
  75. <Reference Include="System" />
  76. <Reference Include="System.Core" />
  77. </ItemGroup>
  78. <ItemGroup>
  79. <Compile Include="AsyncEnumerable.Conversions.cs" />
  80. <Compile Include="AsyncEnumerable.Creation.cs" />
  81. <Compile Include="AsyncEnumerable.Exceptions.cs" />
  82. <Compile Include="AsyncEnumerable.Generated.cs" />
  83. <Compile Include="AsyncEnumerable.Single.cs" />
  84. <Compile Include="AsyncEnumerable.Multiple.cs" />
  85. <Compile Include="AsyncEnumerable.Aggregates.cs" />
  86. <Compile Include="AsyncEnumerator.cs" />
  87. <Compile Include="Disposables.cs" />
  88. <Compile Include="EnumerableGrouping.cs" />
  89. <Compile Include="IAsyncEnumerable.cs" />
  90. <Compile Include="IAsyncEnumerator.cs" />
  91. <Compile Include="IAsyncGrouping.cs" />
  92. <Compile Include="IOrderedAsyncEnumerable.cs" />
  93. <Compile Include="Properties\AssemblyInfo.cs" />
  94. <Compile Include="TaskExt.cs" />
  95. </ItemGroup>
  96. <Import Project="..\Import.targets" />
  97. </Project>