diff --git a/audit-logs/audit-logs/Extensions/ServiceCollectionExtensions.cs b/audit-logs/audit-logs/Extensions/ServiceCollectionExtensions.cs index 1174d86..06fdbbe 100755 --- a/audit-logs/audit-logs/Extensions/ServiceCollectionExtensions.cs +++ b/audit-logs/audit-logs/Extensions/ServiceCollectionExtensions.cs @@ -27,6 +27,7 @@ public static class ServiceCollectionExtensions var options = sp.GetRequiredService>(); return new AuditService(options); }); + services.AddScoped(); return services; } diff --git a/audit-logs/audit-logs/Services/AuditService.cs b/audit-logs/audit-logs/Services/AuditService.cs index 1491db4..b898c3d 100755 --- a/audit-logs/audit-logs/Services/AuditService.cs +++ b/audit-logs/audit-logs/Services/AuditService.cs @@ -1,3 +1,5 @@ +using Newtonsoft.Json; + namespace audit_logs.Services; using System.Security.Claims; @@ -60,6 +62,18 @@ public class AuditService : IAuditService await _auditLogRepository.InsertOneAsync(auditRecord); } + + public async Task DeepCopyAsync(T source) + { + return await Task.Run(() => + { + var serialized = JsonConvert.SerializeObject(source); + var deserialized = JsonConvert.DeserializeObject(serialized); + if (deserialized == null) + throw new InvalidOperationException("Deserialization resulted in null"); + return deserialized; + }); + } #region Documentacioòn para el metodo CreateAuditLogAsync @@ -202,6 +216,9 @@ public class AuditService : IAuditService { auditLogData.ActionType = "update"; } + // dataOriginal="{\n \"Id\": \"PV8\",\n \"Items\": [\n {\n \"Code\": \"Temperature\",\n \"CodingSystem\": \"SENSOR\",\n \"OriginalName\": \"Room_Temperature\",\n \"ParentCode\": \"T\",\n \"ParentCodingSystem\": \"Room_Temperature\",\n \"ParentName\": null,\n \"Name\": \"Room_Temperature\",\n \"Units\": \"T\",\n \"ArrowType\": 1,\n \"ShowArrow\": true,\n \"ForceUnits\": false,\n \"MinAlert\": null,\n \"MaxAlert\": null,\n \"MaxWarn\": null,\n \"MinWarn\": null,\n \"WarnColor\": null,\n \"AlertColor\": null,\n \"AlertValues\": null,\n \"WarningValues\": null,\n \"ForceWarn\": false,\n \"ForceAlert\": false,\n \"Alert\": null,\n \"Expires\": null,\n \"ShowOnExpired\": false,\n \"Persist\": null,\n \"ColorOnExpired\": null,\n \"RetentionPolicy\": null,\n \"RetentionPolicyValue\": null,\n \"LevelCondition\": null,\n \"UiConfiguration\": {\n \"screenLabel\": \"screenLabel\"\n },\n \"Alarm\": null,\n \"Description\": null,\n \"RequiredValue\": null,\n \"Preconditions\": null,\n \"CheckObservations\": false,\n \"CreateObservation\": null,\n \"TimeFromMessageTime\": false\n }\n ]\n}" + //dataModified = "{\n \"Id\": \"PV8\",\n \"Items\": [\n {\n \"Code\": \"Temperature\",\n \"CodingSystem\": \"SENSOR\",\n \"OriginalName\": \"Room_Temperature\",\n \"ParentCode\": \"T\",\n \"ParentCodingSystem\": \"Room_Temperature\",\n \"ParentName\": null,\n \"Name\": \"Room_Temperature\",\n \"Units\": \"T\",\n \"ArrowType\": 1,\n \"ShowArrow\": true,\n \"ForceUnits\": false,\n \"MinAlert\": null,\n \"MaxAlert\": null,\n \"MaxWarn\": null,\n \"MinWarn\": null,\n \"WarnColor\": null,\n \"AlertColor\": null,\n \"AlertValues\": null,\n \"WarningValues\": null,\n \"ForceWarn\": false,\n \"ForceAlert\": false,\n \"Alert\": null,\n \"Expires\": null,\n \"ShowOnExpired\": false,\n \"Persist\": null,\n \"ColorOnExpired\": null,\n \"RetentionPolicy\": null,\n \"RetentionPolicyValue\": null,\n \"LevelCondition\": null,\n \"UiConfiguration\": {\n \"screenLabel\": \"screenLabel\"\n },\n \"Alarm\": null,\n \"Description\": null,\n \"RequiredValue\": null,\n \"Preconditions\": null,\n \"CheckObservations\": false,\n \"CreateObservation\": null,\n \"TimeFromMessageTime\": false\n },\n {\n \"Code\": \"88\",\n \"CodingSystem\": \"88\",\n \"OriginalName\": \"88\",\n \"ParentCode\": \"88\",\n \"ParentCodingSystem\": \"88\",\n \"ParentName\": null,\n \"Name\": \"88\",\n \"Units\": \"88\",\n \"ArrowType\": 1,\n \"ShowArrow\": true,\n \"ForceUnits\": false,\n \"MinAlert\": null,\n \"MaxAlert\": null,\n \"MaxWarn\": null,\n \"MinWarn\": null,\n \"WarnColor\": null,\n \"AlertColor\": null,\n \"AlertValues\": null,\n \"WarningValues\": null,\n \"ForceWarn\": false,\n \"ForceAlert\": false,\n \"Alert\": null,\n \"Expires\": null,\n \"ShowOnExpired\": false,\n \"Persist\": null,\n \"ColorOnExpired\": null,\n \"RetentionPolicy\": null,\n \"RetentionPolicyValue\": null,\n \"LevelCondition\": null,\n \"UiConfiguration\": {\n \"screenLabel\": \"88\"\n },\n \"Alarm\": null,\n \"Description\": null,\n \"RequiredValue\": null,\n \"Preconditions\": null,\n \"CheckObservations\": false,\n \"CreateObservation\": null,\n \"TimeFromMessageTime\": false\n }\n ]\n}"; + auditLogData.Changes = jsonComparer.GetDifferences(dataOriginal, dataModified); await RecordAuditAsync(auditLogData); } @@ -425,4 +442,6 @@ public class AuditService : IAuditService return builder.Empty; // Sin filtros, devuelve todos los documentos } + + } \ No newline at end of file diff --git a/audit-logs/audit-logs/Services/DeepCopyService.cs b/audit-logs/audit-logs/Services/DeepCopyService.cs new file mode 100644 index 0000000..440dd7d --- /dev/null +++ b/audit-logs/audit-logs/Services/DeepCopyService.cs @@ -0,0 +1,21 @@ +using audit_logs.Services.Interfaces; + + +using Newtonsoft.Json; +using System.Threading.Tasks; + +namespace audit_logs.Services; + +public class DeepCopyService : IDeepCopyService +{ + public async Task DeepCopyAsync(T source) + { + var serialized = JsonConvert.SerializeObject(source); + var deserialized = JsonConvert.DeserializeObject(serialized); + + if (deserialized == null) + throw new InvalidOperationException("Deserialization resulted in null"); + + return deserialized; + } +} \ No newline at end of file diff --git a/audit-logs/audit-logs/Services/Interfaces/IAuditService.cs b/audit-logs/audit-logs/Services/Interfaces/IAuditService.cs index 8b4464b..83e82e8 100755 --- a/audit-logs/audit-logs/Services/Interfaces/IAuditService.cs +++ b/audit-logs/audit-logs/Services/Interfaces/IAuditService.cs @@ -16,4 +16,6 @@ public interface IAuditService Task> GetAuditLogsMatchingTextOrDateAsync( AuditLogTextOrDateSearchDTO filtertTextOrDateDto); + + Task DeepCopyAsync(T source); } \ No newline at end of file diff --git a/audit-logs/audit-logs/Services/Interfaces/IDeepCopyService.cs b/audit-logs/audit-logs/Services/Interfaces/IDeepCopyService.cs new file mode 100644 index 0000000..7ab4e38 --- /dev/null +++ b/audit-logs/audit-logs/Services/Interfaces/IDeepCopyService.cs @@ -0,0 +1,8 @@ +namespace audit_logs.Services.Interfaces; + +public interface IDeepCopyService +{ + Task DeepCopyAsync(T source); + + +} \ No newline at end of file diff --git a/audit-logs/audit-logs/audit-logs.csproj b/audit-logs/audit-logs/audit-logs.csproj index c04f034..002bb54 100755 --- a/audit-logs/audit-logs/audit-logs.csproj +++ b/audit-logs/audit-logs/audit-logs.csproj @@ -8,7 +8,7 @@ AuditLogs - 1.0.38 + 1.0.49 Epigram Epigram Library for recording audit logs using MongoDB. diff --git a/audit-logs/audit-logs/bin/Debug/net8.0/audit-logs.deps.json b/audit-logs/audit-logs/bin/Debug/net8.0/audit-logs.deps.json index 247f3cb..655eab2 100644 --- a/audit-logs/audit-logs/bin/Debug/net8.0/audit-logs.deps.json +++ b/audit-logs/audit-logs/bin/Debug/net8.0/audit-logs.deps.json @@ -6,7 +6,7 @@ "compilationOptions": {}, "targets": { ".NETCoreApp,Version=v8.0": { - "audit-logs/1.0.38": { + "audit-logs/1.0.49": { "dependencies": { "Microsoft.Extensions.Hosting": "8.0.0", "MongoDB.Driver": "2.23.1", @@ -569,7 +569,7 @@ } }, "libraries": { - "audit-logs/1.0.38": { + "audit-logs/1.0.49": { "type": "project", "serviceable": false, "sha512": "" diff --git a/audit-logs/audit-logs/bin/Debug/net8.0/audit-logs.dll b/audit-logs/audit-logs/bin/Debug/net8.0/audit-logs.dll index 357b9ef..8657e72 100644 Binary files a/audit-logs/audit-logs/bin/Debug/net8.0/audit-logs.dll and b/audit-logs/audit-logs/bin/Debug/net8.0/audit-logs.dll differ diff --git a/audit-logs/audit-logs/bin/Debug/net8.0/audit-logs.pdb b/audit-logs/audit-logs/bin/Debug/net8.0/audit-logs.pdb index be03121..9bc8fc1 100644 Binary files a/audit-logs/audit-logs/bin/Debug/net8.0/audit-logs.pdb and b/audit-logs/audit-logs/bin/Debug/net8.0/audit-logs.pdb differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.19.nupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.19.nupkg deleted file mode 100755 index abca324..0000000 Binary files a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.19.nupkg and /dev/null differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.20.nupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.20.nupkg deleted file mode 100644 index af37f88..0000000 Binary files a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.20.nupkg and /dev/null differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.21.nupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.21.nupkg deleted file mode 100644 index f97a9de..0000000 Binary files a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.21.nupkg and /dev/null differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.22.nupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.22.nupkg deleted file mode 100644 index 917869f..0000000 Binary files a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.22.nupkg and /dev/null differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.23.nupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.23.nupkg deleted file mode 100644 index e4493bc..0000000 Binary files a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.23.nupkg and /dev/null differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.24.nupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.24.nupkg deleted file mode 100644 index f095179..0000000 Binary files a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.24.nupkg and /dev/null differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.25.nupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.25.nupkg deleted file mode 100644 index 725513d..0000000 Binary files a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.25.nupkg and /dev/null differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.26.nupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.26.nupkg deleted file mode 100644 index bff954c..0000000 Binary files a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.26.nupkg and /dev/null differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.26.snupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.26.snupkg deleted file mode 100644 index 6853ec5..0000000 Binary files a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.26.snupkg and /dev/null differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.27.nupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.27.nupkg deleted file mode 100644 index fa1c576..0000000 Binary files a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.27.nupkg and /dev/null differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.27.snupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.27.snupkg deleted file mode 100644 index fee64e7..0000000 Binary files a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.27.snupkg and /dev/null differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.28.nupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.28.nupkg deleted file mode 100644 index c2b3901..0000000 Binary files a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.28.nupkg and /dev/null differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.28.snupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.28.snupkg deleted file mode 100644 index 3f667f3..0000000 Binary files a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.28.snupkg and /dev/null differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.29.nupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.29.nupkg deleted file mode 100644 index 9ec2e41..0000000 Binary files a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.29.nupkg and /dev/null differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.29.snupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.29.snupkg deleted file mode 100644 index 6061a9f..0000000 Binary files a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.29.snupkg and /dev/null differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.30.nupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.30.nupkg deleted file mode 100644 index 60d2d83..0000000 Binary files a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.30.nupkg and /dev/null differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.30.snupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.30.snupkg deleted file mode 100644 index 76e899a..0000000 Binary files a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.30.snupkg and /dev/null differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.31.nupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.31.nupkg deleted file mode 100644 index 11b3237..0000000 Binary files a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.31.nupkg and /dev/null differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.31.snupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.31.snupkg deleted file mode 100644 index b12fc17..0000000 Binary files a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.31.snupkg and /dev/null differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.32.nupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.32.nupkg deleted file mode 100644 index 931c0b7..0000000 Binary files a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.32.nupkg and /dev/null differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.32.snupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.32.snupkg deleted file mode 100644 index c46ba22..0000000 Binary files a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.32.snupkg and /dev/null differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.33.nupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.33.nupkg deleted file mode 100644 index 767de83..0000000 Binary files a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.33.nupkg and /dev/null differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.33.snupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.33.snupkg deleted file mode 100644 index 8747e57..0000000 Binary files a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.33.snupkg and /dev/null differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.34.nupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.34.nupkg deleted file mode 100644 index 924c55e..0000000 Binary files a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.34.nupkg and /dev/null differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.34.snupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.34.snupkg deleted file mode 100644 index 900e331..0000000 Binary files a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.34.snupkg and /dev/null differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.35.nupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.35.nupkg deleted file mode 100644 index 834b8c9..0000000 Binary files a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.35.nupkg and /dev/null differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.35.snupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.35.snupkg deleted file mode 100644 index 7a76a8b..0000000 Binary files a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.35.snupkg and /dev/null differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.36.nupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.36.nupkg deleted file mode 100644 index 3fd1a7b..0000000 Binary files a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.36.nupkg and /dev/null differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.36.snupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.36.snupkg deleted file mode 100644 index c220f2e..0000000 Binary files a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.36.snupkg and /dev/null differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.37.nupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.37.nupkg deleted file mode 100644 index 1b263dd..0000000 Binary files a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.37.nupkg and /dev/null differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.37.snupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.37.snupkg deleted file mode 100644 index 67ab0eb..0000000 Binary files a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.37.snupkg and /dev/null differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.38.nupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.38.nupkg deleted file mode 100644 index c7b4aec..0000000 Binary files a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.38.nupkg and /dev/null differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.38.snupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.38.snupkg deleted file mode 100644 index ed268a9..0000000 Binary files a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.38.snupkg and /dev/null differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.49.nupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.49.nupkg new file mode 100644 index 0000000..f8cd85f Binary files /dev/null and b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.49.nupkg differ diff --git a/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.49.snupkg b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.49.snupkg new file mode 100644 index 0000000..7418cda Binary files /dev/null and b/audit-logs/audit-logs/nupkgs/AuditLogs.1.0.49.snupkg differ diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.0.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.0.nuspec deleted file mode 100755 index ffecfb5..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.0.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.0 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.1.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.1.nuspec deleted file mode 100755 index 1eaf8c6..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.1.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.1 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.11.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.11.nuspec deleted file mode 100755 index 23b5169..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.11.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.11 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.12.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.12.nuspec deleted file mode 100755 index 6e32b06..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.12.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.12 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.14.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.14.nuspec deleted file mode 100755 index 1ba58ce..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.14.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.14 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.15.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.15.nuspec deleted file mode 100755 index 0cc43f2..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.15.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.15 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.16.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.16.nuspec deleted file mode 100755 index 36da59b..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.16.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.16 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.17.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.17.nuspec deleted file mode 100755 index a826d14..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.17.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.17 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.19.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.19.nuspec deleted file mode 100755 index c76f4c1..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.19.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.19 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.2.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.2.nuspec deleted file mode 100755 index ea276b5..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.2.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.2 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.20.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.20.nuspec deleted file mode 100644 index 9d4e6df..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.20.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.20 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.22.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.22.nuspec deleted file mode 100644 index 5d34466..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.22.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.22 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.23.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.23.nuspec deleted file mode 100644 index a723c5a..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.23.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.23 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.24.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.24.nuspec deleted file mode 100644 index 9130884..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.24.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.24 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.25.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.25.nuspec deleted file mode 100644 index c357bf8..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.25.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.25 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.26.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.26.nuspec deleted file mode 100644 index ef20ae5..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.26.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.26 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.27.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.27.nuspec deleted file mode 100644 index db584e2..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.27.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.27 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.27.symbols.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.27.symbols.nuspec deleted file mode 100644 index 0d8354b..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.27.symbols.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.27 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.28.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.28.nuspec deleted file mode 100644 index 87078ab..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.28.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.28 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.28.symbols.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.28.symbols.nuspec deleted file mode 100644 index a3521d3..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.28.symbols.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.28 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.29.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.29.nuspec deleted file mode 100644 index af6949a..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.29.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.29 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.29.symbols.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.29.symbols.nuspec deleted file mode 100644 index 256475f..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.29.symbols.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.29 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.3.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.3.nuspec deleted file mode 100755 index 32eb796..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.3.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.3 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.30.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.30.nuspec deleted file mode 100644 index 46f2123..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.30.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.30 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.30.symbols.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.30.symbols.nuspec deleted file mode 100644 index b599811..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.30.symbols.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.30 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.31.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.31.nuspec deleted file mode 100644 index 0869d02..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.31.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.31 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.31.symbols.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.31.symbols.nuspec deleted file mode 100644 index c564044..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.31.symbols.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.31 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.32.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.32.nuspec deleted file mode 100644 index f4686ff..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.32.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.32 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.32.symbols.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.32.symbols.nuspec deleted file mode 100644 index 1b0be9e..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.32.symbols.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.32 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.33.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.33.nuspec deleted file mode 100644 index 2965ef9..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.33.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.33 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.33.symbols.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.33.symbols.nuspec deleted file mode 100644 index cd59584..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.33.symbols.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.33 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.34.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.34.nuspec deleted file mode 100644 index deccb6b..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.34.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.34 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.34.symbols.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.34.symbols.nuspec deleted file mode 100644 index d267ec5..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.34.symbols.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.34 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.35.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.35.nuspec deleted file mode 100644 index b9cbdff..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.35.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.35 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.35.symbols.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.35.symbols.nuspec deleted file mode 100644 index ae1c6f2..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.35.symbols.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.35 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.36.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.36.nuspec deleted file mode 100644 index 1d00384..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.36.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.36 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.36.symbols.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.36.symbols.nuspec deleted file mode 100644 index 5752934..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.36.symbols.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.36 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.37.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.37.nuspec deleted file mode 100644 index aa9f22d..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.37.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.37 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.37.symbols.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.37.symbols.nuspec deleted file mode 100644 index b229af6..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.37.symbols.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.37 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.38.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.38.nuspec deleted file mode 100644 index 1698983..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.38.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.38 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.38.symbols.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.38.symbols.nuspec deleted file mode 100644 index f7bd4be..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.38.symbols.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.38 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.4.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.4.nuspec deleted file mode 100755 index 0464d1e..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.4.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.4 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.13.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.49.nuspec old mode 100755 new mode 100644 similarity index 90% rename from audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.13.nuspec rename to audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.49.nuspec index 1d55251..4929857 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.13.nuspec +++ b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.49.nuspec @@ -2,13 +2,13 @@ AuditLogs - 1.0.13 + 1.0.49 Epigram MIT https://licenses.nuget.org/MIT Library for recording audit logs using MongoDB. audit logs mongodb - + diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.26.symbols.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.49.symbols.nuspec similarity index 90% rename from audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.26.symbols.nuspec rename to audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.49.symbols.nuspec index 29d560b..5e5fafa 100644 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.26.symbols.nuspec +++ b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.49.symbols.nuspec @@ -2,13 +2,13 @@ AuditLogs - 1.0.26 + 1.0.49 Epigram MIT https://licenses.nuget.org/MIT Library for recording audit logs using MongoDB. audit logs mongodb - + diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.5.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.5.nuspec deleted file mode 100755 index 7c25def..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.5.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.5 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.6.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.6.nuspec deleted file mode 100755 index b9c1032..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.6.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.6 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.7.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.7.nuspec deleted file mode 100755 index 36639c8..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.7.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.7 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.8.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.8.nuspec deleted file mode 100755 index 0872f5a..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.8.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.8 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.9.nuspec b/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.9.nuspec deleted file mode 100755 index cff7cf4..0000000 --- a/audit-logs/audit-logs/obj/Debug/AuditLogs.1.0.9.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - AuditLogs - 1.0.9 - Epigram - MIT - https://licenses.nuget.org/MIT - Library for recording audit logs using MongoDB. - audit logs mongodb - - - - - - - - - - - - - - \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/Debug/net8.0/audit-logs.AssemblyInfo.cs b/audit-logs/audit-logs/obj/Debug/net8.0/audit-logs.AssemblyInfo.cs index c8d4b07..9bd9d13 100644 --- a/audit-logs/audit-logs/obj/Debug/net8.0/audit-logs.AssemblyInfo.cs +++ b/audit-logs/audit-logs/obj/Debug/net8.0/audit-logs.AssemblyInfo.cs @@ -13,11 +13,11 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("Epigram")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyDescriptionAttribute("Library for recording audit logs using MongoDB.")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.38.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.38+d5de8088d888dca210b4c0fdd0946ea5c25b1703")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.49.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.49+d93e1fdb6cddb8354921c3adbe83604d091ee883")] [assembly: System.Reflection.AssemblyProductAttribute("audit-logs")] [assembly: System.Reflection.AssemblyTitleAttribute("audit-logs")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.38.0")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.49.0")] [assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://git.teralevel.io/jrojas/audit/src/branch/master/audit-logs")] // Generado por la clase WriteCodeFragment de MSBuild. diff --git a/audit-logs/audit-logs/obj/Debug/net8.0/audit-logs.AssemblyInfoInputs.cache b/audit-logs/audit-logs/obj/Debug/net8.0/audit-logs.AssemblyInfoInputs.cache index 59181c1..433ed5e 100644 --- a/audit-logs/audit-logs/obj/Debug/net8.0/audit-logs.AssemblyInfoInputs.cache +++ b/audit-logs/audit-logs/obj/Debug/net8.0/audit-logs.AssemblyInfoInputs.cache @@ -1 +1 @@ -063386858bfb210d920aead57899e0629b0e37eb4b9023636a86a7fe3985a94b +b54db631e994c397a927801424844e8e207843a33168f31bf080f8d13c71001b diff --git a/audit-logs/audit-logs/obj/Debug/net8.0/audit-logs.csproj.CoreCompileInputs.cache b/audit-logs/audit-logs/obj/Debug/net8.0/audit-logs.csproj.CoreCompileInputs.cache index 24c7764..cefa787 100644 --- a/audit-logs/audit-logs/obj/Debug/net8.0/audit-logs.csproj.CoreCompileInputs.cache +++ b/audit-logs/audit-logs/obj/Debug/net8.0/audit-logs.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -f5c69936e6460786b672de95895cf942c7281cfa292c2cd886ce7c819e5725c4 +f587b899fc6531decbec066489b2fd8a29e4e4de521d01762030329daa7d32f9 diff --git a/audit-logs/audit-logs/obj/Debug/net8.0/audit-logs.dll b/audit-logs/audit-logs/obj/Debug/net8.0/audit-logs.dll index 357b9ef..8657e72 100644 Binary files a/audit-logs/audit-logs/obj/Debug/net8.0/audit-logs.dll and b/audit-logs/audit-logs/obj/Debug/net8.0/audit-logs.dll differ diff --git a/audit-logs/audit-logs/obj/Debug/net8.0/audit-logs.pdb b/audit-logs/audit-logs/obj/Debug/net8.0/audit-logs.pdb index be03121..9bc8fc1 100644 Binary files a/audit-logs/audit-logs/obj/Debug/net8.0/audit-logs.pdb and b/audit-logs/audit-logs/obj/Debug/net8.0/audit-logs.pdb differ diff --git a/audit-logs/audit-logs/obj/Debug/net8.0/ref/audit-logs.dll b/audit-logs/audit-logs/obj/Debug/net8.0/ref/audit-logs.dll index a26527b..9539d78 100644 Binary files a/audit-logs/audit-logs/obj/Debug/net8.0/ref/audit-logs.dll and b/audit-logs/audit-logs/obj/Debug/net8.0/ref/audit-logs.dll differ diff --git a/audit-logs/audit-logs/obj/Debug/net8.0/refint/audit-logs.dll b/audit-logs/audit-logs/obj/Debug/net8.0/refint/audit-logs.dll index a26527b..9539d78 100644 Binary files a/audit-logs/audit-logs/obj/Debug/net8.0/refint/audit-logs.dll and b/audit-logs/audit-logs/obj/Debug/net8.0/refint/audit-logs.dll differ diff --git a/audit-logs/audit-logs/obj/audit-logs.csproj.nuget.dgspec.json b/audit-logs/audit-logs/obj/audit-logs.csproj.nuget.dgspec.json index 0029a18..626b5ac 100644 --- a/audit-logs/audit-logs/obj/audit-logs.csproj.nuget.dgspec.json +++ b/audit-logs/audit-logs/obj/audit-logs.csproj.nuget.dgspec.json @@ -5,7 +5,7 @@ }, "projects": { "/home/julian/Documentos/repos/audit/audit-logs/audit-logs/audit-logs.csproj": { - "version": "1.0.38", + "version": "1.0.49", "restore": { "projectUniqueName": "/home/julian/Documentos/repos/audit/audit-logs/audit-logs/audit-logs.csproj", "projectName": "AuditLogs", diff --git a/audit-logs/audit-logs/obj/project.assets.json b/audit-logs/audit-logs/obj/project.assets.json index b83e334..df2d4cb 100644 --- a/audit-logs/audit-logs/obj/project.assets.json +++ b/audit-logs/audit-logs/obj/project.assets.json @@ -2567,7 +2567,7 @@ "/home/julian/.nuget/packages/": {} }, "project": { - "version": "1.0.38", + "version": "1.0.49", "restore": { "projectUniqueName": "/home/julian/Documentos/repos/audit/audit-logs/audit-logs/audit-logs.csproj", "projectName": "AuditLogs", diff --git a/audit-logs/audit-logs/obj/project.nuget.cache b/audit-logs/audit-logs/obj/project.nuget.cache index a425be6..687ea03 100644 --- a/audit-logs/audit-logs/obj/project.nuget.cache +++ b/audit-logs/audit-logs/obj/project.nuget.cache @@ -1,6 +1,6 @@ { "version": 2, - "dgSpecHash": "uiFZx1ye2Yk=", + "dgSpecHash": "ggTFRjlwTQE=", "success": true, "projectFilePath": "/home/julian/Documentos/repos/audit/audit-logs/audit-logs/audit-logs.csproj", "expectedPackageFiles": [ diff --git a/audit-logs/audit-logs/obj/rider.project.model.nuget.info b/audit-logs/audit-logs/obj/rider.project.model.nuget.info index a02df85..c376816 100755 --- a/audit-logs/audit-logs/obj/rider.project.model.nuget.info +++ b/audit-logs/audit-logs/obj/rider.project.model.nuget.info @@ -1 +1 @@ -17361796756897114 \ No newline at end of file +17362649829176427 \ No newline at end of file diff --git a/audit-logs/audit-logs/obj/rider.project.restore.info b/audit-logs/audit-logs/obj/rider.project.restore.info index 7203854..22f15da 100755 --- a/audit-logs/audit-logs/obj/rider.project.restore.info +++ b/audit-logs/audit-logs/obj/rider.project.restore.info @@ -1 +1 @@ -17362384017734786 \ No newline at end of file +17363275147780053 \ No newline at end of file diff --git a/audit-logs/audit-test/Repository/AuditServiceFilterbyTextAndDateTests.cs b/audit-logs/audit-test/Repository/AuditServiceFilterbyTextAndDateTests.cs index bfdf543..6d73d34 100755 --- a/audit-logs/audit-test/Repository/AuditServiceFilterbyTextAndDateTests.cs +++ b/audit-logs/audit-test/Repository/AuditServiceFilterbyTextAndDateTests.cs @@ -28,7 +28,7 @@ public class AuditServiceFilterbyTextAndDateTests var allRecords = await _service.AuditLogRepository.GetAllAuditRecordsAsync(); // Assert - Assert.That(allRecords.Count(), Is.EqualTo(2), "All records from the JSON file should be loaded."); + Assert.That(allRecords.Count(), Is.EqualTo(3), "All records from the JSON file should be loaded."); } [Test] diff --git a/audit-logs/audit-test/bin/Debug/net8.0/audit-logs.dll b/audit-logs/audit-test/bin/Debug/net8.0/audit-logs.dll index 357b9ef..8657e72 100644 Binary files a/audit-logs/audit-test/bin/Debug/net8.0/audit-logs.dll and b/audit-logs/audit-test/bin/Debug/net8.0/audit-logs.dll differ diff --git a/audit-logs/audit-test/bin/Debug/net8.0/audit-logs.pdb b/audit-logs/audit-test/bin/Debug/net8.0/audit-logs.pdb index be03121..9bc8fc1 100644 Binary files a/audit-logs/audit-test/bin/Debug/net8.0/audit-logs.pdb and b/audit-logs/audit-test/bin/Debug/net8.0/audit-logs.pdb differ diff --git a/audit-logs/audit-test/bin/Debug/net8.0/audit-test.deps.json b/audit-logs/audit-test/bin/Debug/net8.0/audit-test.deps.json index 5cfa092..9589bda 100644 --- a/audit-logs/audit-test/bin/Debug/net8.0/audit-test.deps.json +++ b/audit-logs/audit-test/bin/Debug/net8.0/audit-test.deps.json @@ -8,7 +8,7 @@ ".NETCoreApp,Version=v8.0": { "audit-test/1.0.0": { "dependencies": { - "AuditLogs": "1.0.31", + "AuditLogs": "1.0.43", "Microsoft.Extensions.Hosting": "8.0.0", "Microsoft.NET.Test.Sdk": "17.8.0", "Mongo2Go": "2.2.16", @@ -18,7 +18,7 @@ "NUnit3TestAdapter": "4.5.0", "coverlet.collector": "6.0.0", "xunit": "2.9.2", - "audit-logs": "1.0.32.0" + "audit-logs": "1.0.45.0" }, "runtime": { "audit-test.dll": {} @@ -944,7 +944,7 @@ } } }, - "AuditLogs/1.0.31": { + "AuditLogs/1.0.43": { "dependencies": { "Microsoft.Extensions.Hosting": "8.0.0", "MongoDB.Driver": "2.23.1", @@ -953,16 +953,16 @@ }, "runtime": { "audit-logs.dll": { - "assemblyVersion": "1.0.31", - "fileVersion": "1.0.32.0" + "assemblyVersion": "1.0.43", + "fileVersion": "1.0.45.0" } } }, - "audit-logs/1.0.32.0": { + "audit-logs/1.0.45.0": { "runtime": { "audit-logs.dll": { - "assemblyVersion": "1.0.32.0", - "fileVersion": "1.0.32.0" + "assemblyVersion": "1.0.45.0", + "fileVersion": "1.0.45.0" } } } @@ -1471,12 +1471,12 @@ "path": "zstdsharp.port/0.7.3", "hashPath": "zstdsharp.port.0.7.3.nupkg.sha512" }, - "AuditLogs/1.0.31": { + "AuditLogs/1.0.43": { "type": "project", "serviceable": false, "sha512": "" }, - "audit-logs/1.0.32.0": { + "audit-logs/1.0.45.0": { "type": "reference", "serviceable": false, "sha512": "" diff --git a/audit-logs/audit-test/bin/Debug/net8.0/audit-test.dll b/audit-logs/audit-test/bin/Debug/net8.0/audit-test.dll index 43bf6a9..a934e17 100644 Binary files a/audit-logs/audit-test/bin/Debug/net8.0/audit-test.dll and b/audit-logs/audit-test/bin/Debug/net8.0/audit-test.dll differ diff --git a/audit-logs/audit-test/bin/Debug/net8.0/audit-test.pdb b/audit-logs/audit-test/bin/Debug/net8.0/audit-test.pdb index 212d221..6651f2f 100644 Binary files a/audit-logs/audit-test/bin/Debug/net8.0/audit-test.pdb and b/audit-logs/audit-test/bin/Debug/net8.0/audit-test.pdb differ diff --git a/audit-logs/audit-test/obj/Debug/net8.0/audit-test.AssemblyInfo.cs b/audit-logs/audit-test/obj/Debug/net8.0/audit-test.AssemblyInfo.cs index ed50df7..c2c03c0 100644 --- a/audit-logs/audit-test/obj/Debug/net8.0/audit-test.AssemblyInfo.cs +++ b/audit-logs/audit-test/obj/Debug/net8.0/audit-test.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("audit-test")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+d5de8088d888dca210b4c0fdd0946ea5c25b1703")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+d93e1fdb6cddb8354921c3adbe83604d091ee883")] [assembly: System.Reflection.AssemblyProductAttribute("audit-test")] [assembly: System.Reflection.AssemblyTitleAttribute("audit-test")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/audit-logs/audit-test/obj/Debug/net8.0/audit-test.AssemblyInfoInputs.cache b/audit-logs/audit-test/obj/Debug/net8.0/audit-test.AssemblyInfoInputs.cache index 3223e8d..ce55732 100644 --- a/audit-logs/audit-test/obj/Debug/net8.0/audit-test.AssemblyInfoInputs.cache +++ b/audit-logs/audit-test/obj/Debug/net8.0/audit-test.AssemblyInfoInputs.cache @@ -1 +1 @@ -2ffdf8b1324e38c6a6c48f4e47ca1bfb97896e241783a2750d50145abc8d802d +c0df0b9358d9378e2a2536eb9a8ebdcd6e49545062cca0b25a7085d8d8820fac diff --git a/audit-logs/audit-test/obj/Debug/net8.0/audit-test.csproj.AssemblyReference.cache b/audit-logs/audit-test/obj/Debug/net8.0/audit-test.csproj.AssemblyReference.cache index 84d3772..ef890f4 100644 Binary files a/audit-logs/audit-test/obj/Debug/net8.0/audit-test.csproj.AssemblyReference.cache and b/audit-logs/audit-test/obj/Debug/net8.0/audit-test.csproj.AssemblyReference.cache differ diff --git a/audit-logs/audit-test/obj/Debug/net8.0/audit-test.dll b/audit-logs/audit-test/obj/Debug/net8.0/audit-test.dll index 43bf6a9..a934e17 100644 Binary files a/audit-logs/audit-test/obj/Debug/net8.0/audit-test.dll and b/audit-logs/audit-test/obj/Debug/net8.0/audit-test.dll differ diff --git a/audit-logs/audit-test/obj/Debug/net8.0/audit-test.pdb b/audit-logs/audit-test/obj/Debug/net8.0/audit-test.pdb index 212d221..6651f2f 100644 Binary files a/audit-logs/audit-test/obj/Debug/net8.0/audit-test.pdb and b/audit-logs/audit-test/obj/Debug/net8.0/audit-test.pdb differ diff --git a/audit-logs/audit-test/obj/Debug/net8.0/ref/audit-test.dll b/audit-logs/audit-test/obj/Debug/net8.0/ref/audit-test.dll index 0d55bf9..cd7e7f0 100644 Binary files a/audit-logs/audit-test/obj/Debug/net8.0/ref/audit-test.dll and b/audit-logs/audit-test/obj/Debug/net8.0/ref/audit-test.dll differ diff --git a/audit-logs/audit-test/obj/Debug/net8.0/refint/audit-test.dll b/audit-logs/audit-test/obj/Debug/net8.0/refint/audit-test.dll index 0d55bf9..cd7e7f0 100644 Binary files a/audit-logs/audit-test/obj/Debug/net8.0/refint/audit-test.dll and b/audit-logs/audit-test/obj/Debug/net8.0/refint/audit-test.dll differ diff --git a/audit-logs/audit-test/obj/audit-test.csproj.nuget.dgspec.json b/audit-logs/audit-test/obj/audit-test.csproj.nuget.dgspec.json index 06ae93f..16a0d6d 100644 --- a/audit-logs/audit-test/obj/audit-test.csproj.nuget.dgspec.json +++ b/audit-logs/audit-test/obj/audit-test.csproj.nuget.dgspec.json @@ -5,7 +5,7 @@ }, "projects": { "/home/julian/Documentos/repos/audit/audit-logs/audit-logs/audit-logs.csproj": { - "version": "1.0.38", + "version": "1.0.49", "restore": { "projectUniqueName": "/home/julian/Documentos/repos/audit/audit-logs/audit-logs/audit-logs.csproj", "projectName": "AuditLogs", diff --git a/audit-logs/audit-test/obj/project.assets.json b/audit-logs/audit-test/obj/project.assets.json index dfb449c..4da7872 100644 --- a/audit-logs/audit-test/obj/project.assets.json +++ b/audit-logs/audit-test/obj/project.assets.json @@ -1448,7 +1448,7 @@ "lib/net7.0/ZstdSharp.dll": {} } }, - "AuditLogs/1.0.38": { + "AuditLogs/1.0.49": { "type": "project", "framework": ".NETCoreApp,Version=v8.0", "dependencies": { @@ -3799,7 +3799,7 @@ "zstdsharp.port.nuspec" ] }, - "AuditLogs/1.0.38": { + "AuditLogs/1.0.49": { "type": "project", "path": "../audit-logs/audit-logs.csproj", "msbuildProject": "../audit-logs/audit-logs.csproj" @@ -3807,7 +3807,7 @@ }, "projectFileDependencyGroups": { "net8.0": [ - "AuditLogs >= 1.0.38", + "AuditLogs >= 1.0.49", "Microsoft.Extensions.Hosting >= 8.0.0", "Microsoft.NET.Test.Sdk >= 17.8.0", "Mongo2Go >= 2.2.16", diff --git a/audit-logs/audit-test/obj/project.nuget.cache b/audit-logs/audit-test/obj/project.nuget.cache index 3ebd722..7973fb1 100644 --- a/audit-logs/audit-test/obj/project.nuget.cache +++ b/audit-logs/audit-test/obj/project.nuget.cache @@ -1,6 +1,6 @@ { "version": 2, - "dgSpecHash": "zGy2F+0caVI=", + "dgSpecHash": "wDLe4YXKvTM=", "success": true, "projectFilePath": "/home/julian/Documentos/repos/audit/audit-logs/audit-test/audit-test.csproj", "expectedPackageFiles": [ @@ -75,7 +75,7 @@ "/home/julian/.nuget/packages/xunit.extensibility.core/2.9.2/xunit.extensibility.core.2.9.2.nupkg.sha512", "/home/julian/.nuget/packages/xunit.extensibility.execution/2.9.2/xunit.extensibility.execution.2.9.2.nupkg.sha512", "/home/julian/.nuget/packages/zstdsharp.port/0.7.3/zstdsharp.port.0.7.3.nupkg.sha512", - "/home/julian/.nuget/packages/auditlogs/1.0.38/auditlogs.1.0.38.nupkg.sha512" + "/home/julian/.nuget/packages/auditlogs/1.0.49/auditlogs.1.0.49.nupkg.sha512" ], "logs": [] } \ No newline at end of file diff --git a/audit-logs/audit-test/obj/rider.project.model.nuget.info b/audit-logs/audit-test/obj/rider.project.model.nuget.info index a02df85..c376816 100755 --- a/audit-logs/audit-test/obj/rider.project.model.nuget.info +++ b/audit-logs/audit-test/obj/rider.project.model.nuget.info @@ -1 +1 @@ -17361796756897114 \ No newline at end of file +17362649829176427 \ No newline at end of file diff --git a/audit-logs/audit-test/obj/rider.project.restore.info b/audit-logs/audit-test/obj/rider.project.restore.info index df31a0d..22f15da 100755 --- a/audit-logs/audit-test/obj/rider.project.restore.info +++ b/audit-logs/audit-test/obj/rider.project.restore.info @@ -1 +1 @@ -17362384017774786 \ No newline at end of file +17363275147780053 \ No newline at end of file