From 6d50c626c7e7997f476b8d8d7cc385b70ccf057b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ren=C3=A9=20White=20Enciso?= Date: Wed, 25 Feb 2026 18:12:07 -0600 Subject: [PATCH] feat(operations-dal): add operations dal repository skeleton --- Directory.Build.props | 10 + Operations.DAL.slnx | 5 + .../Contracts/OperationsConfigRecord.cs | 7 + src/Operations.DAL/Operations.DAL.csproj | 9 + .../IOperationsConfigRepository.cs | 9 + .../InMemoryOperationsConfigRepository.cs | 21 ++ .../Debug/net10.0/Operations.DAL.deps.json | 23 ++ .../bin/Debug/net10.0/Operations.DAL.dll | Bin 0 -> 8192 bytes .../bin/Debug/net10.0/Operations.DAL.pdb | Bin 0 -> 11716 bytes ...oreApp,Version=v10.0.AssemblyAttributes.cs | 4 + .../net10.0/Operations.DAL.AssemblyInfo.cs | 23 ++ .../Operations.DAL.AssemblyInfoInputs.cache | 1 + ....GeneratedMSBuildEditorConfig.editorconfig | 17 + .../net10.0/Operations.DAL.GlobalUsings.g.cs | 8 + .../Debug/net10.0/Operations.DAL.assets.cache | Bin 0 -> 154 bytes ...rations.DAL.csproj.CoreCompileInputs.cache | 1 + ...Operations.DAL.csproj.FileListAbsolute.txt | 11 + .../obj/Debug/net10.0/Operations.DAL.dll | Bin 0 -> 8192 bytes .../obj/Debug/net10.0/Operations.DAL.pdb | Bin 0 -> 11716 bytes .../obj/Debug/net10.0/ref/Operations.DAL.dll | Bin 0 -> 6656 bytes .../Debug/net10.0/refint/Operations.DAL.dll | Bin 0 -> 6656 bytes .../Operations.DAL.csproj.nuget.dgspec.json | 342 +++++++++++++++++ .../obj/Operations.DAL.csproj.nuget.g.props | 15 + .../obj/Operations.DAL.csproj.nuget.g.targets | 2 + src/Operations.DAL/obj/project.assets.json | 347 ++++++++++++++++++ src/Operations.DAL/obj/project.nuget.cache | 8 + 26 files changed, 863 insertions(+) create mode 100644 Directory.Build.props create mode 100644 Operations.DAL.slnx create mode 100644 src/Operations.DAL/Contracts/OperationsConfigRecord.cs create mode 100644 src/Operations.DAL/Operations.DAL.csproj create mode 100644 src/Operations.DAL/Repositories/IOperationsConfigRepository.cs create mode 100644 src/Operations.DAL/Repositories/InMemoryOperationsConfigRepository.cs create mode 100644 src/Operations.DAL/bin/Debug/net10.0/Operations.DAL.deps.json create mode 100644 src/Operations.DAL/bin/Debug/net10.0/Operations.DAL.dll create mode 100644 src/Operations.DAL/bin/Debug/net10.0/Operations.DAL.pdb create mode 100644 src/Operations.DAL/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs create mode 100644 src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.AssemblyInfo.cs create mode 100644 src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.AssemblyInfoInputs.cache create mode 100644 src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.GlobalUsings.g.cs create mode 100644 src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.assets.cache create mode 100644 src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.csproj.CoreCompileInputs.cache create mode 100644 src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.csproj.FileListAbsolute.txt create mode 100644 src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.dll create mode 100644 src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.pdb create mode 100644 src/Operations.DAL/obj/Debug/net10.0/ref/Operations.DAL.dll create mode 100644 src/Operations.DAL/obj/Debug/net10.0/refint/Operations.DAL.dll create mode 100644 src/Operations.DAL/obj/Operations.DAL.csproj.nuget.dgspec.json create mode 100644 src/Operations.DAL/obj/Operations.DAL.csproj.nuget.g.props create mode 100644 src/Operations.DAL/obj/Operations.DAL.csproj.nuget.g.targets create mode 100644 src/Operations.DAL/obj/project.assets.json create mode 100644 src/Operations.DAL/obj/project.nuget.cache diff --git a/Directory.Build.props b/Directory.Build.props new file mode 100644 index 0000000..9b50b74 --- /dev/null +++ b/Directory.Build.props @@ -0,0 +1,10 @@ + + + AgileWebs + AgileWebs + git + http://192.168.68.156:3000/AgileWebs/operations-dal + http://192.168.68.156:3000/AgileWebs/operations-dal + false + + diff --git a/Operations.DAL.slnx b/Operations.DAL.slnx new file mode 100644 index 0000000..11b6302 --- /dev/null +++ b/Operations.DAL.slnx @@ -0,0 +1,5 @@ + + + + + diff --git a/src/Operations.DAL/Contracts/OperationsConfigRecord.cs b/src/Operations.DAL/Contracts/OperationsConfigRecord.cs new file mode 100644 index 0000000..9cbcce2 --- /dev/null +++ b/src/Operations.DAL/Contracts/OperationsConfigRecord.cs @@ -0,0 +1,7 @@ +namespace Operations.DAL.Contracts; + +public sealed record OperationsConfigRecord( + string LocationId, + string Version, + DateTime EffectiveAtUtc, + IReadOnlyDictionary FeatureFlags); diff --git a/src/Operations.DAL/Operations.DAL.csproj b/src/Operations.DAL/Operations.DAL.csproj new file mode 100644 index 0000000..b760144 --- /dev/null +++ b/src/Operations.DAL/Operations.DAL.csproj @@ -0,0 +1,9 @@ + + + + net10.0 + enable + enable + + + diff --git a/src/Operations.DAL/Repositories/IOperationsConfigRepository.cs b/src/Operations.DAL/Repositories/IOperationsConfigRepository.cs new file mode 100644 index 0000000..41d36af --- /dev/null +++ b/src/Operations.DAL/Repositories/IOperationsConfigRepository.cs @@ -0,0 +1,9 @@ +using Operations.DAL.Contracts; + +namespace Operations.DAL.Repositories; + +public interface IOperationsConfigRepository +{ + Task GetEffectiveAsync(string locationId, DateTime effectiveAtUtc, CancellationToken cancellationToken); + Task UpsertAsync(OperationsConfigRecord record, CancellationToken cancellationToken); +} diff --git a/src/Operations.DAL/Repositories/InMemoryOperationsConfigRepository.cs b/src/Operations.DAL/Repositories/InMemoryOperationsConfigRepository.cs new file mode 100644 index 0000000..2903d0b --- /dev/null +++ b/src/Operations.DAL/Repositories/InMemoryOperationsConfigRepository.cs @@ -0,0 +1,21 @@ +using System.Collections.Concurrent; +using Operations.DAL.Contracts; + +namespace Operations.DAL.Repositories; + +public sealed class InMemoryOperationsConfigRepository : IOperationsConfigRepository +{ + private readonly ConcurrentDictionary store = new(); + + public Task GetEffectiveAsync(string locationId, DateTime effectiveAtUtc, CancellationToken cancellationToken) + { + store.TryGetValue(locationId, out var record); + return Task.FromResult(record); + } + + public Task UpsertAsync(OperationsConfigRecord record, CancellationToken cancellationToken) + { + store[record.LocationId] = record; + return Task.CompletedTask; + } +} diff --git a/src/Operations.DAL/bin/Debug/net10.0/Operations.DAL.deps.json b/src/Operations.DAL/bin/Debug/net10.0/Operations.DAL.deps.json new file mode 100644 index 0000000..694dcb2 --- /dev/null +++ b/src/Operations.DAL/bin/Debug/net10.0/Operations.DAL.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "Operations.DAL/1.0.0": { + "runtime": { + "Operations.DAL.dll": {} + } + } + } + }, + "libraries": { + "Operations.DAL/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/src/Operations.DAL/bin/Debug/net10.0/Operations.DAL.dll b/src/Operations.DAL/bin/Debug/net10.0/Operations.DAL.dll new file mode 100644 index 0000000000000000000000000000000000000000..569e0f0ac06566237a64c9bfa0e69816e554a0a2 GIT binary patch literal 8192 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 literal 0 HcmV?d00001 diff --git a/src/Operations.DAL/bin/Debug/net10.0/Operations.DAL.pdb b/src/Operations.DAL/bin/Debug/net10.0/Operations.DAL.pdb new file mode 100644 index 0000000000000000000000000000000000000000..6b9f9c44accad7673d9b4b96bd78ad6b03b08598 GIT binary patch literal 11716 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 +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.AssemblyInfo.cs b/src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.AssemblyInfo.cs new file mode 100644 index 0000000..fc45b3b --- /dev/null +++ b/src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("AgileWebs")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+fb67b61910762d7bc3a9cc25961f94538efec6c1")] +[assembly: System.Reflection.AssemblyProductAttribute("Operations.DAL")] +[assembly: System.Reflection.AssemblyTitleAttribute("Operations.DAL")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "http://192.168.68.156:3000/AgileWebs/operations-dal")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.AssemblyInfoInputs.cache b/src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.AssemblyInfoInputs.cache new file mode 100644 index 0000000..d39c76e --- /dev/null +++ b/src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +5657a47de26f4e0991940ed86b5692e6f8c8bea4ded21bafa2e9ac2e47dcf0b8 diff --git a/src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.GeneratedMSBuildEditorConfig.editorconfig b/src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..8e78aa0 --- /dev/null +++ b/src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,17 @@ +is_global = true +build_property.TargetFramework = net10.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Operations.DAL +build_property.ProjectDir = /home/jrenewhite/agilewebs/greenfield/operations-dal/src/Operations.DAL/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = diff --git a/src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.GlobalUsings.g.cs b/src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.GlobalUsings.g.cs new file mode 100644 index 0000000..d12bcbc --- /dev/null +++ b/src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.assets.cache b/src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.assets.cache new file mode 100644 index 0000000000000000000000000000000000000000..4af515702d66e0da4e25d6f234336386d33597d1 GIT binary patch literal 154 zcmWIWc6a1qU|`tKv0&~qx$R+-^zEgq9xREHTDj@u47Om4KK|4D7O)l^n+8-vEMNpG pRMgMN&rQ|ODoV{uEzig-N!8cOD@{)=(Jx3$&Q45EE!HPw8UXy%9Wej^ literal 0 HcmV?d00001 diff --git a/src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.csproj.CoreCompileInputs.cache b/src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..b484440 --- /dev/null +++ b/src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +da8e2d7d76d3bcec097042989203c7ad2e653ffc2191e5920363cf7752534016 diff --git a/src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.csproj.FileListAbsolute.txt b/src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..313a4bf --- /dev/null +++ b/src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.csproj.FileListAbsolute.txt @@ -0,0 +1,11 @@ +/home/jrenewhite/agilewebs/greenfield/operations-dal/src/Operations.DAL/bin/Debug/net10.0/Operations.DAL.deps.json +/home/jrenewhite/agilewebs/greenfield/operations-dal/src/Operations.DAL/bin/Debug/net10.0/Operations.DAL.dll +/home/jrenewhite/agilewebs/greenfield/operations-dal/src/Operations.DAL/bin/Debug/net10.0/Operations.DAL.pdb +/home/jrenewhite/agilewebs/greenfield/operations-dal/src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.GeneratedMSBuildEditorConfig.editorconfig +/home/jrenewhite/agilewebs/greenfield/operations-dal/src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.AssemblyInfoInputs.cache +/home/jrenewhite/agilewebs/greenfield/operations-dal/src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.AssemblyInfo.cs +/home/jrenewhite/agilewebs/greenfield/operations-dal/src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.csproj.CoreCompileInputs.cache +/home/jrenewhite/agilewebs/greenfield/operations-dal/src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.dll +/home/jrenewhite/agilewebs/greenfield/operations-dal/src/Operations.DAL/obj/Debug/net10.0/refint/Operations.DAL.dll +/home/jrenewhite/agilewebs/greenfield/operations-dal/src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.pdb +/home/jrenewhite/agilewebs/greenfield/operations-dal/src/Operations.DAL/obj/Debug/net10.0/ref/Operations.DAL.dll diff --git a/src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.dll b/src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.dll new file mode 100644 index 0000000000000000000000000000000000000000..569e0f0ac06566237a64c9bfa0e69816e554a0a2 GIT binary patch literal 8192 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 literal 0 HcmV?d00001 diff --git a/src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.pdb b/src/Operations.DAL/obj/Debug/net10.0/Operations.DAL.pdb new file mode 100644 index 0000000000000000000000000000000000000000..6b9f9c44accad7673d9b4b96bd78ad6b03b08598 GIT binary patch literal 11716 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 literal 0 HcmV?d00001 diff --git a/src/Operations.DAL/obj/Debug/net10.0/refint/Operations.DAL.dll b/src/Operations.DAL/obj/Debug/net10.0/refint/Operations.DAL.dll new file mode 100644 index 0000000000000000000000000000000000000000..3916f003fa86e0a196f2abb3f15ce808b59ee9db GIT binary patch literal 6656 zcmeHLTWlOx8UAN)Sv&RC>)eS+r`REBLnphj(dnkyT1suODH-QZ%OpDjql>hB}gJluQZ>ET5nOG#c z$%$B7R)`*h>>b$kuhnhDXIi04t2p>)JM6W}vRMQ#LsLPZFU`0?$&w*Dt@+}r53aul z0D;U&4EK(rB6`jBTmv%MheZ&agRQtaN(LS@S6B`Vxlgo$i`(6atD|JlZU_5_{2XT> zvG2{L+V3xBR$kus{??D4+Wk51>Z7iGMh5OPu@6hS_ zv!|7Y2VQ5EhqaV8lp0Epvco7@z)!F~4ZMtnD~dIk>3QEZ?Xt%fgWbXMHE>~`_Jig% za^TE`To(7E;QO&=4V<=|0vn@%RnF|V+116&r^*m*58~ei7Ot74J-A>;NnB6k;{LIY zUoT8IFIa?wzQ^e4(2a16Zb`hXTn|4^xABIE(f6d}4dpMP7`+iH!{+Y_<1LA+63OTX&}P77@f;-osX3=9S7g!>U0+45pdt%c@6DtVl$Mx zQMPPzY`M9^a-MpcT>L%Kk=KTo`1>R}xY@8yeJ$PdVbQ@|$4uDL(%qmJJGc+Sb-ccs zK0gV++T!lggOE}s0a0v2MScGT+H2VxmpCP>2BN*>4x`uh21jf+kYvFEsO44ayFO5nZlbDlu zUgC2Sb%`c$8^(nF)PcL{l@_Y>YtS(oq}M1G+DqT15!y#rC>hc)OFkeCBl#!bZu$ps zfF1x3P(;yah_b-1(>!pTz76~aT>;M1+rZ}~8uSZgoUjyx#--;8iH4NC))&i;`ZE^opc!O1vWxPZ-8= zm3|3a2s6G#cYyc9zr|Q=!k8#nUBaNd@Qf*Vo}-{QL!)4fHi7PeMxg}os}xz`k?t%f zz+ka!m1k&s)8P2H<=EonAmt`rtm(d9u*71T^162gx7?i2i?g;>&zgpBI=1fC7Z1_# zX{T7T#7Ua13Rh>jr)9^cXuj_GqN0sEmL;UQr=1bDa7}~G2!EnfV(GFN^Xj%i7pk6c z{eUhDf1$1RFZdXr^&-)7AT7Aklw-*Db46L9gT=JSPmtEs`7D5ZSZ3 zw=|Bk1Z8z!U!d*5E;ZZQV&;>k;VB2$?pG0j=R2|QRYZE$- zX;SEZ%@vcDj%^V?TMr2u(X|q$@#F6iF9_B;-#m=2Zun3XUceKLPz)DpmuV4Ti>@ri4a^TVyg0lP~eb~)0-rnoQ|s$7;Kh;fW`_P>g(<6 zMWr~J5A~yY2v8A@;kGw{Uvj#);d(zMBKzSpzQ5rs&dWcSJ-k!PhqhmG_3DgcPh2%b zRnEsH*LlfPV7EzjA;Ne{p#Tv7An6DY!{&Z7nca)2mu~eFp1I z7gtf)B%x5(SQ!h=B~ic|v|FL5oOU?zqn$K1;`k8_DWpl}K&dctq%e{mO{b2G94a0u z7(@D~VH`RfvWr9yLt;$~rLXn-u=b)8`yDJBV zFmKk$*^bYS-&`chwsylz^C{&b_H_%u37P|y!>O}GxfS^drk8@4 zu<}7;Q~5JItw@^``W^g+slYj)VeHEk>|PzJP*t{3M~`%HLb@M=w;-xZkQ8{w3h$4j zPBYppA!9Fq|Dnn_;V0V4LS2WqUUe78|Uj)I*7O*uD>>G?VKIJ94g>saYSMo=cF{Uc?6O} zXq}}74WSRCxEqii1~mek67Iv`hUh3VRKjIIZa~B3s2sB~jJO9)1zs#!e!v!-y5sN literal 0 HcmV?d00001 diff --git a/src/Operations.DAL/obj/Operations.DAL.csproj.nuget.dgspec.json b/src/Operations.DAL/obj/Operations.DAL.csproj.nuget.dgspec.json new file mode 100644 index 0000000..8640893 --- /dev/null +++ b/src/Operations.DAL/obj/Operations.DAL.csproj.nuget.dgspec.json @@ -0,0 +1,342 @@ +{ + "format": 1, + "restore": { + "/home/jrenewhite/agilewebs/greenfield/operations-dal/src/Operations.DAL/Operations.DAL.csproj": {} + }, + "projects": { + "/home/jrenewhite/agilewebs/greenfield/operations-dal/src/Operations.DAL/Operations.DAL.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/jrenewhite/agilewebs/greenfield/operations-dal/src/Operations.DAL/Operations.DAL.csproj", + "projectName": "Operations.DAL", + "projectPath": "/home/jrenewhite/agilewebs/greenfield/operations-dal/src/Operations.DAL/Operations.DAL.csproj", + "packagesPath": "/home/jrenewhite/.nuget/packages/", + "outputPath": "/home/jrenewhite/agilewebs/greenfield/operations-dal/src/Operations.DAL/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/jrenewhite/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "/usr/lib/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/lib/dotnet/sdk/10.0.103/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } + } +} \ No newline at end of file diff --git a/src/Operations.DAL/obj/Operations.DAL.csproj.nuget.g.props b/src/Operations.DAL/obj/Operations.DAL.csproj.nuget.g.props new file mode 100644 index 0000000..2681b4a --- /dev/null +++ b/src/Operations.DAL/obj/Operations.DAL.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/jrenewhite/.nuget/packages/ + /home/jrenewhite/.nuget/packages/ + PackageReference + 7.0.0 + + + + + \ No newline at end of file diff --git a/src/Operations.DAL/obj/Operations.DAL.csproj.nuget.g.targets b/src/Operations.DAL/obj/Operations.DAL.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/src/Operations.DAL/obj/Operations.DAL.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/src/Operations.DAL/obj/project.assets.json b/src/Operations.DAL/obj/project.assets.json new file mode 100644 index 0000000..395285a --- /dev/null +++ b/src/Operations.DAL/obj/project.assets.json @@ -0,0 +1,347 @@ +{ + "version": 3, + "targets": { + "net10.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net10.0": [] + }, + "packageFolders": { + "/home/jrenewhite/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/jrenewhite/agilewebs/greenfield/operations-dal/src/Operations.DAL/Operations.DAL.csproj", + "projectName": "Operations.DAL", + "projectPath": "/home/jrenewhite/agilewebs/greenfield/operations-dal/src/Operations.DAL/Operations.DAL.csproj", + "packagesPath": "/home/jrenewhite/.nuget/packages/", + "outputPath": "/home/jrenewhite/agilewebs/greenfield/operations-dal/src/Operations.DAL/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/jrenewhite/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "/usr/lib/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/lib/dotnet/sdk/10.0.103/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } +} \ No newline at end of file diff --git a/src/Operations.DAL/obj/project.nuget.cache b/src/Operations.DAL/obj/project.nuget.cache new file mode 100644 index 0000000..8e8786b --- /dev/null +++ b/src/Operations.DAL/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "1RN/AYotuOg=", + "success": true, + "projectFilePath": "/home/jrenewhite/agilewebs/greenfield/operations-dal/src/Operations.DAL/Operations.DAL.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file