Index: trunk/rhino-dht/Rhino.DHT/Rhino.DHT.csproj
===================================================================
--- trunk/rhino-dht/Rhino.DHT/Rhino.DHT.csproj	(revision 1953)
+++ trunk/rhino-dht/Rhino.DHT/Rhino.DHT.csproj	(working copy)
@@ -63,9 +63,11 @@
     <Compile Include="Value.cs" />
     <Compile Include="PersistentHashTable.cs" />
     <Compile Include="PersistentHashTableActions.cs" />
-    <Compile Include="Properties\AssemblyInfo.cs" />
     <Compile Include="SchemaCreator.cs" />
   </ItemGroup>
+  <ItemGroup>
+    <Folder Include="Properties\" />
+  </ItemGroup>
   <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
   <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
        Other similar extension points exist, see Microsoft.Common.targets.

Property changes on: trunk\rhino-service.bus\Rhino.ServiceBus
___________________________________________________________________
Modified: svn:ignore
   - bin
obj
*.user

   + bin
obj
*.user
[Bb]in
[Dd]ebug
[Rr]elease
*.aps
*.eto


Index: trunk/rhino-service.bus/Rhino.ServiceBus.Host/ExecutingOptions.cs
===================================================================
--- trunk/rhino-service.bus/Rhino.ServiceBus.Host/ExecutingOptions.cs	(revision 1953)
+++ trunk/rhino-service.bus/Rhino.ServiceBus.Host/ExecutingOptions.cs	(working copy)
@@ -18,20 +18,20 @@
         public override string ToString()
         {
             var sb = new StringBuilder();
-            sb.Append(" /action:").Append(Action)
-                .Append(" /load-balancer:")
+            sb.Append(" /Action:").Append(Action)
+                .Append(" /UseLoadBalancer:")
                 .Append(UseLoadBalancer ? "+" : "-")
-                .Append(" /name:")
+                .Append(" /Name:")
                 .Append(Name);
 
             if (string.IsNullOrEmpty(Assembly) == false)
             {
-                sb.Append(" /asm:")
+                sb.Append(" /Assembly:")
                     .Append(Assembly);
             }
             if (string.IsNullOrEmpty(ConfigFile) == false)
             {
-                sb.Append(" /cfg:")
+                sb.Append(" /ConfigFile:")
                     .Append(ConfigFile);
             }
             return sb.ToString();
Index: trunk/rhino-service.bus/Rhino.ServiceBus.Host/Program.cs
===================================================================
--- trunk/rhino-service.bus/Rhino.ServiceBus.Host/Program.cs	(revision 1953)
+++ trunk/rhino-service.bus/Rhino.ServiceBus.Host/Program.cs	(working copy)
@@ -17,8 +17,9 @@
         };
 
         public static void Main(string[] args)
