1
0

System.Interactive.Async.csproj 4.3 KB

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