I'm struggling getting a project setup to host only web api an owin. The goal is to deploy to IIS.
I've tried the following: http://www.asp.net/aspnet/overview/owin-and-katana/getting-started-with-owin-and-katana
In the end, I'm not finding things that work. Plus I'm not understanding what is actually needed. For example, I did much of the following on https://github.com/danesparza/OWIN-WebAPI-Service
- Install-Package Microsoft.AspNet.WebApi.OwinSelfHost
- Created the StartUp.cs file
- Added the assembly attribute pointing to the startup file within the startup file
- Added the valuescontroller for a simple test.
I did not create APIServiceTest which is extended from ServiceBase.
The template for WebApi2 sucks. It always includes MVC. I'd just really like to understand what's need for owin and webapi 2.x
Can anyone help me or point me to something that works within visual studio 2015?
As always, thank you! Kelly