diff --git a/.vs/DigitalData.Core/DesignTimeBuild/.dtbcache.v2 b/.vs/DigitalData.Core/DesignTimeBuild/.dtbcache.v2
index 79de8ae..464a2d8 100644
Binary files a/.vs/DigitalData.Core/DesignTimeBuild/.dtbcache.v2 and b/.vs/DigitalData.Core/DesignTimeBuild/.dtbcache.v2 differ
diff --git a/.vs/DigitalData.Core/FileContentIndex/78e2797a-4b7e-4580-89be-f9d0ed1994a3.vsidx b/.vs/DigitalData.Core/FileContentIndex/78e2797a-4b7e-4580-89be-f9d0ed1994a3.vsidx
deleted file mode 100644
index 35749d0..0000000
Binary files a/.vs/DigitalData.Core/FileContentIndex/78e2797a-4b7e-4580-89be-f9d0ed1994a3.vsidx and /dev/null differ
diff --git a/.vs/DigitalData.Core/FileContentIndex/80bdf5f4-32f0-46e1-8a72-e0dbc0b8aa09.vsidx b/.vs/DigitalData.Core/FileContentIndex/80bdf5f4-32f0-46e1-8a72-e0dbc0b8aa09.vsidx
deleted file mode 100644
index 09dc5f7..0000000
Binary files a/.vs/DigitalData.Core/FileContentIndex/80bdf5f4-32f0-46e1-8a72-e0dbc0b8aa09.vsidx and /dev/null differ
diff --git a/.vs/DigitalData.Core/FileContentIndex/9c2c1170-4168-4cdb-bdd9-d173190f46b4.vsidx b/.vs/DigitalData.Core/FileContentIndex/9c2c1170-4168-4cdb-bdd9-d173190f46b4.vsidx
deleted file mode 100644
index b306ed9..0000000
Binary files a/.vs/DigitalData.Core/FileContentIndex/9c2c1170-4168-4cdb-bdd9-d173190f46b4.vsidx and /dev/null differ
diff --git a/.vs/DigitalData.Core/v17/.futdcache.v2 b/.vs/DigitalData.Core/v17/.futdcache.v2
index 27235b1..011cf21 100644
Binary files a/.vs/DigitalData.Core/v17/.futdcache.v2 and b/.vs/DigitalData.Core/v17/.futdcache.v2 differ
diff --git a/.vs/DigitalData.Core/v17/.suo b/.vs/DigitalData.Core/v17/.suo
index 1020f1d..8ca3589 100644
Binary files a/.vs/DigitalData.Core/v17/.suo and b/.vs/DigitalData.Core/v17/.suo differ
diff --git a/.vs/ProjectEvaluation/digitaldata.core.metadata.v6.1 b/.vs/ProjectEvaluation/digitaldata.core.metadata.v6.1
index 3b3ec6e..0e96a28 100644
Binary files a/.vs/ProjectEvaluation/digitaldata.core.metadata.v6.1 and b/.vs/ProjectEvaluation/digitaldata.core.metadata.v6.1 differ
diff --git a/.vs/ProjectEvaluation/digitaldata.core.projects.v6.1 b/.vs/ProjectEvaluation/digitaldata.core.projects.v6.1
index 723b876..6dd1464 100644
Binary files a/.vs/ProjectEvaluation/digitaldata.core.projects.v6.1 and b/.vs/ProjectEvaluation/digitaldata.core.projects.v6.1 differ
diff --git a/DigitalData.Core.API/CRUDControllerBase.cs b/DigitalData.Core.API/CRUDControllerBase.cs
index b6276d9..2ab6756 100644
--- a/DigitalData.Core.API/CRUDControllerBase.cs
+++ b/DigitalData.Core.API/CRUDControllerBase.cs
@@ -66,7 +66,7 @@ namespace DigitalData.Core.API
/// The identifier of the entity to retrieve.
/// A task that represents the asynchronous read operation. The task result contains the action result.
[HttpGet("{id}")]
- public virtual async Task GetById([FromRoute]TId id)
+ public virtual async Task GetById([FromRoute] TId id)
{
var result = await _service.ReadByIdAsync(id);
if (result.IsSuccess)
@@ -113,7 +113,7 @@ namespace DigitalData.Core.API
/// The identifier of the entity to delete.
/// A task that represents the asynchronous delete operation. The task result contains the action result.
[HttpDelete("{id}")]
- public virtual async Task Delete([FromRoute]TId id)
+ public virtual async Task Delete([FromRoute] TId id)
{
var result = await _service.DeleteAsyncById(id);
if (result.IsSuccess)
diff --git a/DigitalData.Core.API/ReadControllerBase.cs b/DigitalData.Core.API/ReadControllerBase.cs
index 5b1b385..f3d5325 100644
--- a/DigitalData.Core.API/ReadControllerBase.cs
+++ b/DigitalData.Core.API/ReadControllerBase.cs
@@ -42,7 +42,7 @@ namespace DigitalData.Core.API
/// The identifier of the entity to retrieve.
/// A task that represents the asynchronous read operation. The task result contains the action result.
[HttpGet("{id}")]
- public virtual async Task GetById([FromRoute]TId id)
+ public virtual async Task GetById([FromRoute] TId id)
{
var result = await _service.ReadByIdAsync(id);
if (result.IsSuccess)
diff --git a/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.API.dll b/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.API.dll
index afdfcd2..0f7abf5 100644
Binary files a/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.API.dll and b/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.API.dll differ
diff --git a/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.API.pdb b/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.API.pdb
index bf88f21..250dc74 100644
Binary files a/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.API.pdb and b/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.API.pdb differ
diff --git a/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.Contracts.dll b/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.Contracts.dll
index 69c77f7..ab2bf1c 100644
Binary files a/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.Contracts.dll and b/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.Contracts.dll differ
diff --git a/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb b/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb
index 150a0c5..c137785 100644
Binary files a/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb and b/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb differ
diff --git a/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.csproj.AssemblyReference.cache b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.csproj.AssemblyReference.cache
index 8fa507f..c58d887 100644
Binary files a/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.csproj.AssemblyReference.cache and b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.csproj.AssemblyReference.cache differ
diff --git a/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.dll b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.dll
index afdfcd2..0f7abf5 100644
Binary files a/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.dll and b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.dll differ
diff --git a/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.pdb b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.pdb
index bf88f21..250dc74 100644
Binary files a/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.pdb and b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.pdb differ
diff --git a/DigitalData.Core.Application/AuthService.cs b/DigitalData.Core.Application/AuthService.cs
deleted file mode 100644
index 4c6be13..0000000
--- a/DigitalData.Core.Application/AuthService.cs
+++ /dev/null
@@ -1,6 +0,0 @@
-namespace DigitalData.Core.Application
-{
- public class AuthService
- {
- }
-}
diff --git a/DigitalData.Core.Application/CRUDService.cs b/DigitalData.Core.Application/CRUDService.cs
index 91a2159..c9acfd3 100644
--- a/DigitalData.Core.Application/CRUDService.cs
+++ b/DigitalData.Core.Application/CRUDService.cs
@@ -48,7 +48,7 @@ namespace DigitalData.Core.Application
{
var entity = _mapper.MapOrThrow(createDto);
var createdEntity = await _repository.CreateAsync(entity);
- if(createdEntity is null)
+ if (createdEntity is null)
return Failed();
else
return Successful(KeyValueOf(createdEntity));
@@ -145,7 +145,7 @@ namespace DigitalData.Core.Application
/// The ID of the entity.
protected virtual TId KeyValueOf(TEntity entity)
{
- if(_keyPropertyInfo is null)
+ if (_keyPropertyInfo is null)
throw new InvalidOperationException($"No property with [Key] attribute found on {typeof(TEntity).Name} entity.");
object idObj = _keyPropertyInfo?.GetValue(entity) ?? throw new InvalidOperationException($"The ID property of {typeof(TEntity).Name} entity cannot be null.");
diff --git a/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Application.dll b/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Application.dll
index d8a7384..28d99be 100644
Binary files a/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Application.dll and b/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Application.dll differ
diff --git a/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Application.pdb b/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Application.pdb
index f214cab..8b08caa 100644
Binary files a/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Application.pdb and b/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Application.pdb differ
diff --git a/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Contracts.dll b/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Contracts.dll
index 69c77f7..ab2bf1c 100644
Binary files a/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Contracts.dll and b/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Contracts.dll differ
diff --git a/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb b/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb
index 150a0c5..c137785 100644
Binary files a/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb and b/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb differ
diff --git a/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.csproj.AssemblyReference.cache b/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.csproj.AssemblyReference.cache
index e3fb157..f4d55ce 100644
Binary files a/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.csproj.AssemblyReference.cache and b/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.csproj.AssemblyReference.cache differ
diff --git a/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.csproj.CoreCompileInputs.cache b/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.csproj.CoreCompileInputs.cache
index 79fa4a5..e3e114d 100644
--- a/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.csproj.CoreCompileInputs.cache
+++ b/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-27b4d1c0e521dbdcdae7e49ff5b85233b84a7ece
+9c98a8de39558d32de60bd00a4f3744b3887e0d2
diff --git a/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.dll b/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.dll
index d8a7384..28d99be 100644
Binary files a/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.dll and b/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.dll differ
diff --git a/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.pdb b/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.pdb
index f214cab..8b08caa 100644
Binary files a/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.pdb and b/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.pdb differ
diff --git a/DigitalData.Core.Application/obj/Debug/net7.0/ref/DigitalData.Core.Application.dll b/DigitalData.Core.Application/obj/Debug/net7.0/ref/DigitalData.Core.Application.dll
index 4408cca..8941f51 100644
Binary files a/DigitalData.Core.Application/obj/Debug/net7.0/ref/DigitalData.Core.Application.dll and b/DigitalData.Core.Application/obj/Debug/net7.0/ref/DigitalData.Core.Application.dll differ
diff --git a/DigitalData.Core.Application/obj/Debug/net7.0/refint/DigitalData.Core.Application.dll b/DigitalData.Core.Application/obj/Debug/net7.0/refint/DigitalData.Core.Application.dll
index 4408cca..8941f51 100644
Binary files a/DigitalData.Core.Application/obj/Debug/net7.0/refint/DigitalData.Core.Application.dll and b/DigitalData.Core.Application/obj/Debug/net7.0/refint/DigitalData.Core.Application.dll differ
diff --git a/DigitalData.Core.Contracts/Infrastructure/IADDataAccessor.cs b/DigitalData.Core.Contracts/Infrastructure/IADDataAccessor.cs
deleted file mode 100644
index b29d158..0000000
--- a/DigitalData.Core.Contracts/Infrastructure/IADDataAccessor.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-using System.DirectoryServices;
-
-namespace DigitalData.Core.Contracts.Infrastructure
-{
- public interface IADDataAccessor
- {
- SearchResultCollection ReadAll();
-
- SearchResult? ReadOne();
- }
-}
\ No newline at end of file
diff --git a/DigitalData.Core.Contracts/Infrastructure/ISearcherProvider.cs b/DigitalData.Core.Contracts/Infrastructure/ISearcherProvider.cs
deleted file mode 100644
index b3847ac..0000000
--- a/DigitalData.Core.Contracts/Infrastructure/ISearcherProvider.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-using System.DirectoryServices;
-
-namespace DigitalData.Core.Contracts.Infrastructure
-{
- public interface ISearcherProvider
- {
- public Func Provide { get; }
- }
-}
\ No newline at end of file
diff --git a/DigitalData.Core.Contracts/bin/Debug/net7.0/DigitalData.Core.Contracts.dll b/DigitalData.Core.Contracts/bin/Debug/net7.0/DigitalData.Core.Contracts.dll
index 69c77f7..ab2bf1c 100644
Binary files a/DigitalData.Core.Contracts/bin/Debug/net7.0/DigitalData.Core.Contracts.dll and b/DigitalData.Core.Contracts/bin/Debug/net7.0/DigitalData.Core.Contracts.dll differ
diff --git a/DigitalData.Core.Contracts/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb b/DigitalData.Core.Contracts/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb
index 150a0c5..c137785 100644
Binary files a/DigitalData.Core.Contracts/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb and b/DigitalData.Core.Contracts/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb differ
diff --git a/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.csproj.CoreCompileInputs.cache b/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.csproj.CoreCompileInputs.cache
index d509fad..3d15240 100644
--- a/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.csproj.CoreCompileInputs.cache
+++ b/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-f4387e0fddd1173993a6db1f0ae947a265e040d2
+c04ab3cbc3319f5880fb96acc2dc1da3e8fd9daa
diff --git a/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.dll b/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.dll
index 69c77f7..ab2bf1c 100644
Binary files a/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.dll and b/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.dll differ
diff --git a/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.pdb b/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.pdb
index 150a0c5..c137785 100644
Binary files a/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.pdb and b/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.pdb differ
diff --git a/DigitalData.Core.Contracts/obj/Debug/net7.0/ref/DigitalData.Core.Contracts.dll b/DigitalData.Core.Contracts/obj/Debug/net7.0/ref/DigitalData.Core.Contracts.dll
index 8791c17..ea704f3 100644
Binary files a/DigitalData.Core.Contracts/obj/Debug/net7.0/ref/DigitalData.Core.Contracts.dll and b/DigitalData.Core.Contracts/obj/Debug/net7.0/ref/DigitalData.Core.Contracts.dll differ
diff --git a/DigitalData.Core.Contracts/obj/Debug/net7.0/refint/DigitalData.Core.Contracts.dll b/DigitalData.Core.Contracts/obj/Debug/net7.0/refint/DigitalData.Core.Contracts.dll
index 8791c17..ea704f3 100644
Binary files a/DigitalData.Core.Contracts/obj/Debug/net7.0/refint/DigitalData.Core.Contracts.dll and b/DigitalData.Core.Contracts/obj/Debug/net7.0/refint/DigitalData.Core.Contracts.dll differ
diff --git a/DigitalData.Core.CultureServices/Properties/launchSettings.json b/DigitalData.Core.CultureServices/Properties/launchSettings.json
new file mode 100644
index 0000000..b0d2ab8
--- /dev/null
+++ b/DigitalData.Core.CultureServices/Properties/launchSettings.json
@@ -0,0 +1,12 @@
+{
+ "profiles": {
+ "DigitalData.Core.CultureServices": {
+ "commandName": "Project",
+ "launchBrowser": true,
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ },
+ "applicationUrl": "https://localhost:61600;http://localhost:61602"
+ }
+ }
+}
\ No newline at end of file
diff --git a/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.Contracts.dll b/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.Contracts.dll
index 69c77f7..ab2bf1c 100644
Binary files a/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.Contracts.dll and b/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.Contracts.dll differ
diff --git a/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb b/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb
index 150a0c5..c137785 100644
Binary files a/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb and b/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb differ
diff --git a/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.CultureServices.dll b/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.CultureServices.dll
index 61d4fe7..1fdfb65 100644
Binary files a/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.CultureServices.dll and b/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.CultureServices.dll differ
diff --git a/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.CultureServices.pdb b/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.CultureServices.pdb
index ce20ba0..10ff759 100644
Binary files a/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.CultureServices.pdb and b/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.CultureServices.pdb differ
diff --git a/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.csproj.AssemblyReference.cache b/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.csproj.AssemblyReference.cache
index 07df2c2..027e085 100644
Binary files a/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.csproj.AssemblyReference.cache and b/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.csproj.AssemblyReference.cache differ
diff --git a/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.dll b/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.dll
index 61d4fe7..1fdfb65 100644
Binary files a/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.dll and b/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.dll differ
diff --git a/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.pdb b/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.pdb
index ce20ba0..10ff759 100644
Binary files a/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.pdb and b/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.pdb differ
diff --git a/DigitalData.Core.Infrastructure/Properties/launchSettings.json b/DigitalData.Core.Infrastructure/Properties/launchSettings.json
new file mode 100644
index 0000000..f9991e5
--- /dev/null
+++ b/DigitalData.Core.Infrastructure/Properties/launchSettings.json
@@ -0,0 +1,12 @@
+{
+ "profiles": {
+ "DigitalData.Core.Infrastructure": {
+ "commandName": "Project",
+ "launchBrowser": true,
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ },
+ "applicationUrl": "https://localhost:61601;http://localhost:61604"
+ }
+ }
+}
\ No newline at end of file
diff --git a/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Contracts.dll b/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Contracts.dll
index 69c77f7..ab2bf1c 100644
Binary files a/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Contracts.dll and b/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Contracts.dll differ
diff --git a/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb b/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb
index 150a0c5..c137785 100644
Binary files a/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb and b/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb differ
diff --git a/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Infrastructure.dll b/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Infrastructure.dll
index 5f7fd36..8d36533 100644
Binary files a/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Infrastructure.dll and b/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Infrastructure.dll differ
diff --git a/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Infrastructure.pdb b/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Infrastructure.pdb
index 55fd2b1..7c2a8bc 100644
Binary files a/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Infrastructure.pdb and b/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Infrastructure.pdb differ
diff --git a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.csproj.AssemblyReference.cache b/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.csproj.AssemblyReference.cache
index 0189761..75a3bca 100644
Binary files a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.csproj.AssemblyReference.cache and b/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.csproj.AssemblyReference.cache differ
diff --git a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.dll b/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.dll
index 5f7fd36..8d36533 100644
Binary files a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.dll and b/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.dll differ
diff --git a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.pdb b/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.pdb
index 55fd2b1..7c2a8bc 100644
Binary files a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.pdb and b/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.pdb differ
diff --git a/DigitalData.Core.Tests/Properties/launchSettings.json b/DigitalData.Core.Tests/Properties/launchSettings.json
new file mode 100644
index 0000000..6a58d96
--- /dev/null
+++ b/DigitalData.Core.Tests/Properties/launchSettings.json
@@ -0,0 +1,12 @@
+{
+ "profiles": {
+ "DigitalData.Core.Tests": {
+ "commandName": "Project",
+ "launchBrowser": true,
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ },
+ "applicationUrl": "https://localhost:61599;http://localhost:61603"
+ }
+ }
+}
\ No newline at end of file
diff --git a/DigitalData.Core.Tests/obj/project.assets.json b/DigitalData.Core.Tests/obj/project.assets.json
index 7732845..ea8b589 100644
--- a/DigitalData.Core.Tests/obj/project.assets.json
+++ b/DigitalData.Core.Tests/obj/project.assets.json
@@ -1171,7 +1171,8 @@
"lib/net45/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
"lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
"microsoft.codecoverage.17.3.2.nupkg.sha512",
- "microsoft.codecoverage.nuspec"
+ "microsoft.codecoverage.nuspec",
+ "r5jqoi1l.cal"
]
},
"Microsoft.CSharp/4.0.1": {
@@ -1306,6 +1307,7 @@
".signature.p7s",
"Icon.png",
"LICENSE_NET.txt",
+ "hctajusm.1yt",
"lib/net45/Microsoft.TestPlatform.CoreUtilities.dll",
"lib/net45/Microsoft.TestPlatform.PlatformAbstractions.dll",
"lib/net45/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
@@ -1644,6 +1646,7 @@
"build/uap10.0/zh-Hant/Microsoft.TestPlatform.Utilities.resources.dll",
"build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
"build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
+ "jvo0yirh.p50",
"lib/net45/_._",
"lib/netcoreapp1.0/Microsoft.TestPlatform.CommunicationUtilities.dll",
"lib/netcoreapp1.0/Microsoft.TestPlatform.CoreUtilities.dll",