Fixed list layout in Android

This commit is contained in:
Fergal Moran
2017-12-16 03:47:39 +00:00
parent faf24810a0
commit bec4db64cf
6 changed files with 113 additions and 59 deletions

View File

@@ -17,6 +17,7 @@ namespace PodNoms.Api {
public static IWebHost BuildWebHost (string[] args) =>
WebHost.CreateDefaultBuilder (args)
.UseStartup<Startup> ()
.UseUrls ("http://*:5000")
.UseKestrel (options => {
options.Limits.MaxRequestBodySize = 1073741824;
})