Skip to content

Instantly share code, notes, and snippets.

@khellang
Created September 16, 2014 08:06
Show Gist options
  • Save khellang/03912342697e45806e55 to your computer and use it in GitHub Desktop.
Save khellang/03912342697e45806e55 to your computer and use it in GitHub Desktop.
public class SelfHostRootPathProvider : IRootPathProvider
{
public string GetRootPath()
{
if (StaticConfiguration.IsRunningDebug)
{
return string.Empty; // TODO: Return source directory
}
return AppDomain.CurrentDomain.BaseDirectory;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment