Skip to content

Commit 07cf03d

Browse files
committed
update packages; StyleCop compliance
1 parent 59dd45d commit 07cf03d

11 files changed

Lines changed: 15 additions & 15 deletions

src/Ninject.Web.Common.Owin/Ninject.Web.Common.Owin.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737

3838
<ItemGroup>
3939
<PackageReference Include="Owin" Version="1.0.0" />
40-
<PackageReference Include="Microsoft.Owin" Version="3.1.0" />
41-
<PackageReference Include="StyleCop.Analyzers" Version="1.1.0-beta004">
40+
<PackageReference Include="Microsoft.Owin" Version="4.1.0" />
41+
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
4242
<PrivateAssets>All</PrivateAssets>
4343
</PackageReference>
4444
</ItemGroup>

src/Ninject.Web.Common.SelfHost/Ninject.Web.Common.SelfHost.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
</ItemGroup>
3737

3838
<ItemGroup>
39-
<PackageReference Include="StyleCop.Analyzers" Version="1.1.0-beta004">
39+
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
4040
<PrivateAssets>All</PrivateAssets>
4141
</PackageReference>
4242
</ItemGroup>

src/Ninject.Web.Common.SelfHost/NinjectSelfHostBootstrapper.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ namespace Ninject.Web.Common.SelfHost
2626
using Ninject.Web.Common;
2727

2828
/// <summary>
29-
/// Self hosting bootstrapper
29+
/// Self hosting bootstrapper.
3030
/// </summary>
3131
public class NinjectSelfHostBootstrapper : IDisposable
3232
{
3333
/// <summary>
34-
/// The web common default bootstrapper
34+
/// The web common default bootstrapper.
3535
/// </summary>
3636
private readonly IBootstrapper bootstrapper = new Bootstrapper();
3737

src/Ninject.Web.Common.WebHost/HttpApplicationInitializationHttpModule.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ namespace Ninject.Web.Common
2727
using Ninject.Infrastructure.Disposal;
2828

2929
/// <summary>
30-
/// Initializes a <see cref="HttpApplication"/> instance
30+
/// Initializes a <see cref="HttpApplication"/> instance.
3131
/// </summary>
3232
public class HttpApplicationInitializationHttpModule : DisposableObject, IHttpModule
3333
{
@@ -45,7 +45,7 @@ public HttpApplicationInitializationHttpModule(Func<IKernel> lazyKernel)
4545
/// <summary>
4646
/// Initializes a module and prepares it to handle requests.
4747
/// </summary>
48-
/// <param name="context">An <see cref="T:System.Web.HttpApplication"/> that provides access to the methods, properties, and events common to all application objects within an ASP.NET application</param>
48+
/// <param name="context">An <see cref="T:System.Web.HttpApplication"/> that provides access to the methods, properties, and events common to all application objects within an ASP.NET application.</param>
4949
public void Init(HttpApplication context)
5050
{
5151
this.lazyKernel().Inject(context);

src/Ninject.Web.Common.WebHost/Ninject.Web.Common.WebHost.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545

4646
<ItemGroup>
4747
<Reference Include="System.Web" />
48-
<PackageReference Include="StyleCop.Analyzers" Version="1.1.0-beta004">
48+
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
4949
<PrivateAssets>All</PrivateAssets>
5050
</PackageReference>
5151
<PackageReference Include="WebActivatorEx" Version="2.2.0" />

src/Ninject.Web.Common.WebHost/NinjectHttpApplication.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ namespace Ninject.Web.Common.WebHost
3232
public abstract class NinjectHttpApplication : HttpApplication, IHaveKernel
3333
{
3434
/// <summary>
35-
/// The one per request module to release request scope at the end of the request
35+
/// The one per request module to release request scope at the end of the request.
3636
/// </summary>
3737
private readonly OnePerRequestHttpModule onePerRequestHttpModule;
3838

src/Ninject.Web.Common.Xml/Ninject.Web.Common.Xml.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
<ItemGroup>
3939
<PackageReference Include="Ninject.Extensions.Xml" Version="3.3.0" />
40-
<PackageReference Include="StyleCop.Analyzers" Version="1.1.0-beta004">
40+
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
4141
<PrivateAssets>All</PrivateAssets>
4242
</PackageReference>
4343
</ItemGroup>

src/Ninject.Web.Common.Xml/WebCommonXmlModule.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace Ninject.Web.Common.Xml
2525
using Ninject.Modules;
2626

2727
/// <summary>
28-
/// Ninject module for Ninject.Web.Common.Xml
28+
/// Ninject module for Ninject.Web.Common.Xml.
2929
/// </summary>
3030
public class WebCommonXmlModule : NinjectModule
3131
{

src/Ninject.Web.Common/Bootstrapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ namespace Ninject.Web.Common
3131
public class Bootstrapper : IBootstrapper
3232
{
3333
/// <summary>
34-
/// The ninject kernel of the application
34+
/// The ninject kernel of the application.
3535
/// </summary>
3636
private static IKernel kernelInstance;
3737

src/Ninject.Web.Common/INinjectHttpApplicationPlugin.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace Ninject.Web.Common
2525
using Ninject.Components;
2626

2727
/// <summary>
28-
/// Interface for the plugins of Ninject.Web.Common
28+
/// Interface for the plugins of Ninject.Web.Common.
2929
/// </summary>
3030
public interface INinjectHttpApplicationPlugin : INinjectComponent
3131
{

0 commit comments

Comments
 (0)