-        {
+        {       
             var executingOptions = new ExecutingOptions();
+
             if (Parser.ParseArguments(args, executingOptions) == false)
             {
                 Console.WriteLine();
Index: trunk/rhino-service.bus/Rhino.ServiceBus.Host/Rhino.ServiceBus.Host.csproj
===================================================================
--- trunk/rhino-service.bus/Rhino.ServiceBus.Host/Rhino.ServiceBus.Host.csproj	(revision 1953)
+++ trunk/rhino-service.bus/Rhino.ServiceBus.Host/Rhino.ServiceBus.Host.csproj	(working copy)
@@ -63,7 +63,6 @@
     <Compile Include="ProjectInstaller.Designer.cs">
       <DependentUpon>ProjectInstaller.cs</DependentUpon>
     </Compile>
-    <Compile Include="Properties\AssemblyInfo.cs" />
     <Compile Include="RhinoServiceBusHost.cs">
       <SubType>Component</SubType>
     </Compile>
@@ -82,6 +81,9 @@
       <DependentUpon>ProjectInstaller.cs</DependentUpon>
     </EmbeddedResource>
   </ItemGroup>
+  <ItemGroup>
+    <Folder Include="Properties\" />
+  </ItemGroup>
   <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
   <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
        Other similar extension points exist, see Microsoft.Common.targets.
Index: trunk/rhino-service.bus/Rhino.ServiceBus.Host/RhinoServiceBusHost.cs
===================================================================
--- trunk/rhino-service.bus/Rhino.ServiceBus.Host/RhinoServiceBusHost.cs	(revision 1953)
+++ trunk/rhino-service.bus/Rhino.ServiceBus.Host/RhinoServiceBusHost.cs	(working copy)
@@ -1,9 +1,6 @@
-﻿using Rhino.ServiceBus.LoadBalancer;
-
-namespace Rhino.ServiceBus.Host
+﻿namespace Rhino.ServiceBus.Host
 {
 	using System.ServiceProcess;
-	using System.Threading;
 	using Hosting;
 
 	internal partial class RhinoServiceBusHost : ServiceBase
@@ -27,10 +24,10 @@
 
 		protected override void OnStart(string[] ignored)
 		{
-            host = loadBalancer ?
-                new RemoteAppDomainLoadBalancerHost(asm, cfg) :
-                new RemoteAppDomainHost(asm, cfg);
-			host.Start();
+		    this.host = this.loadBalancer ? 
+                new RemoteAppDomainLoadBalancerHost(this.asm, this.cfg) : 
+                new RemoteAppDomainHost(this.asm, this.cfg);
+		    this.host.Start();
 		}
 
 		protected override void OnStop()
Index: trunk/rhino-service.bus/Rhino.ServiceBus.Tests/Rhino.ServiceBus.Tests.csproj
===================================================================
--- trunk/rhino-service.bus/Rhino.ServiceBus.Tests/Rhino.ServiceBus.Tests.csproj	(revision 1953)
+++ trunk/rhino-service.bus/Rhino.ServiceBus.Tests/Rhino.ServiceBus.Tests.csproj	(working copy)
@@ -103,7 +103,6 @@
     <Compile Include="MsmqTestBase.cs" />
     <Compile Include="MsmqTests.cs" />
     <Compile Include="OnBusStart.cs" />
-    <Compile Include="Properties\AssemblyInfo.cs" />
     <Compile Include="PublishingTests.cs" />
     <Compile Include="QueueCreationModuleTests.cs" />
     <Compile Include="RequestAndReply.cs" />
@@ -147,6 +146,9 @@
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
   </ItemGroup>
+  <ItemGroup>
+    <Folder Include="Properties\" />
+  </ItemGroup>
   <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
   <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
        Other similar extension points exist, see Microsoft.Common.targets.
Index: trunk/rhino-service.bus/Rhino.ServiceBus/Rhino.ServiceBus.csproj
===================================================================
--- trunk/rhino-service.bus/Rhino.ServiceBus/Rhino.ServiceBus.csproj	(revision 1953)
+++ trunk/rhino-service.bus/Rhino.ServiceBus/Rhino.ServiceBus.csproj	(working copy)
@@ -156,7 +156,6 @@
     <Compile Include="Msmq\MsmqSubscriptionStorage.cs" />
     <Compile Include="Msmq\MsmqUtil.cs" />
     <Compile Include="Msmq\MsmqTransport.cs" />
-    <Compile Include="Properties\AssemblyInfo.cs" />
     <Compile Include="Sagas\ISaga.cs" />
     <Compile Include="Sagas\ISagaMessage.cs" />
     <Compile Include="Sagas\Orchestrates.cs" />
@@ -183,6 +182,9 @@
       <Name>Rhino.DHT</Name>
     </ProjectReference>
   </ItemGroup>
+  <ItemGroup>
+    <Folder Include="Properties\" />
+  </ItemGroup>
   <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
   <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
        Other similar extension points exist, see Microsoft.Common.targets.
