Work items: 29846

This commit is contained in:
hartvig
2011-01-11 07:20:03 -01:00
parent babf5dabe2
commit 792450328d

View File

@@ -61,7 +61,10 @@ namespace umbraco.presentation.install.steps
{
get {
// check if sql ce is present
if (!File.Exists(IOHelper.MapPath(Path.Combine(IOHelper.ResolveUrl(SystemDirectories.Bin), "System.Data.SqlServerCe.dll"))))
if (
!File.Exists(IOHelper.MapPath(Path.Combine(IOHelper.ResolveUrl(SystemDirectories.Bin), "System.Data.SqlServerCe.dll"))) ||
!File.Exists(IOHelper.MapPath(Path.Combine(IOHelper.ResolveUrl(SystemDirectories.Bin), "SQLCE4Umbraco.dll")))
)
return false;
else
return true;