diff --git a/src/Umbraco.Core/Umbraco.Core.csproj b/src/Umbraco.Core/Umbraco.Core.csproj
index 37cebc99a1..69ff94e482 100755
--- a/src/Umbraco.Core/Umbraco.Core.csproj
+++ b/src/Umbraco.Core/Umbraco.Core.csproj
@@ -91,7 +91,7 @@
-
+
2.8.0
diff --git a/src/Umbraco.Examine/Umbraco.Examine.csproj b/src/Umbraco.Examine/Umbraco.Examine.csproj
index 0e0ee62139..55ed24b3e8 100644
--- a/src/Umbraco.Examine/Umbraco.Examine.csproj
+++ b/src/Umbraco.Examine/Umbraco.Examine.csproj
@@ -56,7 +56,7 @@
all
-
+
3.3.0
runtime; build; native; contentfiles; analyzers
diff --git a/src/Umbraco.Tests/Testing/TestDatabase.cs b/src/Umbraco.Tests/Testing/TestDatabase.cs
index b1ddbd08d4..7567f2a5fa 100644
--- a/src/Umbraco.Tests/Testing/TestDatabase.cs
+++ b/src/Umbraco.Tests/Testing/TestDatabase.cs
@@ -266,6 +266,26 @@ namespace Umbraco.Tests.Testing
throw new NotImplementedException();
}
+ public Task InsertBatchAsync(IEnumerable pocos, BatchOptions options = null)
+ {
+ throw new NotImplementedException();
+ }
+
+ public Task UpdateBatchAsync(IEnumerable> pocos, BatchOptions options = null)
+ {
+ throw new NotImplementedException();
+ }
+
+ public IAsyncUpdateQueryProvider UpdateManyAsync()
+ {
+ throw new NotImplementedException();
+ }
+
+ public int UpdateBatch(IEnumerable> pocos, BatchOptions options = null)
+ {
+ throw new NotImplementedException();
+ }
+
public int Update(string tableName, string primaryKeyName, object poco, object primaryKeyValue)
{
throw new NotImplementedException();
@@ -361,6 +381,11 @@ namespace Umbraco.Tests.Testing
throw new NotImplementedException();
}
+ public IAsyncDeleteQueryProvider DeleteManyAsync()
+ {
+ throw new NotImplementedException();
+ }
+
public void Save(T poco)
{
throw new NotImplementedException();
@@ -748,12 +773,21 @@ namespace Umbraco.Tests.Testing
#endregion
#region Stuff
-
public void BuildPageQueries(long skip, long take, string sql, ref object[] args, out string sqlCount, out string sqlPage)
{
throw new NotImplementedException();
}
+ public IAsyncQueryProviderWithIncludes QueryAsync()
+ {
+ throw new NotImplementedException();
+ }
+
+ int IDatabase.InsertBatch(IEnumerable pocos, BatchOptions options)
+ {
+ throw new NotImplementedException();
+ }
+
#endregion
}
}
diff --git a/src/Umbraco.Tests/Umbraco.Tests.csproj b/src/Umbraco.Tests/Umbraco.Tests.csproj
index 2ac28aa7d7..a797c3c1c8 100644
--- a/src/Umbraco.Tests/Umbraco.Tests.csproj
+++ b/src/Umbraco.Tests/Umbraco.Tests.csproj
@@ -101,7 +101,7 @@
-
+
diff --git a/src/Umbraco.Web/Umbraco.Web.csproj b/src/Umbraco.Web/Umbraco.Web.csproj
index 1f8d4d7881..cd29935666 100644
--- a/src/Umbraco.Web/Umbraco.Web.csproj
+++ b/src/Umbraco.Web/Umbraco.Web.csproj
@@ -91,7 +91,7 @@
-
+
3.3.0
runtime; build; native; contentfiles; analyzers