Tidied up using clauses
This commit is contained in:
parent
99133c1659
commit
ae2f08d4ba
@ -1,6 +1,5 @@
|
||||
using eSuite.API.Middleware;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.Extensions.Primitives;
|
||||
using Moq;
|
||||
using NUnit.Framework;
|
||||
|
||||
|
||||
@ -6,7 +6,6 @@ using Microsoft.AspNetCore.Mvc;
|
||||
using System.Security.Claims;
|
||||
using Microsoft.AspNetCore.Authorization;
|
||||
using Autofac;
|
||||
using Autofac.Core.Lifetime;
|
||||
|
||||
namespace eSuite.API.Middleware;
|
||||
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
using System;
|
||||
using System.Text.Json.Serialization;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace eSuite.Core.Miscellaneous;
|
||||
|
||||
|
||||
@ -2,7 +2,6 @@
|
||||
using e_suite.Database.Audit.UnitTests.Helpers;
|
||||
using e_suite.Database.Audit.UnitTests.Helpers.Tables;
|
||||
using NUnit.Framework;
|
||||
using NUnit.Framework.Constraints;
|
||||
|
||||
namespace e_suite.Database.Audit.UnitTests.AuditEngineCore;
|
||||
|
||||
|
||||
@ -1,7 +1,6 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using e_suite.Database.Audit.Attributes;
|
||||
using e_suite.Database.Audit.AuditEngine;
|
||||
using e_suite.Database.Audit.Models;
|
||||
|
||||
namespace e_suite.Database.Audit.UnitTests.Helpers.Tables;
|
||||
|
||||
@ -1,6 +1,4 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Threading;
|
||||
using e_suite.Database.Audit.AuditEngine;
|
||||
using e_suite.Database.Audit.AuditEngine;
|
||||
using e_suite.Database.Audit.Extensions;
|
||||
using e_suite.Database.Audit.Tables.Audit;
|
||||
using eSuite.Core.Clock;
|
||||
|
||||
@ -4,7 +4,6 @@ using e_suite.API.Common;
|
||||
using e_suite.MessageProcessor.Handlers;
|
||||
using e_suite.Messaging.Common;
|
||||
using e_suite.Messaging.Common.models;
|
||||
using e_suite.Modules.UserManager;
|
||||
using e_suite.Service.Sentinel;
|
||||
using e_suite.UnitTestCore;
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
||||
@ -4,7 +4,6 @@ using e_suite.API.Common;
|
||||
using e_suite.MessageProcessor.Handlers;
|
||||
using e_suite.Messaging.Common;
|
||||
using e_suite.Messaging.Common.models;
|
||||
using e_suite.Modules.UserManager;
|
||||
using e_suite.Service.Sentinel;
|
||||
using e_suite.UnitTestCore;
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
||||
@ -10,7 +10,7 @@ using Microsoft.Extensions.Logging;
|
||||
namespace e_suite.MessageProcessor.DependencyInjection;
|
||||
|
||||
/// <summary>
|
||||
/// Used as a the primary location for IOC type registration for e-suite.
|
||||
/// Used as the primary location for IOC type registration for e-suite.
|
||||
/// </summary>
|
||||
public class CoreRegistrationModule : Module
|
||||
{
|
||||
|
||||
@ -1,7 +1,6 @@
|
||||
using e_suite.API.Common;
|
||||
using RabbitMQ.Client.Events;
|
||||
using e_suite.Messaging.Common.models;
|
||||
using e_suite.Modules.UserManager;
|
||||
using e_suite.Service.Sentinel;
|
||||
using eSuite.Core.Clock;
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
||||
@ -1,6 +1,4 @@
|
||||
using System.Net;
|
||||
using System.Text;
|
||||
using e_suite.API.Common.extensions;
|
||||
using e_suite.API.Common.extensions;
|
||||
using e_suite.MessageProcessor.Handlers;
|
||||
using RabbitMQ.Client.Events;
|
||||
using RabbitMQ.Client;
|
||||
@ -10,7 +8,6 @@ using Microsoft.Extensions.Hosting;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using e_suite.MessageProcessor.Extensions;
|
||||
using e_suite.API.Common;
|
||||
using System.Collections;
|
||||
using Autofac;
|
||||
|
||||
namespace e_suite.MessageProcessor.QueueProcessor;
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
using e_suite.Database.Core.Tables.Forms;
|
||||
using e_suite.Database.Core.Tables.Glossaries;
|
||||
using e_suite.Database.Core.Tables.Glossaries;
|
||||
|
||||
namespace e_suite.Modules.CustomFieldManagerUnitTests.CustomFieldHelperUnitTests;
|
||||
|
||||
|
||||
@ -1,7 +1,6 @@
|
||||
using e_suite.API.Common.exceptions;
|
||||
using e_suite.API.Common.models;
|
||||
using e_suite.Database.Audit;
|
||||
using e_suite.Database.Core.Tables.Domain;
|
||||
using e_suite.Database.Core.Tables.Glossaries;
|
||||
using eSuite.Core.CustomFields;
|
||||
using Sequence = e_suite.Database.Core.Tables.Sequences.Sequence;
|
||||
|
||||
@ -1,6 +1,5 @@
|
||||
using e_suite.API.Common.exceptions;
|
||||
using e_suite.API.Common.models;
|
||||
using e_suite.Database.Core.Tables.CustomFields;
|
||||
using e_suite.Database.Core.Tables.Forms;
|
||||
using e_suite.Database.Core.Tables.Glossaries;
|
||||
using eSuite.Core.CustomFields;
|
||||
|
||||
@ -1,9 +1,7 @@
|
||||
using e_suite.API.Common.repository;
|
||||
using e_suite.Database.Audit;
|
||||
using e_suite.UnitTestCore;
|
||||
using eSuite.Core.CustomFields;
|
||||
using MockQueryable;
|
||||
using MockQueryable.Moq;
|
||||
|
||||
namespace e_suite.Modules.CustomFieldManagerUnitTests;
|
||||
|
||||
|
||||
@ -1,6 +1,5 @@
|
||||
using e_suite.API.Common.exceptions;
|
||||
using e_suite.API.Common.models;
|
||||
using e_suite.API.Common.repository;
|
||||
using e_suite.Database.Audit;
|
||||
using e_suite.Database.Core.Tables.Domain;
|
||||
using e_suite.Database.Core.Tables.UserManager;
|
||||
|
||||
@ -3,7 +3,6 @@ using e_suite.Database.Audit;
|
||||
using e_suite.Database.Core;
|
||||
using e_suite.Database.Core.Extensions;
|
||||
using e_suite.Database.Core.Tables.Domain;
|
||||
using e_suite.Database.Core.Tables.UserManager;
|
||||
using eSuite.Core.Miscellaneous;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
|
||||
@ -1,14 +1,11 @@
|
||||
using e_suite.API.Common.models;
|
||||
using e_suite.API.Common.repository;
|
||||
using e_suite.API.Common.repository;
|
||||
using e_suite.Database.Audit;
|
||||
using e_suite.Database.Core;
|
||||
using e_suite.Database.Core.Extensions;
|
||||
using e_suite.Database.Core.Helpers;
|
||||
using e_suite.Database.Core.Tables.CustomFields;
|
||||
using e_suite.Database.Core.Tables.Forms;
|
||||
using eSuite.Core.Miscellaneous;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.EntityFrameworkCore.Query;
|
||||
|
||||
namespace e_suite.Modules.FormsManager.Repository;
|
||||
|
||||
|
||||
@ -6,7 +6,6 @@ using e_suite.Database.Core.Tables.Forms;
|
||||
using e_suite.UnitTestCore;
|
||||
using eSuite.Core.Miscellaneous;
|
||||
using MockQueryable;
|
||||
using MockQueryable.Moq;
|
||||
|
||||
namespace e_suite.Modules.FormsManagerUnitTests;
|
||||
|
||||
|
||||
@ -1,9 +1,7 @@
|
||||
using e_suite.API.Common.models;
|
||||
using e_suite.Database.Audit;
|
||||
using e_suite.Database.Audit.AuditEngine;
|
||||
using e_suite.Database.Core.Extensions;
|
||||
using e_suite.Database.Core.Tables.CustomFields;
|
||||
using e_suite.Database.Core.Tables.Glossaries;
|
||||
using eSuite.Core.Miscellaneous;
|
||||
using GlossariesManager.UnitTests.Helpers;
|
||||
using Moq;
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
using System.Collections.ObjectModel;
|
||||
using e_suite.API.Common.exceptions;
|
||||
using e_suite.API.Common.exceptions;
|
||||
using e_suite.API.Common.models;
|
||||
using e_suite.Database.Audit;
|
||||
using e_suite.Database.Core.Tables.Glossaries;
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
using Autofac.Features.Metadata;
|
||||
using e_suite.API.Common.repository;
|
||||
using e_suite.API.Common.repository;
|
||||
using e_suite.Database.Audit;
|
||||
using e_suite.Database.Audit.Models;
|
||||
using e_suite.Database.Core.Extensions;
|
||||
@ -10,8 +9,6 @@ using e_suite.UnitTestCore;
|
||||
using eSuite.Core.CustomFields;
|
||||
using eSuite.Core.Miscellaneous;
|
||||
using MockQueryable;
|
||||
using MockQueryable.Moq;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
|
||||
namespace GlossariesManager.UnitTests.Repository;
|
||||
|
||||
@ -5,7 +5,6 @@ using e_suite.Database.Core.Tables.Printer;
|
||||
using e_suite.UnitTestCore;
|
||||
using eSuite.Core.Miscellaneous;
|
||||
using MockQueryable;
|
||||
using MockQueryable.Moq;
|
||||
|
||||
namespace e_suite.Modules.OrganisationManager.UnitTests.Repository;
|
||||
|
||||
|
||||
@ -14,7 +14,7 @@ using System.Reflection;
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("e-suite.Modules.PerformanceManager")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5aa0151c59e2666c508b96df9e92dabf83e500c9")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("e-suite.Modules.PerformanceManager")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("e-suite.Modules.PerformanceManager")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
@ -1 +1 @@
|
||||
0f662bdafe7384dbd4340094b9eed6c2b3726486e827df695766cc0a48949cea
|
||||
12c891daa1f4ee8300544eebbe3419c23cd5c84b39b050ea981c931e03259df0
|
||||
|
||||
@ -10,7 +10,7 @@ build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = e_suite.Modules.PerformanceManager
|
||||
build_property.ProjectDir = C:\Users\me\OneDrive\Code\Sun\e-suite\e-suite.Modules.PerformanceManager\e-suite.Modules.PerformanceManager\
|
||||
build_property.ProjectDir = C:\Users\me\OneDrive\Code\Gitea\e-suite\e-suite.Backend\e-suite.Modules.PerformanceManager\e-suite.Modules.PerformanceManager\
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.EffectiveAnalysisLevelStyle = 10.0
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@ -1,23 +1,23 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Modules.PerformanceManager\\e-suite.Modules.PerformanceManager\\e-suite.Modules.PerformanceManager.csproj": {}
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Modules.PerformanceManager\\e-suite.Modules.PerformanceManager\\e-suite.Modules.PerformanceManager.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.API.Common\\e-suite.API.Common\\e-suite.API.Common.csproj": {
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.API.Common\\e-suite.API.Common\\e-suite.API.Common.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.API.Common\\e-suite.API.Common\\e-suite.API.Common.csproj",
|
||||
"projectUniqueName": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.API.Common\\e-suite.API.Common\\e-suite.API.Common.csproj",
|
||||
"projectName": "e-suite.API.Common",
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.API.Common\\e-suite.API.Common\\e-suite.API.Common.csproj",
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.API.Common\\e-suite.API.Common\\e-suite.API.Common.csproj",
|
||||
"packagesPath": "C:\\Users\\me\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.API.Common\\e-suite.API.Common\\obj\\",
|
||||
"outputPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.API.Common\\e-suite.API.Common\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\NuGet.Config",
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\NuGet.Config",
|
||||
"C:\\Users\\me\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
@ -33,11 +33,11 @@
|
||||
"net10.0": {
|
||||
"targetAlias": "net10.0",
|
||||
"projectReferences": {
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Database.Core\\e-suite.Database.Core\\e-suite.Database.Core.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Database.Core\\e-suite.Database.Core\\e-suite.Database.Core.csproj"
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Database.Core\\e-suite.Database.Core\\e-suite.Database.Core.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Database.Core\\e-suite.Database.Core\\e-suite.Database.Core.csproj"
|
||||
},
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination.csproj"
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -357,20 +357,20 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj": {
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj",
|
||||
"projectUniqueName": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj",
|
||||
"projectName": "eSuite.Core",
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj",
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj",
|
||||
"packagesPath": "C:\\Users\\me\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Core\\eSuite.Core\\obj\\",
|
||||
"outputPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Core\\eSuite.Core\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\NuGet.Config",
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\NuGet.Config",
|
||||
"C:\\Users\\me\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
@ -707,20 +707,20 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Database.Audit\\e-suite.Database.Audit\\e-suite.Database.Audit.csproj": {
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Database.Audit\\e-suite.Database.Audit\\e-suite.Database.Audit.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Database.Audit\\e-suite.Database.Audit\\e-suite.Database.Audit.csproj",
|
||||
"projectUniqueName": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Database.Audit\\e-suite.Database.Audit\\e-suite.Database.Audit.csproj",
|
||||
"projectName": "e-suite.Database.Audit",
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Database.Audit\\e-suite.Database.Audit\\e-suite.Database.Audit.csproj",
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Database.Audit\\e-suite.Database.Audit\\e-suite.Database.Audit.csproj",
|
||||
"packagesPath": "C:\\Users\\me\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Database.Audit\\e-suite.Database.Audit\\obj\\",
|
||||
"outputPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Database.Audit\\e-suite.Database.Audit\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\NuGet.Config",
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\NuGet.Config",
|
||||
"C:\\Users\\me\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
@ -736,8 +736,8 @@
|
||||
"net10.0": {
|
||||
"targetAlias": "net10.0",
|
||||
"projectReferences": {
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj"
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1068,20 +1068,20 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Database.Core\\e-suite.Database.Core\\e-suite.Database.Core.csproj": {
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Database.Core\\e-suite.Database.Core\\e-suite.Database.Core.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Database.Core\\e-suite.Database.Core\\e-suite.Database.Core.csproj",
|
||||
"projectUniqueName": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Database.Core\\e-suite.Database.Core\\e-suite.Database.Core.csproj",
|
||||
"projectName": "e-suite.Database.Core",
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Database.Core\\e-suite.Database.Core\\e-suite.Database.Core.csproj",
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Database.Core\\e-suite.Database.Core\\e-suite.Database.Core.csproj",
|
||||
"packagesPath": "C:\\Users\\me\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Database.Core\\e-suite.Database.Core\\obj\\",
|
||||
"outputPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Database.Core\\e-suite.Database.Core\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\NuGet.Config",
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\NuGet.Config",
|
||||
"C:\\Users\\me\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
@ -1097,14 +1097,14 @@
|
||||
"net10.0": {
|
||||
"targetAlias": "net10.0",
|
||||
"projectReferences": {
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj"
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj"
|
||||
},
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Database.Audit\\e-suite.Database.Audit\\e-suite.Database.Audit.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Database.Audit\\e-suite.Database.Audit\\e-suite.Database.Audit.csproj"
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Database.Audit\\e-suite.Database.Audit\\e-suite.Database.Audit.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Database.Audit\\e-suite.Database.Audit\\e-suite.Database.Audit.csproj"
|
||||
},
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher.csproj"
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1418,20 +1418,20 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Modules.PerformanceManager\\e-suite.Modules.PerformanceManager\\e-suite.Modules.PerformanceManager.csproj": {
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Modules.PerformanceManager\\e-suite.Modules.PerformanceManager\\e-suite.Modules.PerformanceManager.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Modules.PerformanceManager\\e-suite.Modules.PerformanceManager\\e-suite.Modules.PerformanceManager.csproj",
|
||||
"projectUniqueName": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Modules.PerformanceManager\\e-suite.Modules.PerformanceManager\\e-suite.Modules.PerformanceManager.csproj",
|
||||
"projectName": "e-suite.Modules.PerformanceManager",
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Modules.PerformanceManager\\e-suite.Modules.PerformanceManager\\e-suite.Modules.PerformanceManager.csproj",
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Modules.PerformanceManager\\e-suite.Modules.PerformanceManager\\e-suite.Modules.PerformanceManager.csproj",
|
||||
"packagesPath": "C:\\Users\\me\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Modules.PerformanceManager\\e-suite.Modules.PerformanceManager\\obj\\",
|
||||
"outputPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Modules.PerformanceManager\\e-suite.Modules.PerformanceManager\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\NuGet.Config",
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\NuGet.Config",
|
||||
"C:\\Users\\me\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
@ -1447,11 +1447,11 @@
|
||||
"net10.0": {
|
||||
"targetAlias": "net10.0",
|
||||
"projectReferences": {
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.API.Common\\e-suite.API.Common\\e-suite.API.Common.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.API.Common\\e-suite.API.Common\\e-suite.API.Common.csproj"
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.API.Common\\e-suite.API.Common\\e-suite.API.Common.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.API.Common\\e-suite.API.Common\\e-suite.API.Common.csproj"
|
||||
},
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination.csproj"
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1771,20 +1771,20 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher.csproj": {
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher.csproj",
|
||||
"projectUniqueName": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher.csproj",
|
||||
"projectName": "e_suite.Nuget.PasswordHasher",
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher.csproj",
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher.csproj",
|
||||
"packagesPath": "C:\\Users\\me\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher\\obj\\",
|
||||
"outputPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\NuGet.Config",
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\NuGet.Config",
|
||||
"C:\\Users\\me\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
@ -2254,20 +2254,20 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination.csproj": {
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination.csproj",
|
||||
"projectUniqueName": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination.csproj",
|
||||
"projectName": "e-suite.Utilities.Pagination",
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination.csproj",
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination.csproj",
|
||||
"packagesPath": "C:\\Users\\me\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination\\obj\\",
|
||||
"outputPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\NuGet.Config",
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\NuGet.Config",
|
||||
"C:\\Users\\me\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
|
||||
@ -982,17 +982,17 @@
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Modules.PerformanceManager\\e-suite.Modules.PerformanceManager\\e-suite.Modules.PerformanceManager.csproj",
|
||||
"projectUniqueName": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Modules.PerformanceManager\\e-suite.Modules.PerformanceManager\\e-suite.Modules.PerformanceManager.csproj",
|
||||
"projectName": "e-suite.Modules.PerformanceManager",
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Modules.PerformanceManager\\e-suite.Modules.PerformanceManager\\e-suite.Modules.PerformanceManager.csproj",
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Modules.PerformanceManager\\e-suite.Modules.PerformanceManager\\e-suite.Modules.PerformanceManager.csproj",
|
||||
"packagesPath": "C:\\Users\\me\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Modules.PerformanceManager\\e-suite.Modules.PerformanceManager\\obj\\",
|
||||
"outputPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Modules.PerformanceManager\\e-suite.Modules.PerformanceManager\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\NuGet.Config",
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\NuGet.Config",
|
||||
"C:\\Users\\me\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
@ -1008,11 +1008,11 @@
|
||||
"net10.0": {
|
||||
"targetAlias": "net10.0",
|
||||
"projectReferences": {
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.API.Common\\e-suite.API.Common\\e-suite.API.Common.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.API.Common\\e-suite.API.Common\\e-suite.API.Common.csproj"
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.API.Common\\e-suite.API.Common\\e-suite.API.Common.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.API.Common\\e-suite.API.Common\\e-suite.API.Common.csproj"
|
||||
},
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination.csproj"
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination\\e-suite.Utilities.Pagination.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,8 +1,8 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "lr0GWqPTw4M=",
|
||||
"dgSpecHash": "4f7E/BIy1ic=",
|
||||
"success": true,
|
||||
"projectFilePath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Modules.PerformanceManager\\e-suite.Modules.PerformanceManager\\e-suite.Modules.PerformanceManager.csproj",
|
||||
"projectFilePath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Modules.PerformanceManager\\e-suite.Modules.PerformanceManager\\e-suite.Modules.PerformanceManager.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"C:\\Users\\me\\.nuget\\packages\\autofac\\9.0.0\\autofac.9.0.0.nupkg.sha512",
|
||||
"C:\\Users\\me\\.nuget\\packages\\microsoft.entityframeworkcore\\10.0.2\\microsoft.entityframeworkcore.10.0.2.nupkg.sha512",
|
||||
|
||||
@ -5,7 +5,6 @@ using e_suite.Database.Core.Tables.UserManager;
|
||||
using e_suite.UnitTestCore;
|
||||
using eSuite.Core.Miscellaneous;
|
||||
using MockQueryable;
|
||||
using MockQueryable.Moq;
|
||||
|
||||
namespace SSOManager.UnitTests.Helpers;
|
||||
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
using e_suite.API.Common;
|
||||
using e_suite.API.Common.repository;
|
||||
using e_suite.Database.Audit;
|
||||
using e_suite.UnitTestCore;
|
||||
|
||||
|
||||
@ -1,6 +1,5 @@
|
||||
using e_suite.API.Common.exceptions;
|
||||
using e_suite.Database.Core.Tables.UserManager;
|
||||
using e_suite.Modules.SSOManager.repository;
|
||||
using eSuite.Core.Miscellaneous;
|
||||
using NUnit.Framework;
|
||||
using SSOManager.UnitTests.Helpers;
|
||||
|
||||
@ -5,7 +5,6 @@ using e_suite.Database.Core.Extensions;
|
||||
using eSuite.Core.Miscellaneous;
|
||||
using e_suite.Database.Audit;
|
||||
using MockQueryable;
|
||||
using MockQueryable.Moq;
|
||||
|
||||
namespace SequenceManager.UnitTests.Repository;
|
||||
|
||||
|
||||
@ -5,7 +5,6 @@ using e_suite.Database.Core.Tables.Printer;
|
||||
using e_suite.UnitTestCore;
|
||||
using eSuite.Core.Miscellaneous;
|
||||
using MockQueryable;
|
||||
using MockQueryable.Moq;
|
||||
|
||||
namespace e_suite.Modules.SiteManager.UnitTests.Helpers;
|
||||
|
||||
|
||||
@ -5,7 +5,6 @@ using e_suite.Database.Core.Tables.Printer;
|
||||
using e_suite.UnitTestCore;
|
||||
using eSuite.Core.Miscellaneous;
|
||||
using MockQueryable;
|
||||
using MockQueryable.Moq;
|
||||
|
||||
namespace e_suite.Modules.SiteManager.UnitTests.Helpers;
|
||||
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
using System.Collections.ObjectModel;
|
||||
using e_suite.API.Common.exceptions;
|
||||
using e_suite.API.Common.exceptions;
|
||||
using e_suite.Database.Core.Tables.CustomFields;
|
||||
using e_suite.Database.Core.Tables.Forms;
|
||||
using e_suite.Database.Core.Tables.Glossaries;
|
||||
|
||||
@ -6,7 +6,6 @@ using e_suite.Database.Core.Tables.Forms;
|
||||
using e_suite.UnitTestCore;
|
||||
using eSuite.Core.Miscellaneous;
|
||||
using MockQueryable;
|
||||
using MockQueryable.Moq;
|
||||
|
||||
namespace e_suite.Modules.SpecificationManager.UnitTests.Helpers;
|
||||
|
||||
|
||||
@ -8,7 +8,6 @@ using e_suite.Database.Core.Tables.Glossaries;
|
||||
using e_suite.UnitTestCore;
|
||||
using eSuite.Core.Miscellaneous;
|
||||
using MockQueryable;
|
||||
using MockQueryable.Moq;
|
||||
|
||||
namespace e_suite.Modules.SpecificationManager.UnitTests.Helpers;
|
||||
|
||||
|
||||
@ -5,7 +5,6 @@ using e_suite.Database.Core.Tables.Printer;
|
||||
using e_suite.UnitTestCore;
|
||||
using eSuite.Core.Miscellaneous;
|
||||
using MockQueryable;
|
||||
using MockQueryable.Moq;
|
||||
|
||||
namespace e_suite.Modules.SpecificationManager.UnitTests.Helpers;
|
||||
|
||||
|
||||
@ -5,7 +5,6 @@ using e_suite.Database.Core.Tables.Printer;
|
||||
using e_suite.UnitTestCore;
|
||||
using eSuite.Core.Miscellaneous;
|
||||
using MockQueryable;
|
||||
using MockQueryable.Moq;
|
||||
|
||||
namespace e_suite.Modules.SpecificationManager.UnitTests.Helpers;
|
||||
|
||||
|
||||
@ -1,7 +1,6 @@
|
||||
using e_suite.API.Common.exceptions;
|
||||
using e_suite.API.Common.models;
|
||||
using e_suite.Database.Core.Tables.UserManager;
|
||||
using eSuite.Core.MailService;
|
||||
using eSuite.Core.Miscellaneous;
|
||||
using Moq;
|
||||
using NUnit.Framework;
|
||||
|
||||
@ -20,7 +20,6 @@ using System.Text;
|
||||
using System.Text.Json;
|
||||
using e_suite.Modules.UserManager.Extensions;
|
||||
using IUserManager = e_suite.API.Common.IUserManager;
|
||||
using System.Threading;
|
||||
using System.Data;
|
||||
|
||||
namespace e_suite.Modules.UserManager;
|
||||
|
||||
@ -1,6 +1,5 @@
|
||||
using e_suite.API.Common;
|
||||
using e_suite.API.Common.repository;
|
||||
using e_suite.Modules.UserManager.Repository;
|
||||
|
||||
namespace e_suite.Modules.UserManager;
|
||||
|
||||
|
||||
@ -12,7 +12,6 @@ using e_suite.Service.CustomFieldValidation;
|
||||
using e_suite.UnitTestCore;
|
||||
using eSuite.Core.CustomFields;
|
||||
using eSuite.Core.Miscellaneous;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Moq;
|
||||
using NUnit.Framework;
|
||||
|
||||
|
||||
@ -1,6 +1,4 @@
|
||||
using System.Security.Cryptography.X509Certificates;
|
||||
using Dapper;
|
||||
using e_suite.Database.Core;
|
||||
using e_suite.Database.Core;
|
||||
using e_suite.Database.Core.Tables.Miscellaneous;
|
||||
|
||||
namespace e_suite.Service.EFlowSync.Repository;
|
||||
|
||||
@ -1,6 +1,4 @@
|
||||
using System.Threading;
|
||||
|
||||
namespace e_suite.Service.EFlowSync.Repository;
|
||||
namespace e_suite.Service.EFlowSync.Repository;
|
||||
|
||||
public interface IEFlowSyncRepository
|
||||
{
|
||||
|
||||
@ -4,9 +4,7 @@ using e_suite.Database.Core.Tables.UserManager;
|
||||
using eSuite.Core.MailService;
|
||||
using Moq;
|
||||
using NUnit.Framework;
|
||||
using System.Net;
|
||||
using System.Net.Mail;
|
||||
using System.Threading;
|
||||
using e_suite.Service.Mail.Facade;
|
||||
|
||||
namespace e_suite.Service.Mail.UnitTests.MailService;
|
||||
|
||||
@ -1,6 +1,4 @@
|
||||
using System.Diagnostics;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.Extensions.Primitives;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using NUnit.Framework;
|
||||
using Sentinel.UnitTests.Helpers;
|
||||
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
using System.Diagnostics;
|
||||
using e_suite.API.Common.repository;
|
||||
using e_suite.API.Common.repository;
|
||||
using e_suite.Database.Core.Tables.Sentinel;
|
||||
using eSuite.Core.Clock;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
@ -3,8 +3,6 @@ using e_suite.API.Common.exceptions;
|
||||
using e_suite.API.Common.models;
|
||||
using e_suite.Database.Audit;
|
||||
using e_suite.Database.Core.Extensions;
|
||||
using e_suite.Database.Core.Tables.Forms;
|
||||
using e_suite.Database.Core.Tables.Printer;
|
||||
using e_suite.Service.SigmaImporter.Extensions;
|
||||
using e_suite.Service.SigmaImporter.Repository;
|
||||
using e_suite.Utilities.Pagination;
|
||||
|
||||
@ -9,7 +9,6 @@ using e_suite.API.Common.exceptions;
|
||||
using e_suite.Service.SigmaImporter.Extensions;
|
||||
using e_suite.API.Common.models;
|
||||
using eSuite.Core.Clock;
|
||||
using eSuite.Core.Miscellaneous;
|
||||
|
||||
namespace e_suite.Service.SigmaImporter.PrintSpecifications;
|
||||
|
||||
|
||||
@ -1,6 +1,4 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace e_suite.Workflow.Core;
|
||||
namespace e_suite.Workflow.Core;
|
||||
|
||||
public interface ITask
|
||||
{
|
||||
@ -14,6 +12,8 @@ public interface ITask
|
||||
/// </summary>
|
||||
ITask Parent { get; }
|
||||
|
||||
|
||||
//Todo move this out to runtime only.
|
||||
/// <summary>
|
||||
/// Current state of the Task.
|
||||
/// </summary>
|
||||
|
||||
@ -9,6 +9,7 @@ public interface IWorkflow : IStage<GeneralTaskAttribute>
|
||||
/// </summary>
|
||||
IGeneralIdRef Domain { get; set; }
|
||||
|
||||
//todo Move this out to runtime only.
|
||||
/// <summary>
|
||||
/// Current state of the workflow, see WorkflowState for details of the various states.
|
||||
/// </summary>
|
||||
|
||||
@ -1,6 +1,4 @@
|
||||
using eSuite.Core.Miscellaneous;
|
||||
|
||||
namespace e_suite.Workflow.Core;
|
||||
namespace e_suite.Workflow.Core;
|
||||
|
||||
public abstract class TaskBase : ITask
|
||||
{
|
||||
|
||||
@ -1,6 +1,4 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace e_suite.Workflow.Core;
|
||||
namespace e_suite.Workflow.Core;
|
||||
|
||||
[GeneralTask]
|
||||
public class AdhocApprovalTask : TaskBase, IAssignees<IApprovalTaskAssignee>, IFailedLoopback
|
||||
|
||||
@ -14,7 +14,7 @@ using System.Reflection;
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("e-suite.Workflow.Core")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5aa0151c59e2666c508b96df9e92dabf83e500c9")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("e-suite.Workflow.Core")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("e-suite.Workflow.Core")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
@ -1 +1 @@
|
||||
d7622d2253f7527686bfc36d02ecc0582002634e2b8f181b427834bed3363de9
|
||||
401d80c848c6581f40e8a691ecc83524e9c984106b2aac0cef841233e271a764
|
||||
|
||||
@ -10,7 +10,7 @@ build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = e_suite.Workflow.Core
|
||||
build_property.ProjectDir = C:\Users\me\OneDrive\Code\Sun\e-suite\e-suite.Workflow.Core\
|
||||
build_property.ProjectDir = C:\Users\me\OneDrive\Code\Gitea\e-suite\e-suite.Backend\e-suite.Workflow.Core\
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.EffectiveAnalysisLevelStyle = 10.0
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@ -1,23 +1,23 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Workflow.Core\\e-suite.Workflow.Core.csproj": {}
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Workflow.Core\\e-suite.Workflow.Core.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj": {
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj",
|
||||
"projectUniqueName": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj",
|
||||
"projectName": "eSuite.Core",
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj",
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj",
|
||||
"packagesPath": "C:\\Users\\me\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Core\\eSuite.Core\\obj\\",
|
||||
"outputPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Core\\eSuite.Core\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\NuGet.Config",
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\NuGet.Config",
|
||||
"C:\\Users\\me\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
@ -354,20 +354,20 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Database.Audit\\e-suite.Database.Audit\\e-suite.Database.Audit.csproj": {
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Database.Audit\\e-suite.Database.Audit\\e-suite.Database.Audit.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Database.Audit\\e-suite.Database.Audit\\e-suite.Database.Audit.csproj",
|
||||
"projectUniqueName": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Database.Audit\\e-suite.Database.Audit\\e-suite.Database.Audit.csproj",
|
||||
"projectName": "e-suite.Database.Audit",
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Database.Audit\\e-suite.Database.Audit\\e-suite.Database.Audit.csproj",
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Database.Audit\\e-suite.Database.Audit\\e-suite.Database.Audit.csproj",
|
||||
"packagesPath": "C:\\Users\\me\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Database.Audit\\e-suite.Database.Audit\\obj\\",
|
||||
"outputPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Database.Audit\\e-suite.Database.Audit\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\NuGet.Config",
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\NuGet.Config",
|
||||
"C:\\Users\\me\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
@ -383,8 +383,8 @@
|
||||
"net10.0": {
|
||||
"targetAlias": "net10.0",
|
||||
"projectReferences": {
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj"
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -715,20 +715,20 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Database.Core\\e-suite.Database.Core\\e-suite.Database.Core.csproj": {
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Database.Core\\e-suite.Database.Core\\e-suite.Database.Core.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Database.Core\\e-suite.Database.Core\\e-suite.Database.Core.csproj",
|
||||
"projectUniqueName": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Database.Core\\e-suite.Database.Core\\e-suite.Database.Core.csproj",
|
||||
"projectName": "e-suite.Database.Core",
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Database.Core\\e-suite.Database.Core\\e-suite.Database.Core.csproj",
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Database.Core\\e-suite.Database.Core\\e-suite.Database.Core.csproj",
|
||||
"packagesPath": "C:\\Users\\me\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Database.Core\\e-suite.Database.Core\\obj\\",
|
||||
"outputPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Database.Core\\e-suite.Database.Core\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\NuGet.Config",
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\NuGet.Config",
|
||||
"C:\\Users\\me\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
@ -744,14 +744,14 @@
|
||||
"net10.0": {
|
||||
"targetAlias": "net10.0",
|
||||
"projectReferences": {
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj"
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj"
|
||||
},
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Database.Audit\\e-suite.Database.Audit\\e-suite.Database.Audit.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Database.Audit\\e-suite.Database.Audit\\e-suite.Database.Audit.csproj"
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Database.Audit\\e-suite.Database.Audit\\e-suite.Database.Audit.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Database.Audit\\e-suite.Database.Audit\\e-suite.Database.Audit.csproj"
|
||||
},
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher.csproj"
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1065,20 +1065,20 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher.csproj": {
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher.csproj",
|
||||
"projectUniqueName": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher.csproj",
|
||||
"projectName": "e_suite.Nuget.PasswordHasher",
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher.csproj",
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher.csproj",
|
||||
"packagesPath": "C:\\Users\\me\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher\\obj\\",
|
||||
"outputPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Nuget.PasswordHasher\\e-suite.Nuget.PasswordHasher\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\NuGet.Config",
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\NuGet.Config",
|
||||
"C:\\Users\\me\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
@ -1548,20 +1548,20 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Workflow.Core\\e-suite.Workflow.Core.csproj": {
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Workflow.Core\\e-suite.Workflow.Core.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Workflow.Core\\e-suite.Workflow.Core.csproj",
|
||||
"projectUniqueName": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Workflow.Core\\e-suite.Workflow.Core.csproj",
|
||||
"projectName": "e-suite.Workflow.Core",
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Workflow.Core\\e-suite.Workflow.Core.csproj",
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Workflow.Core\\e-suite.Workflow.Core.csproj",
|
||||
"packagesPath": "C:\\Users\\me\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Workflow.Core\\obj\\",
|
||||
"outputPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Workflow.Core\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\NuGet.Config",
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\NuGet.Config",
|
||||
"C:\\Users\\me\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
@ -1577,11 +1577,11 @@
|
||||
"net10.0": {
|
||||
"targetAlias": "net10.0",
|
||||
"projectReferences": {
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj"
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj"
|
||||
},
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Database.Core\\e-suite.Database.Core\\e-suite.Database.Core.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Database.Core\\e-suite.Database.Core\\e-suite.Database.Core.csproj"
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Database.Core\\e-suite.Database.Core\\e-suite.Database.Core.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Database.Core\\e-suite.Database.Core\\e-suite.Database.Core.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -909,17 +909,17 @@
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Workflow.Core\\e-suite.Workflow.Core.csproj",
|
||||
"projectUniqueName": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Workflow.Core\\e-suite.Workflow.Core.csproj",
|
||||
"projectName": "e-suite.Workflow.Core",
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Workflow.Core\\e-suite.Workflow.Core.csproj",
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Workflow.Core\\e-suite.Workflow.Core.csproj",
|
||||
"packagesPath": "C:\\Users\\me\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Workflow.Core\\obj\\",
|
||||
"outputPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Workflow.Core\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\NuGet.Config",
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\NuGet.Config",
|
||||
"C:\\Users\\me\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
@ -935,11 +935,11 @@
|
||||
"net10.0": {
|
||||
"targetAlias": "net10.0",
|
||||
"projectReferences": {
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj"
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Core\\eSuite.Core\\eSuite.Core.csproj"
|
||||
},
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Database.Core\\e-suite.Database.Core\\e-suite.Database.Core.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Database.Core\\e-suite.Database.Core\\e-suite.Database.Core.csproj"
|
||||
"C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Database.Core\\e-suite.Database.Core\\e-suite.Database.Core.csproj": {
|
||||
"projectPath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Database.Core\\e-suite.Database.Core\\e-suite.Database.Core.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,8 +1,8 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "im90Df47BEc=",
|
||||
"dgSpecHash": "lPCP7DAF+Go=",
|
||||
"success": true,
|
||||
"projectFilePath": "C:\\Users\\me\\OneDrive\\Code\\Sun\\e-suite\\e-suite.Workflow.Core\\e-suite.Workflow.Core.csproj",
|
||||
"projectFilePath": "C:\\Users\\me\\OneDrive\\Code\\Gitea\\e-suite\\e-suite.Backend\\e-suite.Workflow.Core\\e-suite.Workflow.Core.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"C:\\Users\\me\\.nuget\\packages\\microsoft.entityframeworkcore\\10.0.2\\microsoft.entityframeworkcore.10.0.2.nupkg.sha512",
|
||||
"C:\\Users\\me\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\10.0.2\\microsoft.entityframeworkcore.abstractions.10.0.2.nupkg.sha512",
|
||||
|
||||
Loading…
Reference in New Issue
Block a user