Skip to content

Commit a119b3d

Browse files
committed
Update
1 parent 993e157 commit a119b3d

File tree

10 files changed

+8
-9
lines changed

10 files changed

+8
-9
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [3.3.1] - 2020-02-08
8+
9+
### Changed
10+
- Re-implement ASP.NET Web API IDependencyScope. See sample applications please.
11+
712
## [3.3.0]
813

914
### Removed

Nuget.Config

Lines changed: 0 additions & 6 deletions
This file was deleted.

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ artifacts:
3636
deploy:
3737
provider: NuGet
3838
api_key:
39-
secure: Sn05A/FiUAlID5v31uaf5EZuYCSo4frLONtrCY+cwY265dU2JUZsl2+sjVeLQyz/
39+
secure: ObZpjlJ2soInYT4Ooi+u2KeQQ1LRsBbRA9uPU7ctOma7CZxxNN8hPUVjwFUY2wS1
4040
on:
4141
appveyor_repo_tag: true
-10.1 KB
Binary file not shown.
-7.19 KB
Binary file not shown.
-9.3 KB
Binary file not shown.
-9.51 KB
Binary file not shown.
-8.06 KB
Binary file not shown.

src/Owin-SampleApplication/Startup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public class Startup
4242
/// </param>
4343
public void Configuration(IAppBuilder app)
4444
{
45-
app.UseNinjectMiddleware(CreateKernel);
45+
app.UseNinject(CreateKernel);
4646
app.UseWebApi(GlobalConfiguration.Configuration);
4747
}
4848

src/OwinSelfHosted-SampleApplication/Startup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public void Configuration(IAppBuilder app)
4747
routeTemplate: "{controller}/{id}",
4848
defaults: new { id = RouteParameter.Optional, controller = "values" });
4949

50-
app.UseNinjectMiddleware(CreateKernel);
50+
app.UseNinject(CreateKernel);
5151
app.UseNinjectWebApi(configuration);
5252
}
5353

0 commit comments

Comments
 (0)