Changeset 4689
- Timestamp:
- 06/03/08 19:00:58 (6 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/nuxleus/Source/CodeSamples/HttpGetRequestAsyncWorkflow_Test/HttpGetRequestAsyncWorkflow_Test.csproj
r4649 r4689 4 4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 5 5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> 6 <ProductVersion>9.0. 20706</ProductVersion>6 <ProductVersion>9.0.30428</ProductVersion> 7 7 <SchemaVersion>2.0</SchemaVersion> 8 8 <ProjectGuid>{C09BBBAE-2874-4168-874C-D3C9E780B6FE}</ProjectGuid> … … 60 60 <Name>Nuxleus.Extension.Linq</Name> 61 61 </ProjectReference> 62 <ProjectReference Include="..\..\Nuxleus.Web\Nuxleus.Web.csproj">63 <Project>{9ADF199C-BEED-4673-8BB0-EE9C1C7FB826}</Project>64 <Name>Nuxleus.Web</Name>65 </ProjectReference>66 62 </ItemGroup> 67 63 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> trunk/nuxleus/Source/CodeSamples/HttpGetRequestAsyncWorkflow_Test/Program.cs
r4592 r4689 3 3 using System.Linq; 4 4 using System.Text; 5 using Nuxleus.Web;6 5 using System.IO; 7 6 using System.Threading; 8 7 using System.Diagnostics; 9 10 8 using EeekSoft.Asynchronous; 11 9 using System.Net; … … 88 86 89 87 Console.WriteLine("Current thread id:\t {0}", Thread.CurrentThread.ManagedThreadId); 88 90 89 stopwatch.Start(); 91 90 92 var methods = Async.Parallel(requestOperations); 93 yield return methods; 91 yield return Async.Parallel(requestOperations); 94 92 95 93 stopwatch.Stop();
