Skip to content

Commit

Permalink
Merge pull request #442 from Particular/release-4.0
Browse files Browse the repository at this point in the history
Release 4.0
  • Loading branch information
bording authored May 15, 2018
2 parents a8b3787 + 41d7139 commit 1aa1d48
Show file tree
Hide file tree
Showing 128 changed files with 1,831 additions and 3,209 deletions.
5 changes: 0 additions & 5 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,6 @@
*.bat text eol=crlf

# Custom for Visual Studio
*.csproj merge=union
*.vbproj merge=union
*.fsproj merge=union
*.dbproj merge=union
*.sln text eol=crlf merge=union
*.suo -text -diff
*.snk -text -diff
*.cub -text -diff
Expand Down
4 changes: 2 additions & 2 deletions GitVersion.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
assembly-versioning-scheme: Major
next-version: 3.1
next-version: 4.0
branches:
develop:
tag: alpha
release:
tag: rc
tag: rc
24 changes: 0 additions & 24 deletions packaging/nuget/NServiceBus.SqlServer.nuspec

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,15 +1,23 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net452</TargetFramework>
<AssemblyName>Facade</AssemblyName>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="log4net" Version="2.0.0" />
<PackageReference Include="NServiceBus" Version="4.4.8" />
<PackageReference Include="NServiceBus.Interfaces" Version="4.4.8" />
<PackageReference Include="NServiceBus.SqlServer" Version="1.2.5" />
<ProjectReference Include="..\..\NServiceBus.SqlServer.CompatibilityTests.Common\NServiceBus.SqlServer.CompatibilityTests.Common.csproj" />
</ItemGroup>

<ItemGroup>
<Reference Include="System.Configuration" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="log4net" Version="2.*" />
<PackageReference Include="NServiceBus" Version="4.*" />
<PackageReference Include="NServiceBus.Interfaces" Version="4.*" />
<PackageReference Include="NServiceBus.SqlServer" Version="1.2.*" />
</ItemGroup>

</Project>
7 changes: 0 additions & 7 deletions src/CompatibilityTests/Facade_1.2/packages.config

This file was deleted.

3 changes: 1 addition & 2 deletions src/CompatibilityTests/Facade_2.2/EndpointFacade.cs
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,8 @@ public void Invoke(IncomingContext context, Action next)
{
next();

string intent;

if (context.PhysicalMessage.Headers.TryGetValue(Headers.MessageIntent, out intent) && intent == "Subscribe")
if (context.PhysicalMessage.Headers.TryGetValue(Headers.MessageIntent, out var intent) && intent == "Subscribe")
{
SubscriptionStore.Increment();
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,23 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net452</TargetFramework>
<AssemblyName>Facade</AssemblyName>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="log4net" Version="2.0.0" />
<PackageReference Include="NServiceBus" Version="5.2.14" />
<PackageReference Include="NServiceBus.Log4Net" Version="1.0.0" />
<PackageReference Include="NServiceBus.SqlServer" Version="2.2.4" />
<ProjectReference Include="..\..\NServiceBus.SqlServer.CompatibilityTests.Common\NServiceBus.SqlServer.CompatibilityTests.Common.csproj" />
</ItemGroup>

<ItemGroup>
<Reference Include="System.Configuration" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="log4net" Version="2.*" />
<PackageReference Include="NServiceBus" Version="5.*" />
<PackageReference Include="NServiceBus.Log4Net" Version="1.*" />
<PackageReference Include="NServiceBus.SqlServer" Version="2.2.*" />
</ItemGroup>

</Project>
7 changes: 0 additions & 7 deletions src/CompatibilityTests/Facade_2.2/packages.config

This file was deleted.

3 changes: 1 addition & 2 deletions src/CompatibilityTests/Facade_3.0/EndpointFacade.cs
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,8 @@ class SubscriptionMonitoringBehavior : Behavior<IIncomingPhysicalMessageContext>
public override async Task Invoke(IIncomingPhysicalMessageContext context, Func<Task> next)
{
await next();
string intent;

if (context.Message.Headers.TryGetValue(Headers.MessageIntent, out intent) && intent == "Subscribe")
if (context.Message.Headers.TryGetValue(Headers.MessageIntent, out var intent) && intent == "Subscribe")
{
SubscriptionStore.Increment();
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net452</TargetFramework>
<AssemblyName>Facade</AssemblyName>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="NServiceBus" Version="6.3.1" />
<PackageReference Include="NServiceBus.Callbacks" Version="2.0.0" />
<PackageReference Include="NServiceBus.SqlServer" Version="3.0.2" />
<ProjectReference Include="..\..\NServiceBus.SqlServer.CompatibilityTests.Common\NServiceBus.SqlServer.CompatibilityTests.Common.csproj" />
</ItemGroup>

<ItemGroup>
<Reference Include="System.Configuration" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="NServiceBus" Version="6.*" />
<PackageReference Include="NServiceBus.Callbacks" Version="2.*" />
<PackageReference Include="NServiceBus.SqlServer" Version="3.0.*" />
</ItemGroup>

</Project>
6 changes: 0 additions & 6 deletions src/CompatibilityTests/Facade_3.0/packages.config

This file was deleted.

3 changes: 1 addition & 2 deletions src/CompatibilityTests/Facade_3.1/EndpointFacade.cs
Original file line number Diff line number Diff line change
Expand Up @@ -197,9 +197,8 @@ class SubscriptionMonitoringBehavior : Behavior<IIncomingPhysicalMessageContext>
public override async Task Invoke(IIncomingPhysicalMessageContext context, Func<Task> next)
{
await next();
string intent;

if (context.Message.Headers.TryGetValue(Headers.MessageIntent, out intent) && intent == "Subscribe")
if (context.Message.Headers.TryGetValue(Headers.MessageIntent, out var intent) && intent == "Subscribe")
{
SubscriptionStore.Increment();
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net452</TargetFramework>
<AssemblyName>Facade</AssemblyName>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="NServiceBus" Version="6.3.1" />
<PackageReference Include="NServiceBus.Callbacks" Version="2.0.0" />
<ProjectReference Include="..\..\NServiceBus.SqlServer.CompatibilityTests.Common\NServiceBus.SqlServer.CompatibilityTests.Common.csproj" />
<ProjectReference Include="..\..\NServiceBus.SqlServer\NServiceBus.SqlServer.csproj" />
</ItemGroup>

<ItemGroup>
<Reference Include="System.Configuration" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="NServiceBus" Version="6.*" />
<PackageReference Include="NServiceBus.Callbacks" Version="2.*" />
<PackageReference Include="NServiceBus.SqlServer" Version="3.1.*" />
</ItemGroup>

</Project>
5 changes: 0 additions & 5 deletions src/CompatibilityTests/Facade_3.1/packages.config

This file was deleted.

8 changes: 8 additions & 0 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<Project>

<PropertyGroup>
<LangVersion>latest</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>

</Project>

This file was deleted.

This file was deleted.

Loading

0 comments on commit 1aa1d48

Please sign in to comment.