added xspf parser

moved files to better namespaces
added example playlistfiles
codereformat
This commit is contained in:
2018-12-16 00:30:31 +01:00
parent 858a694eeb
commit a42814029a
9 changed files with 2312 additions and 18 deletions

View File

@@ -1,11 +1,5 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore;
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
namespace Tv7Playlist
@@ -17,8 +11,9 @@ namespace Tv7Playlist
CreateWebHostBuilder(args).Build().Run();
}
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
WebHost.CreateDefaultBuilder(args)
public static IWebHostBuilder CreateWebHostBuilder(string[] args)
{
return WebHost.CreateDefaultBuilder(args)
.ConfigureLogging((hostingContext, logging) =>
{
logging.AddConfiguration(hostingContext.Configuration.GetSection("Logging"));
@@ -26,5 +21,6 @@ namespace Tv7Playlist
logging.AddDebug();
})
.UseStartup<Startup>();
}
}
}
}