Skip to content

Commit 8e35895

Browse files
committed
Updated to WFE 3.1.0
1 parent 701d01d commit 8e35895

63 files changed

Lines changed: 1037 additions & 857 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Provider for Apache Ignite/DbObject.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public static object ConvertToDbCompatibilityType(object obj)
3232

3333
private static bool IsNullable<T1>(T1 obj)
3434
{
35-
if (obj == null) return true;
35+
if (obj == null) return true; //-V3111
3636
Type type = typeof (T1);
3737
if (!type.IsValueType) return true;
3838
if (Nullable.GetUnderlyingType(type) != null) return true;

Provider for Apache Ignite/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("3.0.0")]
36-
[assembly: AssemblyFileVersion("3.0.0")]
35+
[assembly: AssemblyVersion("3.1.0")]
36+
[assembly: AssemblyFileVersion("3.1.0")]

Provider for MS SQL Server/DbObject.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ public virtual SqlParameter CreateParameter(ColumnInfo c)
231231

232232
private static bool IsNullable<T1>(T1 obj)
233233
{
234-
if (obj == null) return true;
234+
if (obj == null) return true; //-V3111
235235
Type type = typeof (T1);
236236
if (!type.GetTypeInfo().IsValueType) return true;
237237
if (Nullable.GetUnderlyingType(type) != null) return true;

Provider for MS SQL Server/MSSQLProvider.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -796,10 +796,10 @@ private SchemeDefinition<XElement> ConvertToSchemeDefinition(WorkflowProcessSche
796796

797797
public bool IsBulkOperationsSupported
798798
{
799-
#if NETCOREAPP
800-
get { return false; }
801-
#else
799+
#if !NETCOREAPP || NETCORE2
802800
get { return true; }
801+
#else
802+
get { return false; }
803803
#endif
804804
}
805805

@@ -810,7 +810,7 @@ public async Task BulkInitProcesses(List<ProcessInstance> instances, ProcessStat
810810

811811
public async Task BulkInitProcesses(List<ProcessInstance> instances, List<TimerToRegister> timers, ProcessStatus status, CancellationToken token)
812812
{
813-
#if NETCOREAPP
813+
#if NETCOREAPP && !NETCORE2
814814
throw new NotImplementedException();
815815
#else
816816
if (token.IsCancellationRequested)

Provider for MS SQL Server/Models/WorkflowProcessInstance.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ public override void SetValue(string key, object value)
129129
}
130130

131131
}
132-
#if !NETCOREAPP
132+
#if !NETCOREAPP || NETCORE2
133133
public static DataTable ToDataTable()
134134
{
135135
var dt = new DataTable();

Provider for MS SQL Server/Models/WorkflowProcessInstancePersistence.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public static int DeleteByProcessId(SqlConnection connection, Guid processId, Sq
8282
string.Format("DELETE FROM {0} WHERE [ProcessId] = @processid", ObjectName), transaction, p);
8383
}
8484

85-
#if !NETCOREAPP
85+
#if !NETCOREAPP || NETCORE2
8686
public static DataTable ToDataTable()
8787
{
8888
var dt = new DataTable();

Provider for MS SQL Server/Models/WorkflowProcessInstanceStatus.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public static int ChangeStatus(SqlConnection connection, WorkflowProcessInstance
8080

8181
return ExecuteCommand(connection, command, p1, p2, p3, p4);
8282
}
83-
#if !NETCOREAPP
83+
#if !NETCOREAPP || NETCORE2
8484
public static DataTable ToDataTable()
8585
{
8686
var dt = new DataTable();

Provider for MS SQL Server/Models/WorkflowProcessTimer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ public static int SetIgnore(SqlConnection connection, WorkflowProcessTimer[] tim
180180

181181
return result;
182182
}
183-
#if !NETCOREAPP
183+
#if !NETCOREAPP || NETCORE2
184184
public static DataTable ToDataTable()
185185
{
186186
var dt = new DataTable();

Provider for MS SQL Server/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("3.0.0")]
36-
[assembly: AssemblyFileVersion("3.0.0")]
35+
[assembly: AssemblyVersion("3.1.0")]
36+
[assembly: AssemblyFileVersion("3.1.0")]

0 commit comments

Comments
 (0)