Reputation: 1053
Using a Azure Mobile Server project (not services), how do I replace the default blue home page of the app? (the one with "This mobile service is up and running")
I'm talking this kind of app: https://azure.microsoft.com/blog/2015/07/17/updates-to-the-mobile-apps-server-sdk/
I tried this package: https://www.nuget.org/packages/Microsoft.Azure.Mobile.Server.Home/, but there's is no documentation at all.
I'm trying to get a project that can run Web API, Azure Mobile Server and default Controllers all together.
Upvotes: 4
Views: 1027
Reputation: 3479
This blogpost might be a hint.
It details how to config the Mobile App and mentions a extension method AddMobileAppHomeController()
that appears to be part of the UseDefaultConfiguration()
method.
I guess you can eliminate this from you configuration and a
Upvotes: 4