Changeset 4689

Show
Ignore:
Timestamp:
06/03/08 19:00:58 (6 months ago)
Author:
xmlhacker
Message:

removed some unnecessary repetiveness

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/nuxleus/Source/CodeSamples/HttpGetRequestAsyncWorkflow_Test/HttpGetRequestAsyncWorkflow_Test.csproj

    r4649 r4689  
    44    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 
    55    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> 
    6     <ProductVersion>9.0.20706</ProductVersion> 
     6    <ProductVersion>9.0.30428</ProductVersion> 
    77    <SchemaVersion>2.0</SchemaVersion> 
    88    <ProjectGuid>{C09BBBAE-2874-4168-874C-D3C9E780B6FE}</ProjectGuid> 
     
    6060      <Name>Nuxleus.Extension.Linq</Name> 
    6161    </ProjectReference> 
    62     <ProjectReference Include="..\..\Nuxleus.Web\Nuxleus.Web.csproj"> 
    63       <Project>{9ADF199C-BEED-4673-8BB0-EE9C1C7FB826}</Project> 
    64       <Name>Nuxleus.Web</Name> 
    65     </ProjectReference> 
    6662  </ItemGroup> 
    6763  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 
  • trunk/nuxleus/Source/CodeSamples/HttpGetRequestAsyncWorkflow_Test/Program.cs

    r4592 r4689  
    33using System.Linq; 
    44using System.Text; 
    5 using Nuxleus.Web; 
    65using System.IO; 
    76using System.Threading; 
    87using System.Diagnostics; 
    9  
    108using EeekSoft.Asynchronous; 
    119using System.Net; 
     
    8886 
    8987            Console.WriteLine("Current thread id:\t {0}", Thread.CurrentThread.ManagedThreadId); 
     88 
    9089            stopwatch.Start(); 
    9190 
    92             var methods = Async.Parallel(requestOperations); 
    93             yield return methods; 
     91            yield return Async.Parallel(requestOperations); 
    9492 
    9593            stopwatch.Stop();