Make SystemDirectories.Bin non configurable, as the comment mentioned you cannot configure the bin folder for ASP.NET projects

This commit is contained in:
Warren Buckley
2018-10-23 10:53:22 +01:00
parent 3e4ecac4e3
commit 0e51b45e64

View File

@@ -6,8 +6,7 @@ namespace Umbraco.Core.IO
//all paths has a starting but no trailing /
public class SystemDirectories
{
//TODO: Why on earth is this even configurable? You cannot change the /Bin folder in ASP.Net
public static string Bin => IOHelper.ReturnPath("umbracoBinDirectory", "~/bin");
public static string Bin => "~/bin";
public static string Config => IOHelper.ReturnPath("umbracoConfigDirectory", "~/config");