diff --git a/src/EFTools/EntityDesign/EntityDesign.csproj b/src/EFTools/EntityDesign/EntityDesign.csproj
index 9c3150f689..1a65a8db41 100644
--- a/src/EFTools/EntityDesign/EntityDesign.csproj
+++ b/src/EFTools/EntityDesign/EntityDesign.csproj
@@ -71,6 +71,7 @@
+
diff --git a/src/EFTools/EntityDesign/VisualStudio/ExecutorWrapper.cs b/src/EFTools/EntityDesign/VisualStudio/ExecutorWrapper.cs
index 6a21ab6b32..cefe5223f0 100644
--- a/src/EFTools/EntityDesign/VisualStudio/ExecutorWrapper.cs
+++ b/src/EFTools/EntityDesign/VisualStudio/ExecutorWrapper.cs
@@ -61,16 +61,7 @@ public string GetProviderServices(string invariantName)
{
Debug.Assert(!string.IsNullOrWhiteSpace(invariantName), "invariantName is null or empty.");
- string providerServicesTypeName = null;
- try
- {
- providerServicesTypeName = Invoke("GetProviderServices", new[] { invariantName });
- }
- catch
- {
- }
-
- return providerServicesTypeName;
+ return Invoke("GetProviderServices", new[] { invariantName });
}
private TResult Invoke(string operation, IEnumerable