File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 2
2
<package xmlns =" http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd" >
3
3
<metadata >
4
4
<id >ScriptCs.WebApi2</id >
5
- <version >1.0 </version >
5
+ <version >$version$ </version >
6
6
<title >ScriptCs.WebApi2</title >
7
7
<authors >Glenn Block</authors >
8
8
<owners >Glenn Block</owners >
16
16
* The host is wired up to discover in-memory controllers.</description >
17
17
<summary />
18
18
<releaseNotes >1.0 - Updated to Web API 2.2
19
- 0.5.0 - Added support for additional hosts and helper methods for formatters and handlers.
20
19
</releaseNotes >
21
20
<copyright >Copyright Glenn Block 2014</copyright >
22
21
<tags >scriptcs webapi owin</tags >
Original file line number Diff line number Diff line change 20
20
namespace ScriptCs . WebApi
21
21
{
22
22
/// <summary>
23
- /// Creates a web api either as a self hosetd server of a OWIN middleware component
23
+ /// Creates a web api using an OWIN host
24
24
/// </summary>
25
25
public class WebApi : IScriptPackContext
26
26
{
@@ -98,7 +98,6 @@ public IDisposable Start(string baseAddress)
98
98
return WebApp . Start ( baseAddress , appBuilder =>
99
99
{
100
100
appBuilder . UseWebApi ( _config ) ;
101
-
102
101
ApplyDefaultConfiguration ( _config , _controllerTypes ) ;
103
102
_startupAction ( appBuilder ) ;
104
103
} ) ;
You can’t perform that action at this time.
0 commit comments