├── README.md ├── packages ├── QRCoder.1.3.6 │ ├── .signature.p7s │ ├── QRCoder.1.3.6.nupkg │ └── lib │ │ ├── monoandroid │ │ └── QRCoder.dll │ │ ├── monotouch │ │ └── QRCoder.dll │ │ ├── net35 │ │ └── QRCoder.dll │ │ ├── net40 │ │ └── QRCoder.dll │ │ ├── netcore │ │ └── QRCoder.dll │ │ ├── netstandard1.6 │ │ └── QRCoder.dll │ │ ├── netstandard2.0 │ │ └── QRCoder.dll │ │ ├── portable-net45+win8+wpa81 │ │ └── QRCoder.dll │ │ ├── portable-net45+wpa81+wp81+wp8+uap │ │ └── QRCoder.dll │ │ ├── uap │ │ └── QRCoder.dll │ │ ├── uap10.0 │ │ └── QRCoder.dll │ │ └── xamarinios │ │ └── QRCoder.dll └── System.Drawing.Common.4.5.0 │ ├── .signature.p7s │ ├── LICENSE.TXT │ ├── System.Drawing.Common.4.5.0.nupkg │ ├── THIRD-PARTY-NOTICES.TXT │ ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net461 │ │ └── System.Drawing.Common.dll │ ├── netstandard2.0 │ │ └── System.Drawing.Common.dll │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ │ ├── ref │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net461 │ │ └── System.Drawing.Common.dll │ ├── netstandard2.0 │ │ └── System.Drawing.Common.dll │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ │ ├── runtimes │ ├── unix │ │ └── lib │ │ │ └── netcoreapp2.0 │ │ │ └── System.Drawing.Common.dll │ └── win │ │ └── lib │ │ └── netcoreapp2.0 │ │ └── System.Drawing.Common.dll │ ├── useSharedDesignerContext.txt │ └── version.txt ├── warehouse.sln └── warehouse ├── App.config ├── ConfirmEQ.Designer.cs ├── ConfirmEQ.cs ├── ConfirmEQ.resx ├── EQcoder.cs ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Form2.Designer.cs ├── Form2.cs ├── Form2.resx ├── InputMG.Designer.cs ├── InputMG.cs ├── InputMG.resx ├── Instoremg.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Setsystem.Designer.cs ├── Setsystem.cs ├── Setsystem.resx ├── TSCLIB.cs ├── authority.Designer.cs ├── authority.cs ├── authority.resx ├── bin └── Debug │ ├── Interop.CoreScanner.dll │ ├── QRCoder.dll │ ├── System.Drawing.Common.dll │ ├── System.Security.Cryptography.Algorithms.dll │ ├── System.Security.Cryptography.Primitives.dll │ ├── warehouse.exe │ ├── warehouse.exe.config │ ├── warehouse.pdb │ ├── zxing.dll │ ├── zxing.pdb │ ├── zxing.presentation.dll │ ├── zxing.presentation.pdb │ ├── zxing.presentation.xml │ └── zxing.xml ├── donestore.Designer.cs ├── donestore.cs ├── donestore.resx ├── filestring.cs ├── obj └── Debug │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── Interop.CoreScanner.dll │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── warehouse.ConfirmEQ.resources │ ├── warehouse.Form1.resources │ ├── warehouse.Form2.resources │ ├── warehouse.InputMG.resources │ ├── warehouse.Properties.Resources.resources │ ├── warehouse.Setsystem.resources │ ├── warehouse.authority.resources │ ├── warehouse.csproj.CopyComplete │ ├── warehouse.csproj.CoreCompileInputs.cache │ ├── warehouse.csproj.FileListAbsolute.txt │ ├── warehouse.csproj.GenerateResource.cache │ ├── warehouse.csproj.ResolveComReference.cache │ ├── warehouse.csprojAssemblyReference.cache │ ├── warehouse.donestore.resources │ ├── warehouse.exe │ ├── warehouse.outstore.resources │ ├── warehouse.pdb │ ├── warehouse.personEQ.resources │ └── warehouse.searchstore.resources ├── outstore.Designer.cs ├── outstore.cs ├── outstore.resx ├── packages.config ├── personEQ.Designer.cs ├── personEQ.cs ├── personEQ.resx ├── searchstore.Designer.cs ├── searchstore.cs ├── searchstore.resx ├── securitycode.cs └── warehouse.csproj /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/README.md -------------------------------------------------------------------------------- /packages/QRCoder.1.3.6/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/packages/QRCoder.1.3.6/.signature.p7s -------------------------------------------------------------------------------- /packages/QRCoder.1.3.6/QRCoder.1.3.6.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/packages/QRCoder.1.3.6/QRCoder.1.3.6.nupkg -------------------------------------------------------------------------------- /packages/QRCoder.1.3.6/lib/monoandroid/QRCoder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/packages/QRCoder.1.3.6/lib/monoandroid/QRCoder.dll -------------------------------------------------------------------------------- /packages/QRCoder.1.3.6/lib/monotouch/QRCoder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/packages/QRCoder.1.3.6/lib/monotouch/QRCoder.dll -------------------------------------------------------------------------------- /packages/QRCoder.1.3.6/lib/net35/QRCoder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/packages/QRCoder.1.3.6/lib/net35/QRCoder.dll -------------------------------------------------------------------------------- /packages/QRCoder.1.3.6/lib/net40/QRCoder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/packages/QRCoder.1.3.6/lib/net40/QRCoder.dll -------------------------------------------------------------------------------- /packages/QRCoder.1.3.6/lib/netcore/QRCoder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/packages/QRCoder.1.3.6/lib/netcore/QRCoder.dll -------------------------------------------------------------------------------- /packages/QRCoder.1.3.6/lib/netstandard1.6/QRCoder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/packages/QRCoder.1.3.6/lib/netstandard1.6/QRCoder.dll -------------------------------------------------------------------------------- /packages/QRCoder.1.3.6/lib/netstandard2.0/QRCoder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/packages/QRCoder.1.3.6/lib/netstandard2.0/QRCoder.dll -------------------------------------------------------------------------------- /packages/QRCoder.1.3.6/lib/portable-net45+win8+wpa81/QRCoder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/packages/QRCoder.1.3.6/lib/portable-net45+win8+wpa81/QRCoder.dll -------------------------------------------------------------------------------- /packages/QRCoder.1.3.6/lib/portable-net45+wpa81+wp81+wp8+uap/QRCoder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/packages/QRCoder.1.3.6/lib/portable-net45+wpa81+wp81+wp8+uap/QRCoder.dll -------------------------------------------------------------------------------- /packages/QRCoder.1.3.6/lib/uap/QRCoder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/packages/QRCoder.1.3.6/lib/uap/QRCoder.dll -------------------------------------------------------------------------------- /packages/QRCoder.1.3.6/lib/uap10.0/QRCoder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/packages/QRCoder.1.3.6/lib/uap10.0/QRCoder.dll -------------------------------------------------------------------------------- /packages/QRCoder.1.3.6/lib/xamarinios/QRCoder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/packages/QRCoder.1.3.6/lib/xamarinios/QRCoder.dll -------------------------------------------------------------------------------- /packages/System.Drawing.Common.4.5.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/packages/System.Drawing.Common.4.5.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Drawing.Common.4.5.0/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/packages/System.Drawing.Common.4.5.0/LICENSE.TXT -------------------------------------------------------------------------------- /packages/System.Drawing.Common.4.5.0/System.Drawing.Common.4.5.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/packages/System.Drawing.Common.4.5.0/System.Drawing.Common.4.5.0.nupkg -------------------------------------------------------------------------------- /packages/System.Drawing.Common.4.5.0/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/packages/System.Drawing.Common.4.5.0/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /packages/System.Drawing.Common.4.5.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Drawing.Common.4.5.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Drawing.Common.4.5.0/lib/net461/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/packages/System.Drawing.Common.4.5.0/lib/net461/System.Drawing.Common.dll -------------------------------------------------------------------------------- /packages/System.Drawing.Common.4.5.0/lib/netstandard2.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/packages/System.Drawing.Common.4.5.0/lib/netstandard2.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /packages/System.Drawing.Common.4.5.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Drawing.Common.4.5.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Drawing.Common.4.5.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Drawing.Common.4.5.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Drawing.Common.4.5.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Drawing.Common.4.5.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Drawing.Common.4.5.0/ref/net461/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/packages/System.Drawing.Common.4.5.0/ref/net461/System.Drawing.Common.dll -------------------------------------------------------------------------------- /packages/System.Drawing.Common.4.5.0/ref/netstandard2.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/packages/System.Drawing.Common.4.5.0/ref/netstandard2.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /packages/System.Drawing.Common.4.5.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Drawing.Common.4.5.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Drawing.Common.4.5.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Drawing.Common.4.5.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Drawing.Common.4.5.0/runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/packages/System.Drawing.Common.4.5.0/runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /packages/System.Drawing.Common.4.5.0/runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/packages/System.Drawing.Common.4.5.0/runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /packages/System.Drawing.Common.4.5.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Drawing.Common.4.5.0/version.txt: -------------------------------------------------------------------------------- 1 | 30ab651fcb4354552bd4891619a0bdd81e0ebdbf 2 | -------------------------------------------------------------------------------- /warehouse.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse.sln -------------------------------------------------------------------------------- /warehouse/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/App.config -------------------------------------------------------------------------------- /warehouse/ConfirmEQ.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/ConfirmEQ.Designer.cs -------------------------------------------------------------------------------- /warehouse/ConfirmEQ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/ConfirmEQ.cs -------------------------------------------------------------------------------- /warehouse/ConfirmEQ.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/ConfirmEQ.resx -------------------------------------------------------------------------------- /warehouse/EQcoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/EQcoder.cs -------------------------------------------------------------------------------- /warehouse/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/Form1.Designer.cs -------------------------------------------------------------------------------- /warehouse/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/Form1.cs -------------------------------------------------------------------------------- /warehouse/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/Form1.resx -------------------------------------------------------------------------------- /warehouse/Form2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/Form2.Designer.cs -------------------------------------------------------------------------------- /warehouse/Form2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/Form2.cs -------------------------------------------------------------------------------- /warehouse/Form2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/Form2.resx -------------------------------------------------------------------------------- /warehouse/InputMG.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/InputMG.Designer.cs -------------------------------------------------------------------------------- /warehouse/InputMG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/InputMG.cs -------------------------------------------------------------------------------- /warehouse/InputMG.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/InputMG.resx -------------------------------------------------------------------------------- /warehouse/Instoremg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/Instoremg.cs -------------------------------------------------------------------------------- /warehouse/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/Program.cs -------------------------------------------------------------------------------- /warehouse/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /warehouse/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /warehouse/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/Properties/Resources.resx -------------------------------------------------------------------------------- /warehouse/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /warehouse/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/Properties/Settings.settings -------------------------------------------------------------------------------- /warehouse/Setsystem.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/Setsystem.Designer.cs -------------------------------------------------------------------------------- /warehouse/Setsystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/Setsystem.cs -------------------------------------------------------------------------------- /warehouse/Setsystem.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/Setsystem.resx -------------------------------------------------------------------------------- /warehouse/TSCLIB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/TSCLIB.cs -------------------------------------------------------------------------------- /warehouse/authority.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/authority.Designer.cs -------------------------------------------------------------------------------- /warehouse/authority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/authority.cs -------------------------------------------------------------------------------- /warehouse/authority.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/authority.resx -------------------------------------------------------------------------------- /warehouse/bin/Debug/Interop.CoreScanner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/bin/Debug/Interop.CoreScanner.dll -------------------------------------------------------------------------------- /warehouse/bin/Debug/QRCoder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/bin/Debug/QRCoder.dll -------------------------------------------------------------------------------- /warehouse/bin/Debug/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/bin/Debug/System.Drawing.Common.dll -------------------------------------------------------------------------------- /warehouse/bin/Debug/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/bin/Debug/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /warehouse/bin/Debug/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/bin/Debug/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /warehouse/bin/Debug/warehouse.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/bin/Debug/warehouse.exe -------------------------------------------------------------------------------- /warehouse/bin/Debug/warehouse.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/bin/Debug/warehouse.exe.config -------------------------------------------------------------------------------- /warehouse/bin/Debug/warehouse.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/bin/Debug/warehouse.pdb -------------------------------------------------------------------------------- /warehouse/bin/Debug/zxing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/bin/Debug/zxing.dll -------------------------------------------------------------------------------- /warehouse/bin/Debug/zxing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/bin/Debug/zxing.pdb -------------------------------------------------------------------------------- /warehouse/bin/Debug/zxing.presentation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/bin/Debug/zxing.presentation.dll -------------------------------------------------------------------------------- /warehouse/bin/Debug/zxing.presentation.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/bin/Debug/zxing.presentation.pdb -------------------------------------------------------------------------------- /warehouse/bin/Debug/zxing.presentation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/bin/Debug/zxing.presentation.xml -------------------------------------------------------------------------------- /warehouse/bin/Debug/zxing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/bin/Debug/zxing.xml -------------------------------------------------------------------------------- /warehouse/donestore.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/donestore.Designer.cs -------------------------------------------------------------------------------- /warehouse/donestore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/donestore.cs -------------------------------------------------------------------------------- /warehouse/donestore.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/donestore.resx -------------------------------------------------------------------------------- /warehouse/filestring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/filestring.cs -------------------------------------------------------------------------------- /warehouse/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /warehouse/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /warehouse/obj/Debug/Interop.CoreScanner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/obj/Debug/Interop.CoreScanner.dll -------------------------------------------------------------------------------- /warehouse/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /warehouse/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /warehouse/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /warehouse/obj/Debug/warehouse.ConfirmEQ.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/obj/Debug/warehouse.ConfirmEQ.resources -------------------------------------------------------------------------------- /warehouse/obj/Debug/warehouse.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/obj/Debug/warehouse.Form1.resources -------------------------------------------------------------------------------- /warehouse/obj/Debug/warehouse.Form2.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/obj/Debug/warehouse.Form2.resources -------------------------------------------------------------------------------- /warehouse/obj/Debug/warehouse.InputMG.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/obj/Debug/warehouse.InputMG.resources -------------------------------------------------------------------------------- /warehouse/obj/Debug/warehouse.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/obj/Debug/warehouse.Properties.Resources.resources -------------------------------------------------------------------------------- /warehouse/obj/Debug/warehouse.Setsystem.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/obj/Debug/warehouse.Setsystem.resources -------------------------------------------------------------------------------- /warehouse/obj/Debug/warehouse.authority.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/obj/Debug/warehouse.authority.resources -------------------------------------------------------------------------------- /warehouse/obj/Debug/warehouse.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /warehouse/obj/Debug/warehouse.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 245d40fbf032349c0a9463d724e297b31a86505f 2 | -------------------------------------------------------------------------------- /warehouse/obj/Debug/warehouse.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/obj/Debug/warehouse.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /warehouse/obj/Debug/warehouse.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/obj/Debug/warehouse.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /warehouse/obj/Debug/warehouse.csproj.ResolveComReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/obj/Debug/warehouse.csproj.ResolveComReference.cache -------------------------------------------------------------------------------- /warehouse/obj/Debug/warehouse.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/obj/Debug/warehouse.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /warehouse/obj/Debug/warehouse.donestore.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/obj/Debug/warehouse.donestore.resources -------------------------------------------------------------------------------- /warehouse/obj/Debug/warehouse.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/obj/Debug/warehouse.exe -------------------------------------------------------------------------------- /warehouse/obj/Debug/warehouse.outstore.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/obj/Debug/warehouse.outstore.resources -------------------------------------------------------------------------------- /warehouse/obj/Debug/warehouse.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/obj/Debug/warehouse.pdb -------------------------------------------------------------------------------- /warehouse/obj/Debug/warehouse.personEQ.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/obj/Debug/warehouse.personEQ.resources -------------------------------------------------------------------------------- /warehouse/obj/Debug/warehouse.searchstore.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/obj/Debug/warehouse.searchstore.resources -------------------------------------------------------------------------------- /warehouse/outstore.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/outstore.Designer.cs -------------------------------------------------------------------------------- /warehouse/outstore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/outstore.cs -------------------------------------------------------------------------------- /warehouse/outstore.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/outstore.resx -------------------------------------------------------------------------------- /warehouse/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/packages.config -------------------------------------------------------------------------------- /warehouse/personEQ.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/personEQ.Designer.cs -------------------------------------------------------------------------------- /warehouse/personEQ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/personEQ.cs -------------------------------------------------------------------------------- /warehouse/personEQ.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/personEQ.resx -------------------------------------------------------------------------------- /warehouse/searchstore.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/searchstore.Designer.cs -------------------------------------------------------------------------------- /warehouse/searchstore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/searchstore.cs -------------------------------------------------------------------------------- /warehouse/searchstore.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/searchstore.resx -------------------------------------------------------------------------------- /warehouse/securitycode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/securitycode.cs -------------------------------------------------------------------------------- /warehouse/warehouse.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thornhill-GYL/warehouse/HEAD/warehouse/warehouse.csproj --------------------------------------------------------------------------------