Save Copy - sql or json

CA1862 and GetWeekOfYear for WritePDSF
Removed Open Insight API IFX Directory from Save
v2_52_0-Tests
net8.0
This commit is contained in:
2024-02-01 14:34:59 -07:00
parent 839a08eda7
commit ee7be147e0
75 changed files with 1633 additions and 292 deletions

View File

@ -2,7 +2,6 @@ using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Text.Json;
@ -74,7 +73,7 @@ public class UnitTesting
if (string.IsNullOrEmpty(result))
break;
checkFiles = Directory.GetFiles(result, "*.Tests.*proj", SearchOption.TopDirectoryOnly);
if (checkFiles.Any())
if (checkFiles.Length != 0)
break;
result = Path.GetDirectoryName(result);
}