Skip to content

Commit

Permalink
Merge branch 'release-5.1.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Oct 31, 2014
2 parents 68f7d3f + 2d86765 commit b755c38
Show file tree
Hide file tree
Showing 352 changed files with 5,837 additions and 11,644 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ public class Program
static void Main()
{
var configuration = new BusConfiguration();
configuration.UsePersistence<InMemoryPersistence>();

using (var bus = Bus.CreateSendOnly(configuration))
{
Expand Down
4 changes: 2 additions & 2 deletions IntegrationTests/WcfIntegration/Server/app.config
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<!-- Uncomment the lines below to change to settings of the default serviceendpoint -->
<!--<endpoint address=""
binding="basicHttpBinding"
contract="NServiceBus.IWcfService`2[[Messages.CancelOrder, Messages, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null],[Messages.ErrorCodes, Messages, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]">
contract="NServiceBus.IWcfService`2[[Messages.CancelOrder, Messages, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null],[Messages.ErrorCodes, Messages, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]">
</endpoint>-->
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
<host>
Expand All @@ -34,4 +34,4 @@
</service>
</services>
</system.serviceModel>
</configuration>
</configuration>
Binary file removed lib/Interop.MSMQ.dll
Binary file not shown.
Binary file removed lib/Topshelf/Topshelf.dll
Binary file not shown.
Binary file removed lib/Topshelf/Topshelf.pdb
Binary file not shown.
Binary file removed packaging/NServiceBus.Interfaces.5.0.0.nupkg
Binary file not shown.
5 changes: 5 additions & 0 deletions packaging/nuget/nservicebus.acceptancetests.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@
<dependency id="NServiceBus" version="$version$" />
<dependency id="NServiceBus.AcceptanceTesting" version="$version$" />
<dependency id="NUnit" version="[2.0.0, 3.0.0)" />
<dependency id="Rx-Core" version="2.2.5" />
<dependency id="Rx-Interfaces" version="2.2.5" />
<dependency id="Rx-Linq" version="2.2.5" />
<dependency id="Rx-Main" version="2.2.5" />
<dependency id="Rx-PlatformServices" version="2.2.5" />
</dependencies>
</metadata>
<files>
Expand Down
25 changes: 0 additions & 25 deletions packaging/nuget/nservicebus.host.nuspec

This file was deleted.

17 changes: 0 additions & 17 deletions packaging/nuget/nservicebus.host/EndpointConfig.cs

This file was deleted.

124 changes: 0 additions & 124 deletions packaging/nuget/nservicebus.host/install.ps1

This file was deleted.

25 changes: 0 additions & 25 deletions packaging/nuget/nservicebus.host32.nuspec

This file was deleted.

24 changes: 0 additions & 24 deletions packaging/nuget/nservicebus.hosting.profiles.nuspec

This file was deleted.

24 changes: 0 additions & 24 deletions packaging/nuget/nservicebus.testing.nuspec

This file was deleted.

8 changes: 0 additions & 8 deletions packaging/nuget/tools/init.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,7 @@ if($toolsPath){

if(Test-Path $pathToNServiceBusPSCmdLets){
Import-Module $pathToNServiceBusPSCmdLets

Write-Host ""
Write-Host "Type 'get-help about_NServiceBus' to see all available NServiceBus commands."
Write-Host ""
}
else {
Write-Host "NServiceBus powershell module could not be found, no powershell commands will be available"
Expand All @@ -34,12 +31,10 @@ try {

#Check for existing NServiceBus installations
if (Test-Path $nserviceBusKeyPath) {
"Existing NServiceBus v($packageVersion) user detected"
$isNewUser = $false
}

if (Test-Path $platformKeyPath){
"Existing Platform user detected"
$isNewUser = $false
}

Expand All @@ -60,9 +55,6 @@ try {
if($dte){
$dte.ExecuteCommand("View.URL", $url)
}
else{
"No dte detected, url: $url"
}
}
Catch [Exception] {
Write-Warning $error[0]
Expand Down
3 changes: 0 additions & 3 deletions packaging/nuget/tools/install.ps1

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,5 @@ static Conventions()
public static Func<RunDescriptor> DefaultRunDescriptor = () => new RunDescriptor {Key = "Default"};

public static Func<Type, string> EndpointNamingConvention { get; set; }

public static string DefaultNameFor<T>()
{
return EndpointNamingConvention(typeof(T));
}
}
}
28 changes: 28 additions & 0 deletions src/NServiceBus.AcceptanceTesting/ScenarioContext.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
namespace NServiceBus.AcceptanceTesting
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Remoting.Activation;
using System.Runtime.Remoting.Contexts;
using System.Runtime.Remoting.Messaging;
Expand Down Expand Up @@ -70,5 +72,31 @@ public void AddTrace(string trace)
{
Trace += DateTime.Now.ToString("HH:mm:ss.ffffff") + " - " + trace + Environment.NewLine;
}

public void RecordEndpointLog(string endpointName,string level ,string message)
{
endpointLogs.Add(new EndpointLogItem
{
Endpoint = endpointName,
Level = level,
Message = message
});
}


public List<EndpointLogItem> GetAllLogs()
{
return endpointLogs.ToList();
}


List<EndpointLogItem> endpointLogs = new List<EndpointLogItem>();

public class EndpointLogItem
{
public string Endpoint { get; set; }
public string Message { get; set; }
public string Level { get; set; }
}
}
}
Loading

0 comments on commit b755c38

Please sign in to comment.