Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Added wiring for the global.asax.cs to docs.
  • Loading branch information
hatdragon committed Apr 17, 2014
1 parent 9e552d2 commit 454e516
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,5 +93,14 @@ Once it has the list of assemblies matching this pattern, it will attempt to fin
```


After you have all of the plumbing in place, just add the following to the global.asax.cs
```
protected void Application_Start(object sender, EventArgs e)
{
//register all of our available services
new MyAppHostBase().Init();
}
```

That's pretty much it. Take a look at the TestService classes for examples of how to make this work.

0 comments on commit 454e516

Please sign in to comment.