Skip to content
This repository has been archived by the owner on Jul 19, 2024. It is now read-only.

Commit

Permalink
Updating to Microsoft.Azure.ServiceBus 4.0.0 (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
alrod committed Oct 11, 2019
1 parent a73d161 commit 2f304c4
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 3 deletions.
5 changes: 5 additions & 0 deletions Message.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="us-ascii"?>
<Message xmlns="http://schemas.microsoft.com/servicebusexplorer">
<Date>Friday, October 4, 2019 10:14:45 PM</Date>
<Content><![CDATA[<message>Hi mate, how are you?</message>]]></Content>
</Message>
5 changes: 5 additions & 0 deletions Properties.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="us-ascii"?>
<Properties xmlns="http://schemas.microsoft.com/servicebusexplorer">
<Property Key="MachineName" Type="String" Value="ALROD-P51" />
<Property Key="UserName" Type="String" Value="alrod" />
</Properties>
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<RootNamespace>Microsoft.Azure.WebJobs.ServiceBus</RootNamespace>
<PackageId>Microsoft.Azure.WebJobs.Extensions.ServiceBus</PackageId>
<Description>Microsoft Azure WebJobs SDK ServiceBus Extension</Description>
<Version>3.1.1</Version>
<Version>4.0.0</Version>
<CommitHash Condition="$(CommitHash) == ''">N/A</CommitHash>
<InformationalVersion>$(Version) Commit hash: $(CommitHash)</InformationalVersion>
<Authors>Microsoft</Authors>
Expand Down Expand Up @@ -37,7 +37,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Azure.ServiceBus" Version="3.4.0" />
<PackageReference Include="Microsoft.Azure.ServiceBus" Version="4.0.0" />
<PackageReference Include="Microsoft.Azure.WebJobs" Version="3.0.10" />
<PackageReference Include="Microsoft.Azure.WebJobs.Sources" Version="3.0.10" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.0-beta004">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,8 @@ private async Task ServiceBusEndToEndInternal<T>(IHost host = null)
string[] consoleOutputLines = consoleOutput
.Where(p => p.FormattedMessage != null)
.SelectMany(p => p.FormattedMessage.Split(Environment.NewLine, StringSplitOptions.RemoveEmptyEntries))
// There is a known issue in SB SDK 4.0.0 in MessageReceivePump.MessagePumpTaskAsync https://github.com/Azure/azure-sdk-for-net/issues/6410
.Where(p => !p.StartsWith("Message processing error"))
.OrderBy(p => p)
.ToArray();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Azure.ServiceBus" Version="3.4.0" />
<PackageReference Include="Microsoft.Azure.ServiceBus" Version="4.0.0" />
<PackageReference Include="Microsoft.Azure.WebJobs.Host.TestCommon" Version="3.0.10" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.0-beta004">
<PrivateAssets>all</PrivateAssets>
Expand Down

0 comments on commit 2f304c4

Please sign in to comment.