Changeset 4707
- Timestamp:
- 06/14/08 21:25:20 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/nuxleus/Source/CodeSamples/AwsSdbSOAP_Test/Program.cs
r4700 r4707 13 13 using VVMF.SOA.Common; 14 14 using System.Collections; 15 using System.Net; 15 16 16 17 namespace AwsSdbSOAP_Test { … … 22 23 23 24 static void Main(string[] args) { 25 26 ServicePointManager.DefaultConnectionLimit = 100; 24 27 25 28 System.Environment.SetEnvironmentVariable("AWS_PUBLIC_KEY", ConfigurationManager.AppSettings["AWS_PUBLIC_KEY"]); … … 68 71 69 72 Console.WriteLine("Completed all in:\t {0}ms", stopwatch.ElapsedMilliseconds); 73 Console.WriteLine("ServicePoint Connections: {0}", ServicePointManager.DefaultConnectionLimit); 70 74 71 75 trunk/nuxleus/Source/Nuxleus.Extension.Aws/Nuxleus.Extension.Aws.csproj
r4701 r4707 67 67 <DependentUpon>Settings.settings</DependentUpon> 68 68 </Compile> 69 <Compile Include="SimpleDB\Model\Attribute.cs" />70 <Compile Include="SimpleDB\Model\CreateDomain.cs" />71 <Compile Include="SimpleDB\Model\CreateDomainResponse.cs" />72 <Compile Include="SimpleDB\Model\DeleteAttributes.cs" />73 <Compile Include="SimpleDB\Model\DeleteAttributesResponse.cs" />74 <Compile Include="SimpleDB\Model\DeleteDomain.cs" />75 <Compile Include="SimpleDB\Model\DeleteDomainResponse.cs" />76 <Compile Include="SimpleDB\Model\Error.cs" />77 <Compile Include="SimpleDB\Model\ErrorResponse.cs" />78 <Compile Include="SimpleDB\Model\GetAttributes.cs" />79 <Compile Include="SimpleDB\Model\GetAttributesResponse.cs" />80 <Compile Include="SimpleDB\Model\GetAttributesResult.cs" />81 <Compile Include="SimpleDB\Model\ListDomains.cs" />82 <Compile Include="SimpleDB\Model\ListDomainsResponse.cs" />83 <Compile Include="SimpleDB\Model\ListDomainsResult.cs" />84 <Compile Include="SimpleDB\Model\PutAttributes.cs" />85 <Compile Include="SimpleDB\Model\PutAttributesResponse.cs" />86 <Compile Include="SimpleDB\Model\Query.cs" />87 <Compile Include="SimpleDB\Model\QueryResponse.cs" />88 <Compile Include="SimpleDB\Model\QueryResult.cs" />89 <Compile Include="SimpleDB\Model\ReplaceableAttribute.cs" />90 <Compile Include="SimpleDB\Model\ResponseMetadata.cs" />91 69 <Compile Include="SimpleDB\SdbAction.cs" /> 92 70 <Compile Include="SimpleDB\SimpleDBService.cs" /> … … 494 472 </ProjectReference> 495 473 </ItemGroup> 474 <ItemGroup> 475 <Folder Include="SimpleDB\Model\" /> 476 </ItemGroup> 496 477 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> 497 478 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. trunk/nuxleus/Source/nux.build
r4703 r4707 90 90 <include name="${build.dir}/Nuxleus.Messaging.dll"/> 91 91 <include name="${build.dir}/Nuxleus.Service.dll"/> 92 <include name="${build.dir}/Nuxleus.Extension. dll"/>92 <include name="${build.dir}/Nuxleus.Extension.Aws.dll"/> 93 93 <include name="${dependencies.dir}/Tamir.SharpSSH.dll"/> 94 94 <include name="System.dll"/> … … 923 923 <copy file="CodeSamples/AwsSdbSOAP_Test/App.config" tofile="${build.dir}/Sdb_SOAP_Test.exe.config"/> 924 924 </target> 925 <!--925 <!-- 926 926 <target name="System.Messaging" depends="init"> 927 927 <csc target="library" output="${build.dir}/System.Messaging.dll">
