housekeeping

This commit is contained in:
chris.watts90@outlook.com 2017-06-26 21:28:15 +01:00
parent 610a69a18e
commit 80894ffe0d
5 changed files with 8 additions and 11 deletions

View File

@ -1,4 +1,5 @@
using Nancy;
using Interfaces;
using Nancy;
namespace RaceLapTimer.ApiControllers
{

View File

@ -1,4 +1,5 @@
using Nancy;
using Interfaces;
using Nancy;
namespace RaceLapTimer.ApiControllers
{

View File

@ -1,4 +1,5 @@
using Nancy;
using Interfaces;
using Nancy;
namespace RaceLapTimer.ApiControllers
{

View File

@ -7,12 +7,6 @@ namespace RaceLapTimer
{
class ConfigFilePathProvider : IConfigFilePathProvider
{
public string GetPath
{
get
{
return new Uri(Path.Combine(Path.GetDirectoryName(Assembly.GetEntryAssembly().CodeBase), "Configs")).LocalPath;
}
}
public string GetPath => new Uri(Path.Combine(Path.GetDirectoryName(Assembly.GetEntryAssembly().CodeBase), "Configs")).LocalPath;
}
}