Make sure we can always add to the sql library.

Don't include my machines dirs (again)
Make the ProviderKey for sql available statically
This commit is contained in:
Lars Brubaker 2015-06-17 17:35:12 -07:00
parent 77c5c3dfb2
commit 3d6ed2b9f8
2 changed files with 15 additions and 3 deletions

View file

@ -95,7 +95,7 @@ namespace MatterHackers.MatterControl.PrintLibrary.Provider
}
}
public override string ProviderKey
public static string StaticProviderKey
{
get
{
@ -103,6 +103,14 @@ namespace MatterHackers.MatterControl.PrintLibrary.Provider
}
}
public override string ProviderKey
{
get
{
return StaticProviderKey;
}
}
public override void AddCollectionToLibrary(string collectionName)
{
throw new NotImplementedException();