Got the sql and file system unit tests running

Made the ApplicationUserDataPath a static
This commit is contained in:
Lars Brubaker 2015-08-21 11:04:27 -07:00
parent bbc9a7afff
commit d1a26eb2a1
12 changed files with 71 additions and 26 deletions

View file

@ -178,7 +178,7 @@ namespace MatterHackers.MatterControl
if (StaticData.Instance.FileExists(infPathAndFileToInstall))
{
// Ensure the output directory exists
string destTempPath = Path.GetFullPath(Path.Combine(ApplicationDataStorage.Instance.ApplicationUserDataPath, "data", "temp", "inf", pathForInf));
string destTempPath = Path.GetFullPath(Path.Combine(ApplicationDataStorage.ApplicationUserDataPath, "data", "temp", "inf", pathForInf));
if (!Directory.Exists(destTempPath))
{
Directory.CreateDirectory(destTempPath);