Skip to content

Commit

Permalink
Merge branch 'hotfix-4.6.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed May 2, 2014
2 parents c4093eb + f74c3db commit 46a05f6
Show file tree
Hide file tree
Showing 14 changed files with 40 additions and 18 deletions.
2 changes: 1 addition & 1 deletion ripple.config
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
</Nugets>
<Groups />
<References>
<IgnoreAssemblies />
<IgnoreAssemblies />
</References>
<Nuspecs>
<Nuspec File="nservicebus.acceptancetesting.nuspec" Project="nservicebus.acceptancetesting" />
Expand Down
7 changes: 4 additions & 3 deletions src/NServiceBus.Core/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
using System.Reflection;
using System;
using System.Reflection;
using System.Runtime.InteropServices;

[assembly: AssemblyTitle("NServiceBus.Core")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyCopyright("Copyright 2010-2014 NServiceBus. All rights reserved")]
[assembly: AssemblyProduct("NServiceBus.Core")]
[assembly: AssemblyCompany("NServiceBus Ltd.")]
[assembly: ComVisible(false)]
[assembly: ComVisible(false)]
[assembly: CLSCompliant(true)]
4 changes: 3 additions & 1 deletion src/NServiceBus.Hosting.Windows/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Reflection;
using System;
using System.Reflection;
using System.Runtime.InteropServices;

[assembly: AssemblyTitle("Generic Host Process for NServiceBus")]
Expand All @@ -7,3 +8,4 @@
[assembly: AssemblyProduct("NServiceBus")]
[assembly: AssemblyCompany("NServiceBus Ltd.")]
[assembly: ComVisible(false)]
[assembly: CLSCompliant(true)]
4 changes: 3 additions & 1 deletion src/NServiceBus.Testing/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Reflection;
using System;
using System.Reflection;
using System.Runtime.InteropServices;

[assembly: AssemblyTitle("NServiceBus Testing")]
Expand All @@ -7,3 +8,4 @@
[assembly: AssemblyProduct("NServiceBus")]
[assembly: AssemblyCompany("NServiceBus Ltd.")]
[assembly: ComVisible(false)]
[assembly: CLSCompliant(true)]
4 changes: 2 additions & 2 deletions src/NServiceBus/NServiceBus.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<DocumentationFile>..\..\binaries\NServiceBus.XML</DocumentationFile>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>1591,1573</NoWarn>
<NoWarn>1591</NoWarn>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
Expand All @@ -38,7 +38,7 @@
<WarningLevel>4</WarningLevel>
<DocumentationFile>..\..\binaries\NServiceBus.XML</DocumentationFile>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<NoWarn>1591,1573</NoWarn>
<NoWarn>1591</NoWarn>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
Expand Down
6 changes: 4 additions & 2 deletions src/NServiceBus/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
using System.Reflection;
using System;
using System.Reflection;
using System.Runtime.InteropServices;

[assembly: AssemblyTitle("NServiceBus Core")]
[assembly: AssemblyDescription("Enterprise application framework for publish/subscribe and long-running business processes.")]
[assembly: AssemblyCopyright("Copyright 2010-2014 NServiceBus. All rights reserved")]
[assembly: AssemblyProduct("NServiceBus")]
[assembly: AssemblyCompany("NServiceBus Ltd.")]
[assembly: ComVisible(false)]
[assembly: ComVisible(false)]
[assembly: CLSCompliant(true)]
4 changes: 3 additions & 1 deletion src/ObjectBuilder.Autofac/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Reflection;
using System;
using System.Reflection;
using System.Runtime.InteropServices;

[assembly: AssemblyTitle("NServiceBus Container Autofac Implementation")]
Expand All @@ -7,3 +8,4 @@
[assembly: AssemblyProduct("NServiceBus")]
[assembly: AssemblyCompany("NServiceBus Ltd.")]
[assembly: ComVisible(false)]
[assembly: CLSCompliant(true)]
6 changes: 4 additions & 2 deletions src/ObjectBuilder.CastleWindsor/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
using System.Reflection;
using System;
using System.Reflection;
using System.Runtime.InteropServices;

[assembly: AssemblyTitle("NServiceBus Object Builder Castle Implementation")]
[assembly: AssemblyDescription("Implementation of object building functionality on top of Castle Windsor.")]
[assembly: AssemblyCopyright("Copyright 2010-2014 NServiceBus. All rights reserved")]
[assembly: AssemblyProduct("NServiceBus")]
[assembly: AssemblyCompany("NServiceBus Ltd.")]
[assembly: ComVisible(false)]
[assembly: ComVisible(false)]
[assembly: CLSCompliant(true)]
4 changes: 3 additions & 1 deletion src/ObjectBuilder.Ninject/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Reflection;
using System;
using System.Reflection;
using System.Runtime.InteropServices;

[assembly: AssemblyTitle("NServiceBus Object Builder Ninject Implementation")]
Expand All @@ -7,3 +8,4 @@
[assembly: AssemblyProduct("NServiceBus")]
[assembly: AssemblyCompany("NServiceBus Ltd.")]
[assembly: ComVisible(false)]
[assembly: CLSCompliant(true)]
2 changes: 2 additions & 0 deletions src/ObjectBuilder.Spring/ConfigureSpringBuilder.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
namespace NServiceBus
{
using System;
using ObjectBuilder.Common.Config;
using ObjectBuilder.Spring;
using Spring.Context.Support;
Expand All @@ -22,6 +23,7 @@ public static Configure SpringFrameworkBuilder(this Configure config)
/// <summary>
/// Use the Spring Framework as the container with the initialized application context
/// </summary>
[CLSCompliant(false)]
public static Configure SpringFrameworkBuilder(this Configure config,GenericApplicationContext applicationContext)
{
ConfigureCommon.With(config, new SpringObjectBuilder(applicationContext));
Expand Down
6 changes: 4 additions & 2 deletions src/ObjectBuilder.Spring/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
using System.Reflection;
using System;
using System.Reflection;
using System.Runtime.InteropServices;

[assembly: AssemblyTitle("NServiceBus Object Builder Spring Implementation")]
[assembly: AssemblyDescription("Implementation of object building functionality on top of the Spring Framework.")]
[assembly: AssemblyCopyright("Copyright 2010-2014 NServiceBus. All rights reserved")]
[assembly: AssemblyProduct("NServiceBus")]
[assembly: AssemblyCompany("NServiceBus Ltd.")]
[assembly: ComVisible(false)]
[assembly: ComVisible(false)]
[assembly: CLSCompliant(true)]

1 change: 1 addition & 0 deletions src/ObjectBuilder.Spring/SpringObjectBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ public SpringObjectBuilder() : this(new GenericApplicationContext())
/// <summary>
/// Instantiates the builder using the given container.
/// </summary>
[CLSCompliant(false)]
public SpringObjectBuilder(GenericApplicationContext context)
{
this.context = context;
Expand Down
4 changes: 3 additions & 1 deletion src/ObjectBuilder.StructureMap/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Reflection;
using System;
using System.Reflection;
using System.Runtime.InteropServices;

[assembly: AssemblyTitle("NServiceBus Container StructureMap Implementation")]
Expand All @@ -7,3 +8,4 @@
[assembly: AssemblyProduct("NServiceBus")]
[assembly: AssemblyCompany("NServiceBus Ltd.")]
[assembly: ComVisible(false)]
[assembly: CLSCompliant(true)]
4 changes: 3 additions & 1 deletion src/ObjectBuilder.Unity/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Reflection;
using System;
using System.Reflection;
using System.Runtime.InteropServices;

[assembly: AssemblyTitle("NServiceBus Container Unity Implementation")]
Expand All @@ -7,3 +8,4 @@
[assembly: AssemblyProduct("NServiceBus")]
[assembly: AssemblyCompany("NServiceBus Ltd.")]
[assembly: ComVisible(false)]
[assembly: CLSCompliant(true)]

0 comments on commit 46a05f6

Please sign in to comment.