diff --git a/IngeniBridge.Programs/.vs/IngeniBridge.Programs/v15/.suo b/IngeniBridge.Programs/.vs/IngeniBridge.Programs/v15/.suo index 85eb7ab..5be1479 100644 Binary files a/IngeniBridge.Programs/.vs/IngeniBridge.Programs/v15/.suo and b/IngeniBridge.Programs/.vs/IngeniBridge.Programs/v15/.suo differ diff --git a/IngeniBridge.Programs/.vs/IngeniBridge.Programs/v15/Server/sqlite3/storage.ide b/IngeniBridge.Programs/.vs/IngeniBridge.Programs/v15/Server/sqlite3/storage.ide index ba6598e..7d0b1bd 100644 Binary files a/IngeniBridge.Programs/.vs/IngeniBridge.Programs/v15/Server/sqlite3/storage.ide and b/IngeniBridge.Programs/.vs/IngeniBridge.Programs/v15/Server/sqlite3/storage.ide differ diff --git a/IngeniBridge.Programs/.vs/IngeniBridge.Programs/v15/Server/sqlite3/storage.ide-shm b/IngeniBridge.Programs/.vs/IngeniBridge.Programs/v15/Server/sqlite3/storage.ide-shm new file mode 100644 index 0000000..59399af Binary files /dev/null and b/IngeniBridge.Programs/.vs/IngeniBridge.Programs/v15/Server/sqlite3/storage.ide-shm differ diff --git a/IngeniBridge.Programs/.vs/IngeniBridge.Programs/v15/Server/sqlite3/storage.ide-wal b/IngeniBridge.Programs/.vs/IngeniBridge.Programs/v15/Server/sqlite3/storage.ide-wal new file mode 100644 index 0000000..2f1702d Binary files /dev/null and b/IngeniBridge.Programs/.vs/IngeniBridge.Programs/v15/Server/sqlite3/storage.ide-wal differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/IngeniBridge.GenerateFullInventory.csproj b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/IngeniBridge.GenerateFullInventory.csproj index da279da..7675165 100644 --- a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/IngeniBridge.GenerateFullInventory.csproj +++ b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/IngeniBridge.GenerateFullInventory.csproj @@ -1,103 +1,28 @@ - - - + + - Debug - AnyCPU - {AE86E05C-9343-4972-9E4F-C023C27F4E65} + net45 + IngeniBridge.GenerateFullInventory + 1.0.0 + JTO Tec + Copyright © DEAGITAL 2016 + + DEAGITAL Exe - Properties - IngeniBridge.GenerateFullInventory - IngeniBridge.GenerateFullInventory - v4.6.1 - 512 - true - SAK - SAK - SAK - SAK - - - AnyCPU - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - AnyCPU - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - ..\packages\CommandLineParser20.2.0.0.0\lib\net40\CommandLine.dll - True - - - ..\packages\EPPlus.4.5.2.1\lib\net40\EPPlus.dll - - - ..\packages\IngeniBridge.Core.1.0.36\lib\net461\IngeniBridge.Core.dll - - - ..\packages\IngeniBridge.StorageAccessor.InMemory.1.0.6\lib\net461\IngeniBridge.StorageAccessor.InMemory.dll - - - ..\packages\IngeniBridge.Utils.1.0.3\lib\net452\IngeniBridge.Utils.dll - True - - - ..\packages\JT.TechCases.Threading.1.0.11\lib\net45\JT.TechCases.Threading.dll - - - ..\packages\log4net.2.0.8\lib\net45-full\log4net.dll - True - - - ..\packages\Newtonsoft.Json.11.0.2\lib\net45\Newtonsoft.Json.dll - - - - - - - - - ..\packages\System.ValueTuple.4.5.0\lib\net461\System.ValueTuple.dll - - - - - - - - + + - - - - + + + + + + - - - - - - - + + + NET45;NETFULL + + \ No newline at end of file diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/LaunchOnMyCompanyDb.cmd b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/LaunchOnMyCompanyDb.cmd index 1d866b6..5749a3a 100644 --- a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/LaunchOnMyCompanyDb.cmd +++ b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/LaunchOnMyCompanyDb.cmd @@ -1,3 +1,3 @@ rem dont forget to rename ibdb file in the command line -bin\Release\IngeniBridge.GenerateFullInventory --StorageAccessorAssembly="IngeniBridge.StorageAccessor.InMemory.dll" --IBDatabase=..\..\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\MasterAssetMyCompany_2018_08_25.ibdb --InventoryFile=InventoryFileIB.xlsx +bin\Release\IngeniBridge.GenerateFullInventory --StorageAccessorAssembly="IngeniBridge.StorageAccessor.InMemory.dll" --IBDatabase=..\..\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\MasterAssetMyCompany_2018_09_05.ibdb --InventoryFile=InventoryFileIB.xlsx pause diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/Program.cs b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/Program.cs index bfef6e6..be21009 100644 --- a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/Program.cs +++ b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/Program.cs @@ -10,6 +10,8 @@ using IngeniBridge.Core.Diags; using IngeniBridge.Core.Inventory; using IngeniBridge.Core.Storage; +using log4net.Config; +using System.Diagnostics; namespace IngeniBridge.GenerateFullInventory { @@ -18,28 +20,33 @@ class Program private static readonly ILog log = LogManager.GetLogger ( System.Reflection.MethodBase.GetCurrentMethod ().DeclaringType ); static int Main ( string [] args ) { - int ret = 0; - log4net.Config.XmlConfigurator.Configure (); + int exitCode = 0; + XmlConfigurator.Configure ( LogManager.GetRepository ( Assembly.GetEntryAssembly () ), new FileInfo ( "log4net.config" ) ); + CommandLineOptions options = null; ParserResult result = CommandLine.Parser.Default.ParseArguments ( args ); - if ( result.Errors.Any () ) + result.WithNotParsed ( ( errs ) => { - ret = 1; - return ( ret ); - } + errs.All ( err => { log.FatalFormat ( err.ToString () ); return ( true ); } ); + exitCode = 1; + } ); + if ( exitCode != 0 ) return ( exitCode ); + result.WithParsed ( opts => { options = opts; } ); + FileVersionInfo fvi = FileVersionInfo.GetVersionInfo ( Assembly.GetEntryAssembly ().Location ); + Console.WriteLine ( fvi.ProductName + " v" + fvi.FileVersion + "\n" + fvi.LegalCopyright ); log.Info ( "Starting " + Assembly.GetEntryAssembly ().GetName ().Name + " v" + Assembly.GetEntryAssembly ().GetName ().Version ); - log.Info ( "StorageAccessorAssembly => " + result.Value.StorageAccessorAssembly ); - log.Info ( "IBDatabase => " + result.Value.IBDatabase ); - log.Info ( "InventoryFile => " + result.Value.InventoryFile ); + log.Info ( "StorageAccessorAssembly => " + options.StorageAccessorAssembly ); + log.Info ( "IBDatabase => " + options.IBDatabase ); + log.Info ( "InventoryFile => " + options.InventoryFile ); try { #region init IngeniBridge UriBuilder uri = new UriBuilder ( Assembly.GetExecutingAssembly ().CodeBase ); string path = Path.GetDirectoryName ( Uri.UnescapeDataString ( uri.Path ) ); - Assembly accessorasm = Assembly.LoadFile ( path + "\\" + result.Value.StorageAccessorAssembly ); + Assembly accessorasm = Assembly.LoadFile ( path + "\\" + options.StorageAccessorAssembly ); Core.Storage.StorageAccessor accessor = Core.Storage.StorageAccessor.InstantiateFromAccessorAssembly ( accessorasm ); AssetExtension.StorageAccessor = accessor; TimedDataExtension.StorageAccessor = accessor; - accessor.OpenDB ( result.Value.IBDatabase ); + accessor.OpenDB ( options.IBDatabase ); #endregion log.Info ( "DataModel Name => " + accessor.Version.Name ); log.Info ( "DataModel Date => " + accessor.Version.Generated.ToString () ); @@ -49,7 +56,7 @@ static int Main ( string [] args ) TreeChecker tc = new TreeChecker ( accessor ); Console.WriteLine ( "Vérification de l'arbre..." ); tc.CheckTree ( true, message => log.Error ( message ) ); - FileInfo fi = new FileInfo ( result.Value.InventoryFile ); + FileInfo fi = new FileInfo ( options.InventoryFile ); if ( fi.Exists ) fi.Delete (); ExcelPackage xlMatricesPatrimoines = new ExcelPackage ( fi ); Dictionary worksheetinfos = new Dictionary (); @@ -97,9 +104,9 @@ static int Main ( string [] args ) log.Error ( ex ); Console.WriteLine ( ex.Message ); log.Error ( "Terminé FAILED." ); - ret = 1; + exitCode = 1; } - return ( ret ); + return ( exitCode ); } } diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/Properties/AssemblyInfo.cs b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/Properties/AssemblyInfo.cs deleted file mode 100644 index abb365c..0000000 --- a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,35 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle ( "IngeniBridge.GenerateFullInventory" )] -[assembly: AssemblyDescription ( "" )] -[assembly: AssemblyConfiguration ( "" )] -[assembly: AssemblyCompany ( "" )] -[assembly: AssemblyProduct ( "IngeniBridge.GenerateFullInventory" )] -[assembly: AssemblyCopyright ( "Copyright © 2016 Deagital" )] -[assembly: AssemblyTrademark ( "" )] -[assembly: AssemblyCulture ( "" )] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible ( false )] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid ( "ae86e05c-9343-4972-9e4f-c023c27f4e65" )] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion ( "1.0.0.*" )] diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/IngeniBridge.Core.dll b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/IngeniBridge.Core.dll index 50719c5..3e8448a 100644 Binary files a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/IngeniBridge.Core.dll and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/IngeniBridge.Core.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/IngeniBridge.Core.xml b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/IngeniBridge.Core.xml index 6bb120c..b8046c3 100644 --- a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/IngeniBridge.Core.xml +++ b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/IngeniBridge.Core.xml @@ -223,9 +223,9 @@ Description field name - + - Scada external reference name + Timed Data external reference name @@ -243,14 +243,19 @@ Indicates if external reference + + + Indicates if nomenclature + + Indicates if description field - + - /// Indicates if scada external reference field + Indicates if timed data external reference field @@ -324,6 +329,127 @@ The string + + + This method retrieves a property value + + Entity instance + Property name + The value + + + + This method retrieves the properties of specified type + + Entity instance + Type name as a string + Looking for array property ? + The property name if specified + + + + + This method retrieves the code property value from an entity + + The entity + the code value + + + + This method sets the code value into an entity + + The entity + The code to set + + + + This method retrieves the label property value from an entity + + The entity + the label value + + + + This method sets the label value into an entity + + The entity + The code to set + + + + This method retrieves the storageuniqueid property value from an entity + + + + + + + This method set a property value + + Entity instance + Property name + The vaue + + + + Notifies linked entities from entity + + Entity type, applies also to derivated entity types + + + + + This method parses linked entities + + Entity type, applies also to derivated entity types + Entity + Callback to linked entities, + indicates to return nomenclatures as well + indicates wether to return external refs as well + + + + This method parses all linked entities (Asset and Nomenclature) + + Entity + Callback to linked entities, + indicates to return nomenclatures as well + indicates wether to return external refs as well + + + + Notifies properties values + + Property name + Value + + + + This method parses all nomenclatures and external references if specified + + Entity + Callback to properties, + return external references as properties + + + + Notifies attributes values + + Attribute description + Value + + + + + This method parses all nomenclatures and external references if specified + + Entity + Callback to attributes, + return external references as properties + return nomenclatures as properties + return links to entities as properties + return datas as properties + Root entity @@ -444,6 +570,26 @@ This class contains meta data servicesfor the data model + + + Code property name + + + + + Label property name + + + + + StorageUniqueID property name + + + + + Datas property name + + returns a Dataviz index helper if implemented in the metamodel @@ -463,11 +609,33 @@ The type Meta data information + + + This method loads all meta data information from a data model assembly + + Meta data information + + + + This method retrieves the first property inside an object instance compatible with the type + + the object instance + the type to find the compatible property + the property name if found else null + + + + This method retrieves all the properties inside an object instance compatible with the type + + the object instance + the type to find the compatible property + the properties found + This method returns meta data describing an entity type - The entity type name + The entity type name >Meta data information @@ -494,60 +662,6 @@ >a list of meta data - - - This method loads all meta data information from a data model assembly - - Meta data information - - - - This method retrieves the property name inside an object instance compatible with the type - - the object instance - the type to find the compatible property - the property name if found else null - - - - This method retrieves a property value - - Entity instance - Property name - The value - - - - This method retrieves the properties of specified type - - Entity instance - Type name as a string - Looking for array property ? - The property name if specified - - - - - This method retrieves the code property value from an entity - - The entity - the code value - - - - This method retrieves the label property value from an entity - - The entity - the label value - - - - This method set a property value - - Entity instance - Property name - The vaue - This method retrieves the types list in the model meta information @@ -560,64 +674,6 @@ Types - - - Notifies linked entities from entity - - Entity type, applies also to derivated entity types - - - - - This method parses linked entities - - Entity type, applies also to derivated entity types - Entity - Callback to linked entities, - indicates wether to return external refs as well - - - - This method parses all linked entities (Asset and Nomenclature) - - Entity - Callback to linked entities, - indicates wether to return external refs as well - - - - Notifies properties values - - Property name - Value - - - - This method parses all nomenclatures and external references if specified - - Entity - Callback to properties, - return external references as properties - - - - Notifies attributes values - - Attribute description - Value - - - - - This method parses all nomenclatures and external references if specified - - Entity - Callback to attributes, - return external references as properties - return nomenclatures as properties - return links to entities as properties - return datas as properties - This class represents the meta information on an IngeniBridge entity @@ -673,21 +729,11 @@ Attribute meta information for label - - - Name of code property - - Indicates if entity must not be indexed - - - Name of label property - - Properties in the entity @@ -805,25 +851,31 @@ The stream string The contexted datas - - - This method parameterizes the json serializer - - - This interface is the Dataviz index contract - + Implement this method to index a node - the helper associated with the metamodel - the iterated node + the storage accessor + the path of the actual node + the iterated node the actual text to be searched through rest calls + + + This class provides services for serialization + + + + + This method parameterizes the json serializer + + + Contexted asset returned by the web service @@ -933,53 +985,35 @@ the string - - - Parents in revere order (the 0 index element is the immediate parent) - - - - - The name of the attribute (in the parent) that contains the actual node - - - - - The actual node - - - + - Meta description associated with the node + This class provides for asset and timeddata object storage - - - The flat path, - - - + - Converts to string + Notifies a node in the tree - The string + Node type, applies also to derivated entites + The node + false to stop, true to continue The root node of the tree - + - Notifies a node in the tree + This function returns the immediate children number - Node type, applies also to derivated entites - The node - false to stop, true to continue + Node type to filter + Unique storage ID + - This class represents a timed data (SCADA or BigData timed value) + This class represents a timed data (Data histrian database timed value) diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/IngeniBridge.GenerateFullInventory.exe b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/IngeniBridge.GenerateFullInventory.exe index e3d316c..8b607f7 100644 Binary files a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/IngeniBridge.GenerateFullInventory.exe and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/IngeniBridge.GenerateFullInventory.exe differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/IngeniBridge.GenerateFullInventory.pdb b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/IngeniBridge.GenerateFullInventory.pdb index 341956c..69bb186 100644 Binary files a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/IngeniBridge.GenerateFullInventory.pdb and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/IngeniBridge.GenerateFullInventory.pdb differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/IngeniBridge.StorageAccessor.InMemory.dll b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/IngeniBridge.StorageAccessor.InMemory.dll index 763a322..f1780f7 100644 Binary files a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/IngeniBridge.StorageAccessor.InMemory.dll and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/IngeniBridge.StorageAccessor.InMemory.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/JT.TechCases.Threading.dll b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/JT.TechCases.Threading.dll index 13843b6..c448275 100644 Binary files a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/JT.TechCases.Threading.dll and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/JT.TechCases.Threading.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/JT.TechCases.Threading.xml b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/JT.TechCases.Threading.xml deleted file mode 100644 index e908e45..0000000 --- a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/JT.TechCases.Threading.xml +++ /dev/null @@ -1,882 +0,0 @@ - - - - JT.TechCases.Threading - - - - - - - - - - Initializes a new instance of the class. - - The s context description. - The list exceptions. - - - - Initializes a new instance of the class. - - The s context description. - The ex. - - - - Required designer variable. - - - - - Clean up any resources being used. - - true if managed resources should be disposed; otherwise, false. - - - - Required method for Designer support - do not modify - the contents of this method with the code editor. - - - - - Class to display exceptions - - - - - Constructor - - Context - List of exceptions - - - - Context - - Context - Single exception - - - - Required designer variable. - - - - - Clean up any resources being used. - - true if managed resources should be disposed; otherwise, false. - - - - Required method for Designer support - do not modify - the contents of this method with the code editor. - - - - - This class is the base for all exceptions. It is important so it can be treated by the global handler. - - - - - Constructor. - - Message - - - - Constructor. - - Message - Inner exception - - - - Thread DoWork method cannot be null. - - - - - Constructor. - - - - - Error th creating an Thread. - - - - - Constructor. - - Message - - - - Error during execution of an Thread. - - - - - Constructor. - - Inner exception - - - - Error th calling Thread progress notification function. - - - - - Constructor. - - Inner exception - - - - Constructor. - - Message - Inner exception - - - - Error th calling Thread progress notification function. - - - - - Constructor. - - Inner exception - - - - Thread title cannot be null. - - - - - Constructor. - - - - - Thread pool title cannot be null. - - - - - Constructor. - - - - - Must call this method outside the thread. - - - - - Constructor. - - - - - Must call this method inside the thread. - - - - - Constructor. - - - - - Thread cannot be recycled. - - - - - Constructor. - - - - - Semaphore cannot be released. - - - - - Constructor. - - - - - Thread DoWork method cannot be null. - - - - - Constructor. - - - - - Abort method is obsolete. - - - - - Constructor. - - - - - Cannot call this method while thread running. - - - - - Constructor. - - - - - Cannot recycle thread pool after cancellation was requested - - - - - Constructor. - - - - - A strongly-typed resource class, for looking up localized strings, etc. - - - - - Returns the cached ResourceManager instance used by this class. - - - - - Overrides the current thread's CurrentUICulture property for all - resource lookups using this strongly typed resource class. - - - - - This class implement range splitting service - - - - - This function returns subranges from a whole range - - Lower bound - Higher bound - Number of sub ranges to be returned - User Data that wiil be rendered in each calculated SubRange - - - - - Callback for the LaunchSplitedTasks function, process the iteration - - The SubRange split being processed - the index withn the spitted task iteration - - - - Callback for the LaunchSplitedTasks function, initialize UserData into SubRange structure - - The SubRange structure where to set UserData data - - - - This method drives a splitted task for each iteration in callback - - The lower bound of the range (included) - The higher bound of the range (excluded) - The number of parallel iterations (driven by a dedicated pool) - Process callback - Init UserData callback - - - - This class contains a subrange - - - - - Lower bound - - - - - Higher bound - - - - - User Data that was passed at first call - - - - - The same as System.Threading class but without timeouts (wich is semantically nonsense) - - - - - Wait for entering a multiple read operation - - - - - release read operation - - - - - Wait for entering a single write operation - - - - - release write operation - - - - - displays object - - - - - - This class implements a monitorable semephore - - - - Constructor - Max value of the semaphore - - - Acquires the semaphoer - - - Releases the semaphore - - - Wait for the semaphore to come back down to 0 - - - - This property returns the actual count of the semaphore - - - - - displays object - - - - - - Callback function when semaphore is reset - - - - - Event to subscribe to notifications. - - - - - This class encapsulate a thread in the ADF framework. - - - - - Priority of the thread. - - - - - Maps to normal state. - - - - - Maps to lowest state. - - - - - The maximum amount of seconds an application must call CancelationPending property - - - - - Title of the thread. - - - - - Indicates wether cancellation has been requested, this is monitored from outside the thread, - to check the status from within the thread, call source.CheckStatus () - - true or false - - - - Indicates if the thread entered a sleep state - - true or false - - - - Current progression percentage - - The value of progress - - - - Current progression description - - - - - Indicates wether the thread is started - - - - - Thread priority. - - - - - This property erturns the owner pool - - - - - This property returns user data - - - - - This property indicates if the thread is running a long treatment - - - - - This property is set after the thread completed with an exception - - - - - This is an override because sometimes it may return the same key ... - - - - - - Starts the thread as STA by default - - - - - Starts the thread. - - the apartment state - - - - Starts later the thread as STA by default - - - - - Starts the thread but later. - - the apartment state - - - - This method reports thread progression. - - Percent progression - Description of the current step in progression - - - - Requests cancellation for the thread. - - - - - Indicates wether the thread is not responding. - - - - - - Callback function of the thread function - - The igniting Thread - - - - Event to subscribe to notifications. - - - - - Callback function of the thread progression - - The igniting Thread - Percent of progression - Description of the progression - - - - Event to subscribe to notifications. - - - - - Callback function of thread termination - - - - - - Event to subscribe to notifications. - - - - - Callback to the exception handler in the thread execution. - - The igniting Thread - The exception - - - - Event to subscribe to notifications. - - - - - Callback to notify the thread cancellation. - - The igniting Thread - - - - Event to subscribe to notifications. - - - - - This method calls all the delegates attached to an event - - the event - the event parameters - - - - This method calls all the delegates attached to an event - - the event - the event parameters - wait or not for the completion - - - - This method calls one delegate and checks if the origin is a winform - - the delegate - the delegate parameters - wait or not for the winform to return - the object returned from the delegate - - - - Abort must not be called - - - - - This method waits for the thread to finish - - - - - This method waits for the thread to finish - - The milliseconds timeout. - - - - This property indicates if the thread is suspended - - - - - Suspends this instance, must be called from outside the thread. - - - - - Resumes this instance. - - - - - The status of the current thread - - - - - The thread was suspended and was resumed - - - - - Cancellation has been requested, the thread must return execution immediatly - - - - - The thread is running normally - - - - - The thread is in a sleep instruction - - - - - This method returns the status of the thread, note that this method will handle the suspend mode - and must be called from within the thread - - The actual status - - - - This method resets the current sleep, if any - - - - - This method enters the thread into sleep mode, but will be automatically cancelled when calling RequestCancellation, - note that it must be called from within the thread - - - - - - Indicates wether the thread run and terminated at least once - - - - - This method lets the developer set the exception from within the DoWork body - so it is possible to gest it the termination - - the actual exception - - - - Returns the execution time spent by the thread (cannot be called before termination) - - - - - This class is used to monitor running threads. - - - - - This forms dislays all running threads - - - - - Required designer variable. - - - - - Clean up any resources being used. - - true if managed resources should be disposed; otherwise, false. - - - - Required method for Designer support - do not modify - the contents of this method with the code editor. - - - - - This class maintains a list of threads and is the only access point to create new ADFThreads. - - - - - This property returns user data - - - - - Title of the pool. - - - - - The ThreadPool size - - - - - Returns the execution time spent by the thread (cannot be called before termination) - - - - - This method creates a new pool - - size of the pool - user data held into the pool - the pool - - - - This method creates a new pool using a default and shared title, if the titled pool does exist then it is simply returned for resue - - title of the pool - size of the pool - user data held into the pool - the pool - - - - This method creates a new pool using a default and unique title, if the titled pool does exist then a new title is created with unique appended counter - - title of the pool - size of the pool - user data held into the pool - the pool - - - - This method removes a pool - - the pool to remove - - - - This method retrieve a pool by name - - the pool name - - - - - This property returns the allocated pools - - - - - This method creates a thread. - - The title of the thread - The DoWork callback function that implements thread execution, cannot be null - The EndWork callback function that notifies thread termination - The ProgressWork callback function that notifies thread progression - The cancel thread notification method - user data - The Thread - - - - This method creates a thread. - - The title of the thread - The DoWork callback function that implements thread execution, cannot be null - The EndWork callback function that notifies thread termination - The ProgressWork callback function that notifies thread progression - The Thread - - - - This method creates a thread. - - The title of the thread - The DoWork callback function that implements thread execution, cannot be null - The EndWork callback function that notifies thread termination - The ProgressWork callback function that notifies thread progression - user data - The Thread - - - - This methods requests cancellation on all running threads - - - - - This method will wait for all threads to complete - - - - - Wait for completion of all threads in this pool - - - - - Event to subscribe to exception notifications. - - - - - Event to subscribe to exception notifications. - - - - - This delegate will notify when the pool changes - - - - - Event to subscribe - - - - - This delegate will notify when the threads terminate - - the owner pool - - - - Event to subscribe - - - - diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/CommandLine.dll b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/CommandLine.dll new file mode 100644 index 0000000..618ed3d Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/CommandLine.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/EPPlus.dll b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/EPPlus.dll new file mode 100644 index 0000000..84afe50 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/EPPlus.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/IngeniBridge.BuildUtils.dll b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/IngeniBridge.BuildUtils.dll new file mode 100644 index 0000000..6587533 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/IngeniBridge.BuildUtils.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/IngeniBridge.Core.dll b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/IngeniBridge.Core.dll new file mode 100644 index 0000000..178fbee Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/IngeniBridge.Core.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/IngeniBridge.GenerateFullInventory.exe b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/IngeniBridge.GenerateFullInventory.exe new file mode 100644 index 0000000..5245c2c Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/IngeniBridge.GenerateFullInventory.exe differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/IngeniBridge.GenerateFullInventory.exe.config b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/IngeniBridge.GenerateFullInventory.exe.config new file mode 100644 index 0000000..5035d4f --- /dev/null +++ b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/IngeniBridge.GenerateFullInventory.exe.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/IngeniBridge.GenerateFullInventory.pdb b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/IngeniBridge.GenerateFullInventory.pdb new file mode 100644 index 0000000..0e93754 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/IngeniBridge.GenerateFullInventory.pdb differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/IngeniBridge.StorageAccessor.InMemory.dll b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/IngeniBridge.StorageAccessor.InMemory.dll new file mode 100644 index 0000000..f680a88 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/IngeniBridge.StorageAccessor.InMemory.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/JT.TechCases.Threading.dll b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/JT.TechCases.Threading.dll new file mode 100644 index 0000000..c448275 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/JT.TechCases.Threading.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/Newtonsoft.Json.dll b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/Newtonsoft.Json.dll new file mode 100644 index 0000000..8069902 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/Newtonsoft.Json.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/System.ValueTuple.dll b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/System.ValueTuple.dll new file mode 100644 index 0000000..65fa9ee Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/System.ValueTuple.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/log4net.dll b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/log4net.dll new file mode 100644 index 0000000..93fb476 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/net45/log4net.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/IngeniBridge.GenerateFullInventory.exe b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/IngeniBridge.GenerateFullInventory.exe index 094ca5d..a98369f 100644 Binary files a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/IngeniBridge.GenerateFullInventory.exe and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/IngeniBridge.GenerateFullInventory.exe differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/IngeniBridge.GenerateFullInventory.log b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/IngeniBridge.GenerateFullInventory.log index c62cc02..f51e51f 100644 --- a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/IngeniBridge.GenerateFullInventory.log +++ b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/IngeniBridge.GenerateFullInventory.log @@ -67,3 +67,13 @@ Nom de fichier 2018-08-25 06:50:23,169;[1];INFO ;IngeniBridge.GenerateFullInventory.Program;DataModel Version Minor => 0 2018-08-25 06:50:23,169;[1];INFO ;IngeniBridge.GenerateFullInventory.Program;DataModel Version Build => 8 2018-08-25 06:50:23,630;[1];INFO ;IngeniBridge.GenerateFullInventory.Program;Terminé OK. +2018-09-05 22:12:59,400;[1];INFO ;IngeniBridge.GenerateFullInventory.Program;Starting IngeniBridge.GenerateFullInventory v1.0.0.20476 +2018-09-05 22:12:59,416;[1];INFO ;IngeniBridge.GenerateFullInventory.Program;StorageAccessorAssembly => IngeniBridge.StorageAccessor.InMemory.dll +2018-09-05 22:12:59,416;[1];INFO ;IngeniBridge.GenerateFullInventory.Program;IBDatabase => ..\..\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\MasterAssetMyCompany_2018_09_05.ibdb +2018-09-05 22:12:59,417;[1];INFO ;IngeniBridge.GenerateFullInventory.Program;InventoryFile => InventoryFileIB.xlsx +2018-09-05 22:12:59,734;[1];INFO ;IngeniBridge.GenerateFullInventory.Program;DataModel Name => MyCompanyDataModel +2018-09-05 22:12:59,735;[1];INFO ;IngeniBridge.GenerateFullInventory.Program;DataModel Date => 05/09/2018 21:51:08 +2018-09-05 22:12:59,735;[1];INFO ;IngeniBridge.GenerateFullInventory.Program;DataModel Version Majour => 1 +2018-09-05 22:12:59,736;[1];INFO ;IngeniBridge.GenerateFullInventory.Program;DataModel Version Minor => 0 +2018-09-05 22:12:59,736;[1];INFO ;IngeniBridge.GenerateFullInventory.Program;DataModel Version Build => 8 +2018-09-05 22:13:00,146;[1];INFO ;IngeniBridge.GenerateFullInventory.Program;Terminé OK. diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/IngeniBridge.GenerateFullInventory.pdb b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/IngeniBridge.GenerateFullInventory.pdb index 23c3856..6a3b177 100644 Binary files a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/IngeniBridge.GenerateFullInventory.pdb and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/IngeniBridge.GenerateFullInventory.pdb differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/JT.TechCases.Threading.dll b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/JT.TechCases.Threading.dll index a5b38cc..c448275 100644 Binary files a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/JT.TechCases.Threading.dll and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/JT.TechCases.Threading.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/JT.TechCases.Threading.xml b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/JT.TechCases.Threading.xml deleted file mode 100644 index de092d6..0000000 --- a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/JT.TechCases.Threading.xml +++ /dev/null @@ -1,788 +0,0 @@ - - - - JT.TechCases.Threading - - - - - This class is the base for all exceptions. It is important so it can be treated by the global handler. - - - - - Constructor. - - Message - - - - Constructor. - - Message - Inner exception - - - - Thread DoWork method cannot be null. - - - - - Constructor. - - - - - Error th creating an Thread. - - - - - Constructor. - - Message - - - - Error during execution of an Thread. - - - - - Constructor. - - Inner exception - - - - Error th calling Thread progress notification function. - - - - - Constructor. - - Inner exception - - - - Constructor. - - Message - Inner exception - - - - Error th calling Thread progress notification function. - - - - - Constructor. - - Inner exception - - - - Thread title cannot be null. - - - - - Constructor. - - - - - Thread pool title cannot be null. - - - - - Constructor. - - - - - Must call this method outside the thread. - - - - - Constructor. - - - - - Must call this method inside the thread. - - - - - Constructor. - - - - - Thread cannot be recycled. - - - - - Constructor. - - - - - Semaphore cannot be released. - - - - - Constructor. - - - - - Thread DoWork method cannot be null. - - - - - Constructor. - - - - - Abort method is obsolete. - - - - - Constructor. - - - - - Cannot call this method while thread running. - - - - - Constructor. - - - - - Cannot recycle thread pool after cancellation was requested - - - - - Constructor. - - - - - A strongly-typed resource class, for looking up localized strings, etc. - - - - - Returns the cached ResourceManager instance used by this class. - - - - - Overrides the current thread's CurrentUICulture property for all - resource lookups using this strongly typed resource class. - - - - - This class implement range splitting service - - - - - This function returns subranges from a whole range - - Lower bound - Higher bound - Number of sub ranges to be returned - User Data that wiil be rendered in each calculated SubRange - - - - - Callback for the LaunchSplitedTasks function, process the iteration - - The SubRange split being processed - the index withn the spitted task iteration - - - - Callback for the LaunchSplitedTasks function, initialize UserData into SubRange structure - - The SubRange structure where to set UserData data - - - - This method drives a splitted task for each iteration in callback - - The lower bound of the range (included) - The higher bound of the range (excluded) - The number of parallel iterations (driven by a dedicated pool) - Process callback - Init UserData callback - - - - This class contains a subrange - - - - - Lower bound - - - - - Higher bound - - - - - User Data that was passed at first call - - - - - The same as System.Threading class but without timeouts (wich is semantically nonsense) - - - - - Wait for entering a multiple read operation - - - - - release read operation - - - - - Wait for entering a single write operation - - - - - release write operation - - - - - displays object - - - - - - This class implements a monitorable semephore - - - - Constructor - Max value of the semaphore - - - Acquires the semaphoer - - - Releases the semaphore - - - Wait for the semaphore to come back down to 0 - - - - This property returns the actual count of the semaphore - - - - - displays object - - - - - - Callback function when semaphore is reset - - - - - Event to subscribe to notifications. - - - - - This class encapsulate a thread in the ADF framework. - - - - - Priority of the thread. - - - - - Maps to normal state. - - - - - Maps to lowest state. - - - - - The maximum amount of seconds an application must call CancelationPending property - - - - - Title of the thread. - - - - - Indicates wether cancellation has been requested, this is monitored from outside the thread, - to check the status from within the thread, call source.CheckStatus () - - true or false - - - - Indicates if the thread entered a sleep state - - true or false - - - - Current progression percentage - - The value of progress - - - - Current progression description - - - - - Indicates wether the thread is started - - - - - Thread priority. - - - - - This property erturns the owner pool - - - - - This property returns user data - - - - - This property indicates if the thread is running a long treatment - - - - - This property is set after the thread completed with an exception - - - - - This is an override because sometimes it may return the same key ... - - - - - - Starts the thread as STA by default - - - - - Starts the thread. - - the apartment state - - - - Starts later the thread as STA by default - - - - - Starts the thread but later. - - the apartment state - - - - This method reports thread progression. - - Percent progression - Description of the current step in progression - - - - Requests cancellation for the thread. - - - - - Indicates wether the thread is not responding. - - - - - - Callback function of the thread function - - The igniting Thread - - - - Event to subscribe to notifications. - - - - - Callback function of the thread progression - - The igniting Thread - Percent of progression - Description of the progression - - - - Event to subscribe to notifications. - - - - - Callback function of thread termination - - - - - - Event to subscribe to notifications. - - - - - Callback to the exception handler in the thread execution. - - The igniting Thread - The exception - - - - Event to subscribe to notifications. - - - - - Callback to notify the thread cancellation. - - The igniting Thread - - - - Event to subscribe to notifications. - - - - - This method calls all the delegates attached to an event - - the event - the event parameters - - - - This method calls all the delegates attached to an event - - the event - the event parameters - wait or not for the completion - - - - This method calls one delegate and checks if the origin is a winform - - the delegate - the delegate parameters - wait or not for the winform to return - the object returned from the delegate - - - - Abort must not be called - - - - - This method waits for the thread to finish - - - - - This method waits for the thread to finish - - The milliseconds timeout. - - - - This property indicates if the thread is suspended - - - - - Suspends this instance, must be called from outside the thread. - - - - - Resumes this instance. - - - - - The status of the current thread - - - - - The thread was suspended and was resumed - - - - - Cancellation has been requested, the thread must return execution immediatly - - - - - The thread is running normally - - - - - The thread is in a sleep instruction - - - - - This method returns the status of the thread, note that this method will handle the suspend mode - and must be called from within the thread - - The actual status - - - - This method resets the current sleep, if any - - - - - This method enters the thread into sleep mode, but will be automatically cancelled when calling RequestCancellation, - note that it must be called from within the thread - - - - - - Indicates wether the thread run and terminated at least once - - - - - This method lets the developer set the exception from within the DoWork body - so it is possible to gest it the termination - - the actual exception - - - - Returns the execution time spent by the thread (cannot be called before termination) - - - - - This class maintains a list of threads and is the only access point to create new ADFThreads. - - - - - This property returns the threads inside the pool - - - - - This property returns user data - - - - - Title of the pool. - - - - - The ThreadPool size - - - - - Returns the execution time spent by the thread (cannot be called before termination) - - - - - This method creates a new pool - - size of the pool - user data held into the pool - the pool - - - - This method creates a new pool using a default and shared title, if the titled pool does exist then it is simply returned for resue - - title of the pool - size of the pool - user data held into the pool - the pool - - - - This method creates a new pool using a default and unique title, if the titled pool does exist then a new title is created with unique appended counter - - title of the pool - size of the pool - user data held into the pool - the pool - - - - This method removes a pool - - the pool to remove - - - - This method retrieve a pool by name - - the pool name - - - - - This property returns the allocated pools - - - - - This method creates a thread. - - The title of the thread - The DoWork callback function that implements thread execution, cannot be null - The EndWork callback function that notifies thread termination - The ProgressWork callback function that notifies thread progression - The cancel thread notification method - user data - The Thread - - - - This method creates a thread. - - The title of the thread - The DoWork callback function that implements thread execution, cannot be null - The EndWork callback function that notifies thread termination - The ProgressWork callback function that notifies thread progression - The Thread - - - - This method creates a thread. - - The title of the thread - The DoWork callback function that implements thread execution, cannot be null - The EndWork callback function that notifies thread termination - The ProgressWork callback function that notifies thread progression - user data - The Thread - - - - This methods requests cancellation on all running threads - - - - - This method will wait for all threads to complete - - - - - Wait for completion of all threads in this pool - - - - - Event to subscribe to exception notifications. - - - - - Event to subscribe to exception notifications. - - - - - This delegate will notify when the pool changes - - - - - Event to subscribe - - - - - This delegate will notify when the threads terminate - - the owner pool - - - - Event to subscribe - - - - diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/CommandLine.dll b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/CommandLine.dll new file mode 100644 index 0000000..618ed3d Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/CommandLine.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/EPPlus.dll b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/EPPlus.dll new file mode 100644 index 0000000..84afe50 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/EPPlus.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/IngeniBridge.BuildUtils.dll b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/IngeniBridge.BuildUtils.dll new file mode 100644 index 0000000..6587533 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/IngeniBridge.BuildUtils.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/IngeniBridge.Core.dll b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/IngeniBridge.Core.dll new file mode 100644 index 0000000..178fbee Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/IngeniBridge.Core.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/IngeniBridge.GenerateFullInventory.exe b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/IngeniBridge.GenerateFullInventory.exe new file mode 100644 index 0000000..b06706e Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/IngeniBridge.GenerateFullInventory.exe differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/IngeniBridge.GenerateFullInventory.exe.config b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/IngeniBridge.GenerateFullInventory.exe.config new file mode 100644 index 0000000..5035d4f --- /dev/null +++ b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/IngeniBridge.GenerateFullInventory.exe.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/IngeniBridge.GenerateFullInventory.pdb b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/IngeniBridge.GenerateFullInventory.pdb new file mode 100644 index 0000000..54d78d3 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/IngeniBridge.GenerateFullInventory.pdb differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/IngeniBridge.StorageAccessor.InMemory.dll b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/IngeniBridge.StorageAccessor.InMemory.dll new file mode 100644 index 0000000..f680a88 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/IngeniBridge.StorageAccessor.InMemory.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/JT.TechCases.Threading.dll b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/JT.TechCases.Threading.dll new file mode 100644 index 0000000..c448275 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/JT.TechCases.Threading.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/Newtonsoft.Json.dll b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/Newtonsoft.Json.dll new file mode 100644 index 0000000..8069902 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/Newtonsoft.Json.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/System.ValueTuple.dll b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/System.ValueTuple.dll new file mode 100644 index 0000000..65fa9ee Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/System.ValueTuple.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/log4net.dll b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/log4net.dll new file mode 100644 index 0000000..93fb476 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Release/net45/log4net.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/App.config b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/log4net.config similarity index 95% rename from IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/App.config rename to IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/log4net.config index 5e16b5a..6ff1435 100644 --- a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/App.config +++ b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/log4net.config @@ -3,9 +3,6 @@
- - - diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/IngeniBridge.GenerateFullInventory.csproj.CoreCompileInputs.cache b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/IngeniBridge.GenerateFullInventory.csproj.CoreCompileInputs.cache index 437be1a..6d9f709 100644 --- a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/IngeniBridge.GenerateFullInventory.csproj.CoreCompileInputs.cache +++ b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/IngeniBridge.GenerateFullInventory.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -2c7d51e409a2b18a6e6a140bacb805ae0dc5bd35 +dd41d31d975ef797a1688b3154bc17e9ac0388e3 diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/IngeniBridge.GenerateFullInventory.csprojAssemblyReference.cache b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/IngeniBridge.GenerateFullInventory.csprojAssemblyReference.cache deleted file mode 100644 index 226a12f..0000000 Binary files a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/IngeniBridge.GenerateFullInventory.csprojAssemblyReference.cache and /dev/null differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/IngeniBridge.GenerateFullInventory.AssemblyInfo.cs b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/IngeniBridge.GenerateFullInventory.AssemblyInfo.cs new file mode 100644 index 0000000..e04a418 --- /dev/null +++ b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/IngeniBridge.GenerateFullInventory.AssemblyInfo.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// 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("DEAGITAL")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © DEAGITAL 2016")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("IngeniBridge.GenerateFullInventory")] +[assembly: System.Reflection.AssemblyTitleAttribute("IngeniBridge.GenerateFullInventory")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/IngeniBridge.GenerateFullInventory.AssemblyInfoInputs.cache b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/IngeniBridge.GenerateFullInventory.AssemblyInfoInputs.cache new file mode 100644 index 0000000..3e19d64 --- /dev/null +++ b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/IngeniBridge.GenerateFullInventory.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +3ac71c5add8b75b7751f2d5f32b4b8d55ca08437 diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/IngeniBridge.GenerateFullInventory.assets.cache b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/IngeniBridge.GenerateFullInventory.assets.cache new file mode 100644 index 0000000..59bdc1b Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/IngeniBridge.GenerateFullInventory.assets.cache differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/IngeniBridge.GenerateFullInventory.csproj.CopyComplete b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/IngeniBridge.GenerateFullInventory.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/IngeniBridge.GenerateFullInventory.csproj.CoreCompileInputs.cache b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/IngeniBridge.GenerateFullInventory.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..d8a5e7c --- /dev/null +++ b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/IngeniBridge.GenerateFullInventory.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +715f21abbdc24e79e9e0c560581503f1b59ba4d9 diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/IngeniBridge.GenerateFullInventory.csproj.FileListAbsolute.txt b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/IngeniBridge.GenerateFullInventory.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..278398b --- /dev/null +++ b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/IngeniBridge.GenerateFullInventory.csproj.FileListAbsolute.txt @@ -0,0 +1,18 @@ +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\obj\Debug\net45\IngeniBridge.GenerateFullInventory.csproj.CoreCompileInputs.cache +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\obj\Debug\net45\IngeniBridge.GenerateFullInventory.AssemblyInfoInputs.cache +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\obj\Debug\net45\IngeniBridge.GenerateFullInventory.AssemblyInfo.cs +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\bin\Debug\net45\IngeniBridge.GenerateFullInventory.exe.config +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\bin\Debug\net45\IngeniBridge.GenerateFullInventory.exe +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\bin\Debug\net45\IngeniBridge.GenerateFullInventory.pdb +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\bin\Debug\net45\CommandLine.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\bin\Debug\net45\EPPlus.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\bin\Debug\net45\IngeniBridge.BuildUtils.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\bin\Debug\net45\IngeniBridge.Core.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\bin\Debug\net45\IngeniBridge.StorageAccessor.InMemory.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\bin\Debug\net45\JT.TechCases.Threading.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\bin\Debug\net45\log4net.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\bin\Debug\net45\Newtonsoft.Json.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\bin\Debug\net45\System.ValueTuple.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\obj\Debug\net45\IngeniBridge.GenerateFullInventory.csproj.CopyComplete +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\obj\Debug\net45\IngeniBridge.GenerateFullInventory.exe +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\obj\Debug\net45\IngeniBridge.GenerateFullInventory.pdb diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/IngeniBridge.GenerateFullInventory.csprojAssemblyReference.cache b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/IngeniBridge.GenerateFullInventory.csprojAssemblyReference.cache new file mode 100644 index 0000000..d3c4dd6 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/IngeniBridge.GenerateFullInventory.csprojAssemblyReference.cache differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/IngeniBridge.GenerateFullInventory.exe b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/IngeniBridge.GenerateFullInventory.exe new file mode 100644 index 0000000..5245c2c Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/IngeniBridge.GenerateFullInventory.exe differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/IngeniBridge.GenerateFullInventory.exe.withSupportedRuntime.config b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/IngeniBridge.GenerateFullInventory.exe.withSupportedRuntime.config new file mode 100644 index 0000000..5035d4f --- /dev/null +++ b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/IngeniBridge.GenerateFullInventory.exe.withSupportedRuntime.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/IngeniBridge.GenerateFullInventory.pdb b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/IngeniBridge.GenerateFullInventory.pdb new file mode 100644 index 0000000..0e93754 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/IngeniBridge.GenerateFullInventory.pdb differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Debug/net45/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/IngeniBridge.GenerateFullInventory.csproj.nuget.cache b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/IngeniBridge.GenerateFullInventory.csproj.nuget.cache new file mode 100644 index 0000000..cc203c4 --- /dev/null +++ b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/IngeniBridge.GenerateFullInventory.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "l+gGDV5Q82CPLzNdQl8kPKiwFiWKbWqCfzk0eWkiLRuG3IRkwdh3gmjerlTBMXfsZSIUWJHLMEn4bhD29GfDKg==", + "success": true +} \ No newline at end of file diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/IngeniBridge.GenerateFullInventory.csproj.nuget.g.props b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/IngeniBridge.GenerateFullInventory.csproj.nuget.g.props new file mode 100644 index 0000000..30f0848 --- /dev/null +++ b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/IngeniBridge.GenerateFullInventory.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\obj\project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\joset\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 4.8.0 + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/IngeniBridge.GenerateFullInventory.csproj.nuget.g.targets b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/IngeniBridge.GenerateFullInventory.csproj.nuget.g.targets new file mode 100644 index 0000000..53cfaa1 --- /dev/null +++ b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/IngeniBridge.GenerateFullInventory.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/IngeniBridge.GenerateFullInventory.csproj.CoreCompileInputs.cache b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/IngeniBridge.GenerateFullInventory.csproj.CoreCompileInputs.cache index 366a4a6..6d9f709 100644 --- a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/IngeniBridge.GenerateFullInventory.csproj.CoreCompileInputs.cache +++ b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/IngeniBridge.GenerateFullInventory.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -4829aa502d1643e49e41301c4c204ed62b473f03 +dd41d31d975ef797a1688b3154bc17e9ac0388e3 diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/IngeniBridge.GenerateFullInventory.csprojAssemblyReference.cache b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/IngeniBridge.GenerateFullInventory.csprojAssemblyReference.cache index 84d76f9..800d4c1 100644 Binary files a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/IngeniBridge.GenerateFullInventory.csprojAssemblyReference.cache and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/IngeniBridge.GenerateFullInventory.csprojAssemblyReference.cache differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/net45/IngeniBridge.GenerateFullInventory.AssemblyInfo.cs b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/net45/IngeniBridge.GenerateFullInventory.AssemblyInfo.cs new file mode 100644 index 0000000..7b1984e --- /dev/null +++ b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/net45/IngeniBridge.GenerateFullInventory.AssemblyInfo.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// 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("DEAGITAL")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © DEAGITAL 2016")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("IngeniBridge.GenerateFullInventory")] +[assembly: System.Reflection.AssemblyTitleAttribute("IngeniBridge.GenerateFullInventory")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/net45/IngeniBridge.GenerateFullInventory.AssemblyInfoInputs.cache b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/net45/IngeniBridge.GenerateFullInventory.AssemblyInfoInputs.cache new file mode 100644 index 0000000..b810771 --- /dev/null +++ b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/net45/IngeniBridge.GenerateFullInventory.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +0950a493afa7d1ce35884bbd23f9c97283c48f85 diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/net45/IngeniBridge.GenerateFullInventory.assets.cache b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/net45/IngeniBridge.GenerateFullInventory.assets.cache new file mode 100644 index 0000000..8f3a605 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/net45/IngeniBridge.GenerateFullInventory.assets.cache differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/net45/IngeniBridge.GenerateFullInventory.csproj.CopyComplete b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/net45/IngeniBridge.GenerateFullInventory.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/net45/IngeniBridge.GenerateFullInventory.csproj.CoreCompileInputs.cache b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/net45/IngeniBridge.GenerateFullInventory.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..d8a5e7c --- /dev/null +++ b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/net45/IngeniBridge.GenerateFullInventory.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +715f21abbdc24e79e9e0c560581503f1b59ba4d9 diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/net45/IngeniBridge.GenerateFullInventory.csproj.FileListAbsolute.txt b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/net45/IngeniBridge.GenerateFullInventory.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..d88111e --- /dev/null +++ b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/net45/IngeniBridge.GenerateFullInventory.csproj.FileListAbsolute.txt @@ -0,0 +1,18 @@ +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\obj\Release\net45\IngeniBridge.GenerateFullInventory.csproj.CoreCompileInputs.cache +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\obj\Release\net45\IngeniBridge.GenerateFullInventory.AssemblyInfoInputs.cache +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\obj\Release\net45\IngeniBridge.GenerateFullInventory.AssemblyInfo.cs +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\bin\Release\net45\IngeniBridge.GenerateFullInventory.exe.config +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\bin\Release\net45\IngeniBridge.GenerateFullInventory.exe +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\bin\Release\net45\IngeniBridge.GenerateFullInventory.pdb +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\bin\Release\net45\CommandLine.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\bin\Release\net45\EPPlus.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\bin\Release\net45\IngeniBridge.BuildUtils.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\bin\Release\net45\IngeniBridge.Core.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\bin\Release\net45\IngeniBridge.StorageAccessor.InMemory.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\bin\Release\net45\JT.TechCases.Threading.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\bin\Release\net45\log4net.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\bin\Release\net45\Newtonsoft.Json.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\bin\Release\net45\System.ValueTuple.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\obj\Release\net45\IngeniBridge.GenerateFullInventory.csproj.CopyComplete +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\obj\Release\net45\IngeniBridge.GenerateFullInventory.exe +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.GenerateFullInventory\obj\Release\net45\IngeniBridge.GenerateFullInventory.pdb diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/net45/IngeniBridge.GenerateFullInventory.exe b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/net45/IngeniBridge.GenerateFullInventory.exe new file mode 100644 index 0000000..b06706e Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/net45/IngeniBridge.GenerateFullInventory.exe differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/net45/IngeniBridge.GenerateFullInventory.exe.withSupportedRuntime.config b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/net45/IngeniBridge.GenerateFullInventory.exe.withSupportedRuntime.config new file mode 100644 index 0000000..5035d4f --- /dev/null +++ b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/net45/IngeniBridge.GenerateFullInventory.exe.withSupportedRuntime.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/net45/IngeniBridge.GenerateFullInventory.pdb b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/net45/IngeniBridge.GenerateFullInventory.pdb new file mode 100644 index 0000000..54d78d3 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/net45/IngeniBridge.GenerateFullInventory.pdb differ diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/net45/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/net45/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/net45/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/net45/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/net45/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/Release/net45/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/project.assets.json b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/project.assets.json new file mode 100644 index 0000000..e1acb92 --- /dev/null +++ b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/obj/project.assets.json @@ -0,0 +1,753 @@ +{ + "version": 3, + "targets": { + ".NETFramework,Version=v4.5": { + "CommandLineParser/2.3.0": { + "type": "package", + "compile": { + "lib/net45/CommandLine.dll": {} + }, + "runtime": { + "lib/net45/CommandLine.dll": {} + } + }, + "EPPlus/4.5.2.1": { + "type": "package", + "frameworkAssemblies": [ + "PresentationCore", + "System", + "System.Core", + "System.Data", + "System.Drawing", + "System.Security", + "System.Xml", + "System.configuration" + ], + "compile": { + "lib/net40/EPPlus.dll": {} + }, + "runtime": { + "lib/net40/EPPlus.dll": {} + } + }, + "IngeniBridge.BuildUtils/1.0.6": { + "type": "package", + "dependencies": { + "EPPlus": "4.5.2.1", + "IngeniBridge.Core": "1.0.37", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/net45/IngeniBridge.BuildUtils.dll": {} + }, + "runtime": { + "lib/net45/IngeniBridge.BuildUtils.dll": {} + } + }, + "IngeniBridge.Core/1.0.37": { + "type": "package", + "dependencies": { + "JT.TechCases.Threading": "1.0.12", + "Newtonsoft.Json": "11.0.2", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/net45/IngeniBridge.Core.dll": {} + }, + "runtime": { + "lib/net45/IngeniBridge.Core.dll": {} + } + }, + "IngeniBridge.StorageAccessor.InMemory/1.0.8": { + "type": "package", + "dependencies": { + "IngeniBridge.Core": "1.0.37", + "JT.TechCases.Threading": "1.0.12", + "Microsoft.CSharp": "4.5.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/net45/IngeniBridge.StorageAccessor.InMemory.dll": {} + }, + "runtime": { + "lib/net45/IngeniBridge.StorageAccessor.InMemory.dll": {} + } + }, + "JT.TechCases.Threading/1.0.12": { + "type": "package", + "frameworkAssemblies": [ + "PresentationCore", + "PresentationFramework", + "System.Windows.Forms", + "WindowsBase" + ], + "compile": { + "lib/net45/JT.TechCases.Threading.dll": {} + }, + "runtime": { + "lib/net45/JT.TechCases.Threading.dll": {} + } + }, + "log4net/2.0.8": { + "type": "package", + "compile": { + "lib/net45-full/log4net.dll": {} + }, + "runtime": { + "lib/net45-full/log4net.dll": {} + } + }, + "Microsoft.CSharp/4.5.0": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp" + ], + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "Newtonsoft.Json/11.0.2": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.Net.Http/4.3.3": { + "type": "package", + "frameworkAssemblies": [ + "System.Net.Http" + ], + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "frameworkAssemblies": [ + "System.Runtime.Serialization" + ], + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.ValueTuple/4.5.0": { + "type": "package", + "compile": { + "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + } + }, + ".NETFramework,Version=v4.5/win7-x86": { + "CommandLineParser/2.3.0": { + "type": "package", + "compile": { + "lib/net45/CommandLine.dll": {} + }, + "runtime": { + "lib/net45/CommandLine.dll": {} + } + }, + "EPPlus/4.5.2.1": { + "type": "package", + "frameworkAssemblies": [ + "PresentationCore", + "System", + "System.Core", + "System.Data", + "System.Drawing", + "System.Security", + "System.Xml", + "System.configuration" + ], + "compile": { + "lib/net40/EPPlus.dll": {} + }, + "runtime": { + "lib/net40/EPPlus.dll": {} + } + }, + "IngeniBridge.BuildUtils/1.0.6": { + "type": "package", + "dependencies": { + "EPPlus": "4.5.2.1", + "IngeniBridge.Core": "1.0.37", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/net45/IngeniBridge.BuildUtils.dll": {} + }, + "runtime": { + "lib/net45/IngeniBridge.BuildUtils.dll": {} + } + }, + "IngeniBridge.Core/1.0.37": { + "type": "package", + "dependencies": { + "JT.TechCases.Threading": "1.0.12", + "Newtonsoft.Json": "11.0.2", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/net45/IngeniBridge.Core.dll": {} + }, + "runtime": { + "lib/net45/IngeniBridge.Core.dll": {} + } + }, + "IngeniBridge.StorageAccessor.InMemory/1.0.8": { + "type": "package", + "dependencies": { + "IngeniBridge.Core": "1.0.37", + "JT.TechCases.Threading": "1.0.12", + "Microsoft.CSharp": "4.5.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/net45/IngeniBridge.StorageAccessor.InMemory.dll": {} + }, + "runtime": { + "lib/net45/IngeniBridge.StorageAccessor.InMemory.dll": {} + } + }, + "JT.TechCases.Threading/1.0.12": { + "type": "package", + "frameworkAssemblies": [ + "PresentationCore", + "PresentationFramework", + "System.Windows.Forms", + "WindowsBase" + ], + "compile": { + "lib/net45/JT.TechCases.Threading.dll": {} + }, + "runtime": { + "lib/net45/JT.TechCases.Threading.dll": {} + } + }, + "log4net/2.0.8": { + "type": "package", + "compile": { + "lib/net45-full/log4net.dll": {} + }, + "runtime": { + "lib/net45-full/log4net.dll": {} + } + }, + "Microsoft.CSharp/4.5.0": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp" + ], + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "Newtonsoft.Json/11.0.2": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.Net.Http/4.3.3": { + "type": "package", + "frameworkAssemblies": [ + "System.Net.Http" + ], + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "frameworkAssemblies": [ + "System.Runtime.Serialization" + ], + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.ValueTuple/4.5.0": { + "type": "package", + "compile": { + "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + } + } + }, + "libraries": { + "CommandLineParser/2.3.0": { + "sha512": "reRoh1qxIxsipV2FPBBkp5zFQZjJ0QKZCODLg6nSGBVJzKMBpLAjZP1QkD8f526RfN4+E1zJR/WHOckSRvllOg==", + "type": "package", + "path": "commandlineparser/2.3.0", + "files": [ + ".signature.p7s", + "commandlineparser.2.3.0.nupkg.sha512", + "commandlineparser.nuspec", + "lib/net40/CommandLine.XML", + "lib/net40/CommandLine.dll", + "lib/net45/CommandLine.XML", + "lib/net45/CommandLine.dll", + "lib/netstandard1.5/CommandLine.dll", + "lib/netstandard1.5/CommandLine.xml", + "readme.md" + ] + }, + "EPPlus/4.5.2.1": { + "sha512": "/OzYn/n982Ozu+ARWISjn9REIb3PA5KN8qPfp3JKOoSnBezN3loGCQ2k0nLNL5K8+b+3boinsNiRbm5ovEfeog==", + "type": "package", + "path": "epplus/4.5.2.1", + "files": [ + "epplus.4.5.2.1.nupkg.sha512", + "epplus.nuspec", + "lib/net35/EPPlus.dll", + "lib/net35/EPPlus.xml", + "lib/net40/EPPlus.dll", + "lib/net40/EPPlus.xml", + "lib/netstandard2.0/EPPlus.dll", + "lib/netstandard2.0/EPPlus.xml", + "readme.txt" + ] + }, + "IngeniBridge.BuildUtils/1.0.6": { + "sha512": "S0Cz50zdX0mLF7S6CL9JCKJFa2+XAonrZcKOvvzlXx1KAoLiOLZ1y8mi1vYXi4vnQGIwOTNn9HJlAhIH9xkI/g==", + "type": "package", + "path": "ingenibridge.buildutils/1.0.6", + "files": [ + ".signature.p7s", + "ingenibridge.buildutils.1.0.6.nupkg.sha512", + "ingenibridge.buildutils.nuspec", + "lib/net45/IngeniBridge.BuildUtils.dll", + "lib/netstandard2.0/IngeniBridge.BuildUtils.dll" + ] + }, + "IngeniBridge.Core/1.0.37": { + "sha512": "V5zIao9IGH9F10UDOMN1oubR0uubmDxY2z50BtiCXUj61lOMiGnpYRrLqeUKcjNQesL9Repvwi7YW1bQ4bMtNg==", + "type": "package", + "path": "ingenibridge.core/1.0.37", + "files": [ + ".signature.p7s", + "ingenibridge.core.1.0.37.nupkg.sha512", + "ingenibridge.core.nuspec", + "lib/net45/IngeniBridge.Core.dll", + "lib/netstandard2.0/IngeniBridge.Core.dll" + ] + }, + "IngeniBridge.StorageAccessor.InMemory/1.0.8": { + "sha512": "qF7zmqcVEbpUhJdtdJ0JsES4L0o1ConlepPnd6f89Ygu3gKzV5ekmAKdOkdxeNk7ZGbf+Q8vCI/BHzy3WRPM9g==", + "type": "package", + "path": "ingenibridge.storageaccessor.inmemory/1.0.8", + "files": [ + ".signature.p7s", + "ingenibridge.storageaccessor.inmemory.1.0.8.nupkg.sha512", + "ingenibridge.storageaccessor.inmemory.nuspec", + "lib/net45/IngeniBridge.StorageAccessor.InMemory.dll", + "lib/netstandard2.0/IngeniBridge.StorageAccessor.InMemory.dll" + ] + }, + "JT.TechCases.Threading/1.0.12": { + "sha512": "P5/D3riDQc/cqnIMekNh7f1RVscDTq8wVI1dXQh9453BmF+7fTnNSzT3HiKcrbcO7DDugNPS9CUJFVz9xrE0cw==", + "type": "package", + "path": "jt.techcases.threading/1.0.12", + "files": [ + ".signature.p7s", + "jt.techcases.threading.1.0.12.nupkg.sha512", + "jt.techcases.threading.nuspec", + "lib/net40/JT.TechCases.Threading.dll", + "lib/net45/JT.TechCases.Threading.dll", + "lib/netstandard2.0/JT.TechCases.Threading.dll" + ] + }, + "log4net/2.0.8": { + "sha512": "N41MQGHZImiCfn0cUuSBjZxrcNfIQCuCgQP0rpgB3J/NWponEh3lc1LxJEuIsPAR9Oc1jVvfkNNFCY1C5hf9LA==", + "type": "package", + "path": "log4net/2.0.8", + "files": [ + "lib/net20-full/log4net.dll", + "lib/net20-full/log4net.xml", + "lib/net35-client/log4net.dll", + "lib/net35-client/log4net.xml", + "lib/net35-full/log4net.dll", + "lib/net35-full/log4net.xml", + "lib/net40-client/log4net.dll", + "lib/net40-client/log4net.xml", + "lib/net40-full/log4net.dll", + "lib/net40-full/log4net.xml", + "lib/net45-full/log4net.dll", + "lib/net45-full/log4net.xml", + "lib/netstandard1.3/log4net.dll", + "log4net.2.0.8.nupkg.sha512", + "log4net.nuspec" + ] + }, + "Microsoft.CSharp/4.5.0": { + "sha512": "EGoBmf3Na2ppbhPePDE9PlX81r1HuOZH5twBrq7couJZiPTjUnD3648balerQJO6EJ8Sj+43+XuRwQ7r+3tE3w==", + "type": "package", + "path": "microsoft.csharp/4.5.0", + "files": [ + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.5.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Newtonsoft.Json/11.0.2": { + "sha512": "IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==", + "type": "package", + "path": "newtonsoft.json/11.0.2", + "files": [ + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml", + "newtonsoft.json.11.0.2.nupkg.sha512", + "newtonsoft.json.nuspec" + ] + }, + "System.Net.Http/4.3.3": { + "sha512": "7rCqIbkC/P2+A00NoDH5gnvFhADmX7Dc4INvsOajbU1MVhktE9vZNrjPtF82N6Uo7obK+yzlrPUv/M+snnN/9w==", + "type": "package", + "path": "system.net.http/4.3.3", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.3.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==", + "type": "package", + "path": "system.runtime.serialization.primitives/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Runtime.Serialization.Primitives.dll", + "lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "system.runtime.serialization.primitives.4.3.0.nupkg.sha512", + "system.runtime.serialization.primitives.nuspec" + ] + }, + "System.ValueTuple/4.5.0": { + "sha512": "xZtSZNEHGa+tGsKuP4sh257vxJ/yemShz4EusmomkynMzuEDDjVaErBNewpzEF6swUgbcrSQAX3ELsEp1zCOwA==", + "type": "package", + "path": "system.valuetuple/4.5.0", + "files": [ + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.ValueTuple.dll", + "lib/net461/System.ValueTuple.xml", + "lib/net47/System.ValueTuple.dll", + "lib/net47/System.ValueTuple.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.ValueTuple.dll", + "lib/netstandard1.0/System.ValueTuple.xml", + "lib/netstandard2.0/_._", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.ValueTuple.dll", + "ref/net47/System.ValueTuple.dll", + "ref/netcoreapp2.0/_._", + "ref/netstandard2.0/_._", + "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.valuetuple.4.5.0.nupkg.sha512", + "system.valuetuple.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + } + }, + "projectFileDependencyGroups": { + ".NETFramework,Version=v4.5": [ + "CommandLineParser >= 2.3.0", + "IngeniBridge.BuildUtils >= 1.0.6", + "IngeniBridge.Core >= 1.0.37", + "IngeniBridge.StorageAccessor.InMemory >= 1.0.8", + "JT.TechCases.Threading >= 1.0.12", + "System.Net.Http >= 4.3.3", + "log4net >= 2.0.8" + ] + }, + "packageFolders": { + "C:\\Users\\joset\\.nuget\\packages\\": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\joset\\repos_github\\IngeniBridge\\IngeniBridge.Programs\\IngeniBridge.GenerateFullInventory\\IngeniBridge.GenerateFullInventory.csproj", + "projectName": "IngeniBridge.GenerateFullInventory", + "projectPath": "C:\\Users\\joset\\repos_github\\IngeniBridge\\IngeniBridge.Programs\\IngeniBridge.GenerateFullInventory\\IngeniBridge.GenerateFullInventory.csproj", + "packagesPath": "C:\\Users\\joset\\.nuget\\packages\\", + "outputPath": "C:\\Users\\joset\\repos_github\\IngeniBridge\\IngeniBridge.Programs\\IngeniBridge.GenerateFullInventory\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\joset\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net45" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net45": { + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net45": { + "dependencies": { + "CommandLineParser": { + "target": "Package", + "version": "[2.3.0, )" + }, + "IngeniBridge.BuildUtils": { + "target": "Package", + "version": "[1.0.6, )" + }, + "IngeniBridge.Core": { + "target": "Package", + "version": "[1.0.37, )" + }, + "IngeniBridge.StorageAccessor.InMemory": { + "target": "Package", + "version": "[1.0.8, )" + }, + "JT.TechCases.Threading": { + "target": "Package", + "version": "[1.0.12, )" + }, + "System.Net.Http": { + "target": "Package", + "version": "[4.3.3, )" + }, + "log4net": { + "target": "Package", + "version": "[2.0.8, )" + } + } + } + }, + "runtimes": { + "win7-x86": { + "#import": [] + } + } + } +} \ No newline at end of file diff --git a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/packages.config b/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/packages.config deleted file mode 100644 index 80794af..0000000 --- a/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/packages.config +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/IngeniBridge.IBDatabaseParser.csproj b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/IngeniBridge.IBDatabaseParser.csproj index 05ce9af..66d417a 100644 --- a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/IngeniBridge.IBDatabaseParser.csproj +++ b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/IngeniBridge.IBDatabaseParser.csproj @@ -1,93 +1,28 @@ - - - + + - Debug - AnyCPU - {260CFB42-5402-4AA0-8A30-E38C73CFD19C} + net45 + IngeniBridge.IBDatabaseParser + 1.0.0 + JTO Tec + Copyright © DEAGITAL 2016 + + DEAGITAL Exe - Properties - IngeniBridge.IBDatabaseParser - IngeniBridge.IBDatabaseParser - v4.6.1 - 512 - true - - AnyCPU - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - AnyCPU - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - ..\packages\CommandLineParser20.2.0.0.0\lib\net40\CommandLine.dll - True - - - ..\packages\EPPlus.4.5.2.1\lib\net40\EPPlus.dll - - - ..\packages\IngeniBridge.Core.1.0.36\lib\net461\IngeniBridge.Core.dll - - - ..\packages\IngeniBridge.StorageAccessor.InMemory.1.0.6\lib\net461\IngeniBridge.StorageAccessor.InMemory.dll - - - ..\packages\JT.TechCases.Threading.1.0.11\lib\net45\JT.TechCases.Threading.dll - - - ..\packages\log4net.2.0.8\lib\net45-full\log4net.dll - True - - - ..\packages\Newtonsoft.Json.11.0.2\lib\net45\Newtonsoft.Json.dll - - - - - - - - - ..\packages\System.ValueTuple.4.5.0\lib\net461\System.ValueTuple.dll - - - - - - - - + + - - - + + + + + + - - - - - - - + + + NET45;NETFULL + + \ No newline at end of file diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/LaunchOnMyCompanyDb.cmd b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/LaunchOnMyCompanyDb.cmd index 3848c6e..c3e8e2a 100644 --- a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/LaunchOnMyCompanyDb.cmd +++ b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/LaunchOnMyCompanyDb.cmd @@ -1,3 +1,3 @@ rem dont forget to rename ibdb file in the command line -bin\Release\IngeniBridge.IBDatabaseParser --StorageAccessorAssembly="IngeniBridge.StorageAccessor.InMemory.dll" --IBDatabase=..\..\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\MasterAssetMyCompany_2018_08_25.ibdb +bin\Release\IngeniBridge.IBDatabaseParser --StorageAccessorAssembly="IngeniBridge.StorageAccessor.InMemory.dll" --IBDatabase=..\..\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\MasterAssetMyCompany_2018_09_05.ibdb pause \ No newline at end of file diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/Program.cs b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/Program.cs index f0db8d7..7453115 100644 --- a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/Program.cs +++ b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/Program.cs @@ -4,6 +4,7 @@ using IngeniBridge.Core.StagingData; using IngeniBridge.Core.Storage; using log4net; +using log4net.Config; using System; using System.Collections.Generic; using System.Diagnostics; @@ -20,27 +21,32 @@ class Program private static readonly ILog log = LogManager.GetLogger ( System.Reflection.MethodBase.GetCurrentMethod ().DeclaringType ); static int Main ( string [] args ) { - int ret = 0; - log4net.Config.XmlConfigurator.Configure (); + int exitCode = 0; + XmlConfigurator.Configure ( LogManager.GetRepository ( Assembly.GetEntryAssembly () ), new FileInfo ( "log4net.config" ) ); + CommandLineOptions options = null; ParserResult result = CommandLine.Parser.Default.ParseArguments ( args ); - if ( result.Errors.Any () ) + result.WithNotParsed ( ( errs ) => { - ret = 1; - return ( ret ); - } + errs.All ( err => { log.FatalFormat ( err.ToString () ); return ( true ); } ); + exitCode = 1; + } ); + if ( exitCode != 0 ) return ( exitCode ); + result.WithParsed ( opts => { options = opts; } ); + FileVersionInfo fvi = FileVersionInfo.GetVersionInfo ( Assembly.GetEntryAssembly ().Location ); + Console.WriteLine ( fvi.ProductName + " v" + fvi.FileVersion + "\n" + fvi.LegalCopyright ); log.Info ( "Starting " + Assembly.GetEntryAssembly ().GetName ().Name + " v" + Assembly.GetEntryAssembly ().GetName ().Version ); - log.Info ( "StorageAccessorAssembly => " + result.Value.StorageAccessorAssembly ); - log.Info ( "IBDatabase => " + result.Value.IBDatabase ); + log.Info ( "StorageAccessorAssembly => " + options.StorageAccessorAssembly ); + log.Info ( "IBDatabase => " + options.IBDatabase ); try { #region init IngeniBridge UriBuilder uri = new UriBuilder ( Assembly.GetExecutingAssembly ().CodeBase ); string path = Path.GetDirectoryName ( Uri.UnescapeDataString ( uri.Path ) ); - Assembly accessorasm = Assembly.LoadFile ( path + "\\" + result.Value.StorageAccessorAssembly ); + Assembly accessorasm = Assembly.LoadFile ( path + "\\" + options.StorageAccessorAssembly ); Core.Storage.StorageAccessor accessor = Core.Storage.StorageAccessor.InstantiateFromAccessorAssembly ( accessorasm ); AssetExtension.StorageAccessor = accessor; TimedDataExtension.StorageAccessor = accessor; - accessor.OpenDB ( result.Value.IBDatabase ); + accessor.OpenDB ( options.IBDatabase ); #endregion log.Info ( "DataModel Name => " + accessor.Version.Name ); log.Info ( "DataModel Date => " + accessor.Version.Generated.ToString () ); @@ -69,9 +75,9 @@ static int Main ( string [] args ) log.Error ( ex ); Console.WriteLine ( ex.Message ); log.Error ( "Terminated FAILED." ); - ret = 1; + exitCode = 1; } - return ( ret ); + return ( exitCode ); } } } diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/Properties/AssemblyInfo.cs b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/Properties/AssemblyInfo.cs deleted file mode 100644 index aa68369..0000000 --- a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle ( "IngeniBridge.IBDatabaseParser" )] -[assembly: AssemblyDescription ( "" )] -[assembly: AssemblyConfiguration ( "" )] -[assembly: AssemblyCompany ( "" )] -[assembly: AssemblyProduct ( "IngeniBridge.IBDatabaseParser" )] -[assembly: AssemblyCopyright ( "Copyright © 2017" )] -[assembly: AssemblyTrademark ( "" )] -[assembly: AssemblyCulture ( "" )] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible ( false )] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid ( "260cfb42-5402-4aa0-8a30-e38c73cfd19c" )] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion ( "1.0.0.0" )] -[assembly: AssemblyFileVersion ( "1.0.0.0" )] diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/IngeniBridge.Core.dll b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/IngeniBridge.Core.dll index 50719c5..3e8448a 100644 Binary files a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/IngeniBridge.Core.dll and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/IngeniBridge.Core.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/IngeniBridge.Core.xml b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/IngeniBridge.Core.xml index 6bb120c..b8046c3 100644 --- a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/IngeniBridge.Core.xml +++ b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/IngeniBridge.Core.xml @@ -223,9 +223,9 @@ Description field name
- + - Scada external reference name + Timed Data external reference name @@ -243,14 +243,19 @@ Indicates if external reference + + + Indicates if nomenclature + + Indicates if description field - + - /// Indicates if scada external reference field + Indicates if timed data external reference field @@ -324,6 +329,127 @@ The string + + + This method retrieves a property value + + Entity instance + Property name + The value + + + + This method retrieves the properties of specified type + + Entity instance + Type name as a string + Looking for array property ? + The property name if specified + + + + + This method retrieves the code property value from an entity + + The entity + the code value + + + + This method sets the code value into an entity + + The entity + The code to set + + + + This method retrieves the label property value from an entity + + The entity + the label value + + + + This method sets the label value into an entity + + The entity + The code to set + + + + This method retrieves the storageuniqueid property value from an entity + + + + + + + This method set a property value + + Entity instance + Property name + The vaue + + + + Notifies linked entities from entity + + Entity type, applies also to derivated entity types + + + + + This method parses linked entities + + Entity type, applies also to derivated entity types + Entity + Callback to linked entities, + indicates to return nomenclatures as well + indicates wether to return external refs as well + + + + This method parses all linked entities (Asset and Nomenclature) + + Entity + Callback to linked entities, + indicates to return nomenclatures as well + indicates wether to return external refs as well + + + + Notifies properties values + + Property name + Value + + + + This method parses all nomenclatures and external references if specified + + Entity + Callback to properties, + return external references as properties + + + + Notifies attributes values + + Attribute description + Value + + + + + This method parses all nomenclatures and external references if specified + + Entity + Callback to attributes, + return external references as properties + return nomenclatures as properties + return links to entities as properties + return datas as properties + Root entity @@ -444,6 +570,26 @@ This class contains meta data servicesfor the data model + + + Code property name + + + + + Label property name + + + + + StorageUniqueID property name + + + + + Datas property name + + returns a Dataviz index helper if implemented in the metamodel @@ -463,11 +609,33 @@ The type Meta data information + + + This method loads all meta data information from a data model assembly + + Meta data information + + + + This method retrieves the first property inside an object instance compatible with the type + + the object instance + the type to find the compatible property + the property name if found else null + + + + This method retrieves all the properties inside an object instance compatible with the type + + the object instance + the type to find the compatible property + the properties found + This method returns meta data describing an entity type - The entity type name + The entity type name >Meta data information @@ -494,60 +662,6 @@ >a list of meta data - - - This method loads all meta data information from a data model assembly - - Meta data information - - - - This method retrieves the property name inside an object instance compatible with the type - - the object instance - the type to find the compatible property - the property name if found else null - - - - This method retrieves a property value - - Entity instance - Property name - The value - - - - This method retrieves the properties of specified type - - Entity instance - Type name as a string - Looking for array property ? - The property name if specified - - - - - This method retrieves the code property value from an entity - - The entity - the code value - - - - This method retrieves the label property value from an entity - - The entity - the label value - - - - This method set a property value - - Entity instance - Property name - The vaue - This method retrieves the types list in the model meta information @@ -560,64 +674,6 @@ Types - - - Notifies linked entities from entity - - Entity type, applies also to derivated entity types - - - - - This method parses linked entities - - Entity type, applies also to derivated entity types - Entity - Callback to linked entities, - indicates wether to return external refs as well - - - - This method parses all linked entities (Asset and Nomenclature) - - Entity - Callback to linked entities, - indicates wether to return external refs as well - - - - Notifies properties values - - Property name - Value - - - - This method parses all nomenclatures and external references if specified - - Entity - Callback to properties, - return external references as properties - - - - Notifies attributes values - - Attribute description - Value - - - - - This method parses all nomenclatures and external references if specified - - Entity - Callback to attributes, - return external references as properties - return nomenclatures as properties - return links to entities as properties - return datas as properties - This class represents the meta information on an IngeniBridge entity @@ -673,21 +729,11 @@ Attribute meta information for label - - - Name of code property - - Indicates if entity must not be indexed - - - Name of label property - - Properties in the entity @@ -805,25 +851,31 @@ The stream string The contexted datas - - - This method parameterizes the json serializer - - - This interface is the Dataviz index contract - + Implement this method to index a node - the helper associated with the metamodel - the iterated node + the storage accessor + the path of the actual node + the iterated node the actual text to be searched through rest calls + + + This class provides services for serialization + + + + + This method parameterizes the json serializer + + + Contexted asset returned by the web service @@ -933,53 +985,35 @@ the string - - - Parents in revere order (the 0 index element is the immediate parent) - - - - - The name of the attribute (in the parent) that contains the actual node - - - - - The actual node - - - + - Meta description associated with the node + This class provides for asset and timeddata object storage - - - The flat path, - - - + - Converts to string + Notifies a node in the tree - The string + Node type, applies also to derivated entites + The node + false to stop, true to continue The root node of the tree - + - Notifies a node in the tree + This function returns the immediate children number - Node type, applies also to derivated entites - The node - false to stop, true to continue + Node type to filter + Unique storage ID + - This class represents a timed data (SCADA or BigData timed value) + This class represents a timed data (Data histrian database timed value) diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/IngeniBridge.IBDatabaseParser.exe b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/IngeniBridge.IBDatabaseParser.exe index 4edafb2..636df6e 100644 Binary files a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/IngeniBridge.IBDatabaseParser.exe and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/IngeniBridge.IBDatabaseParser.exe differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/IngeniBridge.IBDatabaseParser.pdb b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/IngeniBridge.IBDatabaseParser.pdb index cd76685..f97df1b 100644 Binary files a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/IngeniBridge.IBDatabaseParser.pdb and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/IngeniBridge.IBDatabaseParser.pdb differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/IngeniBridge.StorageAccessor.InMemory.dll b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/IngeniBridge.StorageAccessor.InMemory.dll index 763a322..f1780f7 100644 Binary files a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/IngeniBridge.StorageAccessor.InMemory.dll and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/IngeniBridge.StorageAccessor.InMemory.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/JT.TechCases.Threading.dll b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/JT.TechCases.Threading.dll index 13843b6..c448275 100644 Binary files a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/JT.TechCases.Threading.dll and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/JT.TechCases.Threading.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/JT.TechCases.Threading.xml b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/JT.TechCases.Threading.xml deleted file mode 100644 index e908e45..0000000 --- a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/JT.TechCases.Threading.xml +++ /dev/null @@ -1,882 +0,0 @@ - - - - JT.TechCases.Threading - - - - - - - - - - Initializes a new instance of the class. - - The s context description. - The list exceptions. - - - - Initializes a new instance of the class. - - The s context description. - The ex. - - - - Required designer variable. - - - - - Clean up any resources being used. - - true if managed resources should be disposed; otherwise, false. - - - - Required method for Designer support - do not modify - the contents of this method with the code editor. - - - - - Class to display exceptions - - - - - Constructor - - Context - List of exceptions - - - - Context - - Context - Single exception - - - - Required designer variable. - - - - - Clean up any resources being used. - - true if managed resources should be disposed; otherwise, false. - - - - Required method for Designer support - do not modify - the contents of this method with the code editor. - - - - - This class is the base for all exceptions. It is important so it can be treated by the global handler. - - - - - Constructor. - - Message - - - - Constructor. - - Message - Inner exception - - - - Thread DoWork method cannot be null. - - - - - Constructor. - - - - - Error th creating an Thread. - - - - - Constructor. - - Message - - - - Error during execution of an Thread. - - - - - Constructor. - - Inner exception - - - - Error th calling Thread progress notification function. - - - - - Constructor. - - Inner exception - - - - Constructor. - - Message - Inner exception - - - - Error th calling Thread progress notification function. - - - - - Constructor. - - Inner exception - - - - Thread title cannot be null. - - - - - Constructor. - - - - - Thread pool title cannot be null. - - - - - Constructor. - - - - - Must call this method outside the thread. - - - - - Constructor. - - - - - Must call this method inside the thread. - - - - - Constructor. - - - - - Thread cannot be recycled. - - - - - Constructor. - - - - - Semaphore cannot be released. - - - - - Constructor. - - - - - Thread DoWork method cannot be null. - - - - - Constructor. - - - - - Abort method is obsolete. - - - - - Constructor. - - - - - Cannot call this method while thread running. - - - - - Constructor. - - - - - Cannot recycle thread pool after cancellation was requested - - - - - Constructor. - - - - - A strongly-typed resource class, for looking up localized strings, etc. - - - - - Returns the cached ResourceManager instance used by this class. - - - - - Overrides the current thread's CurrentUICulture property for all - resource lookups using this strongly typed resource class. - - - - - This class implement range splitting service - - - - - This function returns subranges from a whole range - - Lower bound - Higher bound - Number of sub ranges to be returned - User Data that wiil be rendered in each calculated SubRange - - - - - Callback for the LaunchSplitedTasks function, process the iteration - - The SubRange split being processed - the index withn the spitted task iteration - - - - Callback for the LaunchSplitedTasks function, initialize UserData into SubRange structure - - The SubRange structure where to set UserData data - - - - This method drives a splitted task for each iteration in callback - - The lower bound of the range (included) - The higher bound of the range (excluded) - The number of parallel iterations (driven by a dedicated pool) - Process callback - Init UserData callback - - - - This class contains a subrange - - - - - Lower bound - - - - - Higher bound - - - - - User Data that was passed at first call - - - - - The same as System.Threading class but without timeouts (wich is semantically nonsense) - - - - - Wait for entering a multiple read operation - - - - - release read operation - - - - - Wait for entering a single write operation - - - - - release write operation - - - - - displays object - - - - - - This class implements a monitorable semephore - - - - Constructor - Max value of the semaphore - - - Acquires the semaphoer - - - Releases the semaphore - - - Wait for the semaphore to come back down to 0 - - - - This property returns the actual count of the semaphore - - - - - displays object - - - - - - Callback function when semaphore is reset - - - - - Event to subscribe to notifications. - - - - - This class encapsulate a thread in the ADF framework. - - - - - Priority of the thread. - - - - - Maps to normal state. - - - - - Maps to lowest state. - - - - - The maximum amount of seconds an application must call CancelationPending property - - - - - Title of the thread. - - - - - Indicates wether cancellation has been requested, this is monitored from outside the thread, - to check the status from within the thread, call source.CheckStatus () - - true or false - - - - Indicates if the thread entered a sleep state - - true or false - - - - Current progression percentage - - The value of progress - - - - Current progression description - - - - - Indicates wether the thread is started - - - - - Thread priority. - - - - - This property erturns the owner pool - - - - - This property returns user data - - - - - This property indicates if the thread is running a long treatment - - - - - This property is set after the thread completed with an exception - - - - - This is an override because sometimes it may return the same key ... - - - - - - Starts the thread as STA by default - - - - - Starts the thread. - - the apartment state - - - - Starts later the thread as STA by default - - - - - Starts the thread but later. - - the apartment state - - - - This method reports thread progression. - - Percent progression - Description of the current step in progression - - - - Requests cancellation for the thread. - - - - - Indicates wether the thread is not responding. - - - - - - Callback function of the thread function - - The igniting Thread - - - - Event to subscribe to notifications. - - - - - Callback function of the thread progression - - The igniting Thread - Percent of progression - Description of the progression - - - - Event to subscribe to notifications. - - - - - Callback function of thread termination - - - - - - Event to subscribe to notifications. - - - - - Callback to the exception handler in the thread execution. - - The igniting Thread - The exception - - - - Event to subscribe to notifications. - - - - - Callback to notify the thread cancellation. - - The igniting Thread - - - - Event to subscribe to notifications. - - - - - This method calls all the delegates attached to an event - - the event - the event parameters - - - - This method calls all the delegates attached to an event - - the event - the event parameters - wait or not for the completion - - - - This method calls one delegate and checks if the origin is a winform - - the delegate - the delegate parameters - wait or not for the winform to return - the object returned from the delegate - - - - Abort must not be called - - - - - This method waits for the thread to finish - - - - - This method waits for the thread to finish - - The milliseconds timeout. - - - - This property indicates if the thread is suspended - - - - - Suspends this instance, must be called from outside the thread. - - - - - Resumes this instance. - - - - - The status of the current thread - - - - - The thread was suspended and was resumed - - - - - Cancellation has been requested, the thread must return execution immediatly - - - - - The thread is running normally - - - - - The thread is in a sleep instruction - - - - - This method returns the status of the thread, note that this method will handle the suspend mode - and must be called from within the thread - - The actual status - - - - This method resets the current sleep, if any - - - - - This method enters the thread into sleep mode, but will be automatically cancelled when calling RequestCancellation, - note that it must be called from within the thread - - - - - - Indicates wether the thread run and terminated at least once - - - - - This method lets the developer set the exception from within the DoWork body - so it is possible to gest it the termination - - the actual exception - - - - Returns the execution time spent by the thread (cannot be called before termination) - - - - - This class is used to monitor running threads. - - - - - This forms dislays all running threads - - - - - Required designer variable. - - - - - Clean up any resources being used. - - true if managed resources should be disposed; otherwise, false. - - - - Required method for Designer support - do not modify - the contents of this method with the code editor. - - - - - This class maintains a list of threads and is the only access point to create new ADFThreads. - - - - - This property returns user data - - - - - Title of the pool. - - - - - The ThreadPool size - - - - - Returns the execution time spent by the thread (cannot be called before termination) - - - - - This method creates a new pool - - size of the pool - user data held into the pool - the pool - - - - This method creates a new pool using a default and shared title, if the titled pool does exist then it is simply returned for resue - - title of the pool - size of the pool - user data held into the pool - the pool - - - - This method creates a new pool using a default and unique title, if the titled pool does exist then a new title is created with unique appended counter - - title of the pool - size of the pool - user data held into the pool - the pool - - - - This method removes a pool - - the pool to remove - - - - This method retrieve a pool by name - - the pool name - - - - - This property returns the allocated pools - - - - - This method creates a thread. - - The title of the thread - The DoWork callback function that implements thread execution, cannot be null - The EndWork callback function that notifies thread termination - The ProgressWork callback function that notifies thread progression - The cancel thread notification method - user data - The Thread - - - - This method creates a thread. - - The title of the thread - The DoWork callback function that implements thread execution, cannot be null - The EndWork callback function that notifies thread termination - The ProgressWork callback function that notifies thread progression - The Thread - - - - This method creates a thread. - - The title of the thread - The DoWork callback function that implements thread execution, cannot be null - The EndWork callback function that notifies thread termination - The ProgressWork callback function that notifies thread progression - user data - The Thread - - - - This methods requests cancellation on all running threads - - - - - This method will wait for all threads to complete - - - - - Wait for completion of all threads in this pool - - - - - Event to subscribe to exception notifications. - - - - - Event to subscribe to exception notifications. - - - - - This delegate will notify when the pool changes - - - - - Event to subscribe - - - - - This delegate will notify when the threads terminate - - the owner pool - - - - Event to subscribe - - - - diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/CommandLine.dll b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/CommandLine.dll new file mode 100644 index 0000000..618ed3d Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/CommandLine.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/EPPlus.dll b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/EPPlus.dll new file mode 100644 index 0000000..84afe50 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/EPPlus.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/IngeniBridge.BuildUtils.dll b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/IngeniBridge.BuildUtils.dll new file mode 100644 index 0000000..6587533 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/IngeniBridge.BuildUtils.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/IngeniBridge.Core.dll b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/IngeniBridge.Core.dll new file mode 100644 index 0000000..178fbee Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/IngeniBridge.Core.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/IngeniBridge.IBDatabaseParser.exe b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/IngeniBridge.IBDatabaseParser.exe new file mode 100644 index 0000000..1c1f98b Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/IngeniBridge.IBDatabaseParser.exe differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/IngeniBridge.IBDatabaseParser.exe.config b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/IngeniBridge.IBDatabaseParser.exe.config new file mode 100644 index 0000000..5035d4f --- /dev/null +++ b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/IngeniBridge.IBDatabaseParser.exe.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/IngeniBridge.IBDatabaseParser.pdb b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/IngeniBridge.IBDatabaseParser.pdb new file mode 100644 index 0000000..b3c9eab Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/IngeniBridge.IBDatabaseParser.pdb differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/IngeniBridge.StorageAccessor.InMemory.dll b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/IngeniBridge.StorageAccessor.InMemory.dll new file mode 100644 index 0000000..f680a88 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/IngeniBridge.StorageAccessor.InMemory.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/JT.TechCases.Threading.dll b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/JT.TechCases.Threading.dll new file mode 100644 index 0000000..c448275 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/JT.TechCases.Threading.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/Newtonsoft.Json.dll b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/Newtonsoft.Json.dll new file mode 100644 index 0000000..8069902 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/Newtonsoft.Json.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/System.ValueTuple.dll b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/System.ValueTuple.dll new file mode 100644 index 0000000..65fa9ee Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/System.ValueTuple.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/log4net.dll b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/log4net.dll new file mode 100644 index 0000000..93fb476 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Debug/net45/log4net.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/IngeniBridge.IBDatabaseParser.exe b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/IngeniBridge.IBDatabaseParser.exe index 863774b..3a99887 100644 Binary files a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/IngeniBridge.IBDatabaseParser.exe and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/IngeniBridge.IBDatabaseParser.exe differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/IngeniBridge.IBDatabaseParser.log b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/IngeniBridge.IBDatabaseParser.log index f4b6cfd..84e330d 100644 --- a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/IngeniBridge.IBDatabaseParser.log +++ b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/IngeniBridge.IBDatabaseParser.log @@ -67,3 +67,12 @@ 2018-08-25 06:50:57,739;[1];INFO ;IngeniBridge.IBDatabaseParser.Program;DataModel Version Minor => 0 2018-08-25 06:50:57,739;[1];INFO ;IngeniBridge.IBDatabaseParser.Program;DataModel Version Build => 8 2018-08-25 06:50:58,118;[1];INFO ;IngeniBridge.IBDatabaseParser.Program;Terminated OK. +2018-09-05 22:13:13,538;[1];INFO ;IngeniBridge.IBDatabaseParser.Program;Starting IngeniBridge.IBDatabaseParser v1.0.0.0 +2018-09-05 22:13:13,549;[1];INFO ;IngeniBridge.IBDatabaseParser.Program;StorageAccessorAssembly => IngeniBridge.StorageAccessor.InMemory.dll +2018-09-05 22:13:13,549;[1];INFO ;IngeniBridge.IBDatabaseParser.Program;IBDatabase => ..\..\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\MasterAssetMyCompany_2018_09_05.ibdb +2018-09-05 22:13:13,916;[1];INFO ;IngeniBridge.IBDatabaseParser.Program;DataModel Name => MyCompanyDataModel +2018-09-05 22:13:13,918;[1];INFO ;IngeniBridge.IBDatabaseParser.Program;DataModel Date => 05/09/2018 21:51:08 +2018-09-05 22:13:13,918;[1];INFO ;IngeniBridge.IBDatabaseParser.Program;DataModel Version Majour => 1 +2018-09-05 22:13:13,919;[1];INFO ;IngeniBridge.IBDatabaseParser.Program;DataModel Version Minor => 0 +2018-09-05 22:13:13,919;[1];INFO ;IngeniBridge.IBDatabaseParser.Program;DataModel Version Build => 8 +2018-09-05 22:13:14,519;[1];INFO ;IngeniBridge.IBDatabaseParser.Program;Terminated OK. diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/IngeniBridge.IBDatabaseParser.pdb b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/IngeniBridge.IBDatabaseParser.pdb index 89701d0..e34eeda 100644 Binary files a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/IngeniBridge.IBDatabaseParser.pdb and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/IngeniBridge.IBDatabaseParser.pdb differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/JT.TechCases.Threading.dll b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/JT.TechCases.Threading.dll index a5b38cc..c448275 100644 Binary files a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/JT.TechCases.Threading.dll and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/JT.TechCases.Threading.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/JT.TechCases.Threading.xml b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/JT.TechCases.Threading.xml deleted file mode 100644 index de092d6..0000000 --- a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/JT.TechCases.Threading.xml +++ /dev/null @@ -1,788 +0,0 @@ - - - - JT.TechCases.Threading - - - - - This class is the base for all exceptions. It is important so it can be treated by the global handler. - - - - - Constructor. - - Message - - - - Constructor. - - Message - Inner exception - - - - Thread DoWork method cannot be null. - - - - - Constructor. - - - - - Error th creating an Thread. - - - - - Constructor. - - Message - - - - Error during execution of an Thread. - - - - - Constructor. - - Inner exception - - - - Error th calling Thread progress notification function. - - - - - Constructor. - - Inner exception - - - - Constructor. - - Message - Inner exception - - - - Error th calling Thread progress notification function. - - - - - Constructor. - - Inner exception - - - - Thread title cannot be null. - - - - - Constructor. - - - - - Thread pool title cannot be null. - - - - - Constructor. - - - - - Must call this method outside the thread. - - - - - Constructor. - - - - - Must call this method inside the thread. - - - - - Constructor. - - - - - Thread cannot be recycled. - - - - - Constructor. - - - - - Semaphore cannot be released. - - - - - Constructor. - - - - - Thread DoWork method cannot be null. - - - - - Constructor. - - - - - Abort method is obsolete. - - - - - Constructor. - - - - - Cannot call this method while thread running. - - - - - Constructor. - - - - - Cannot recycle thread pool after cancellation was requested - - - - - Constructor. - - - - - A strongly-typed resource class, for looking up localized strings, etc. - - - - - Returns the cached ResourceManager instance used by this class. - - - - - Overrides the current thread's CurrentUICulture property for all - resource lookups using this strongly typed resource class. - - - - - This class implement range splitting service - - - - - This function returns subranges from a whole range - - Lower bound - Higher bound - Number of sub ranges to be returned - User Data that wiil be rendered in each calculated SubRange - - - - - Callback for the LaunchSplitedTasks function, process the iteration - - The SubRange split being processed - the index withn the spitted task iteration - - - - Callback for the LaunchSplitedTasks function, initialize UserData into SubRange structure - - The SubRange structure where to set UserData data - - - - This method drives a splitted task for each iteration in callback - - The lower bound of the range (included) - The higher bound of the range (excluded) - The number of parallel iterations (driven by a dedicated pool) - Process callback - Init UserData callback - - - - This class contains a subrange - - - - - Lower bound - - - - - Higher bound - - - - - User Data that was passed at first call - - - - - The same as System.Threading class but without timeouts (wich is semantically nonsense) - - - - - Wait for entering a multiple read operation - - - - - release read operation - - - - - Wait for entering a single write operation - - - - - release write operation - - - - - displays object - - - - - - This class implements a monitorable semephore - - - - Constructor - Max value of the semaphore - - - Acquires the semaphoer - - - Releases the semaphore - - - Wait for the semaphore to come back down to 0 - - - - This property returns the actual count of the semaphore - - - - - displays object - - - - - - Callback function when semaphore is reset - - - - - Event to subscribe to notifications. - - - - - This class encapsulate a thread in the ADF framework. - - - - - Priority of the thread. - - - - - Maps to normal state. - - - - - Maps to lowest state. - - - - - The maximum amount of seconds an application must call CancelationPending property - - - - - Title of the thread. - - - - - Indicates wether cancellation has been requested, this is monitored from outside the thread, - to check the status from within the thread, call source.CheckStatus () - - true or false - - - - Indicates if the thread entered a sleep state - - true or false - - - - Current progression percentage - - The value of progress - - - - Current progression description - - - - - Indicates wether the thread is started - - - - - Thread priority. - - - - - This property erturns the owner pool - - - - - This property returns user data - - - - - This property indicates if the thread is running a long treatment - - - - - This property is set after the thread completed with an exception - - - - - This is an override because sometimes it may return the same key ... - - - - - - Starts the thread as STA by default - - - - - Starts the thread. - - the apartment state - - - - Starts later the thread as STA by default - - - - - Starts the thread but later. - - the apartment state - - - - This method reports thread progression. - - Percent progression - Description of the current step in progression - - - - Requests cancellation for the thread. - - - - - Indicates wether the thread is not responding. - - - - - - Callback function of the thread function - - The igniting Thread - - - - Event to subscribe to notifications. - - - - - Callback function of the thread progression - - The igniting Thread - Percent of progression - Description of the progression - - - - Event to subscribe to notifications. - - - - - Callback function of thread termination - - - - - - Event to subscribe to notifications. - - - - - Callback to the exception handler in the thread execution. - - The igniting Thread - The exception - - - - Event to subscribe to notifications. - - - - - Callback to notify the thread cancellation. - - The igniting Thread - - - - Event to subscribe to notifications. - - - - - This method calls all the delegates attached to an event - - the event - the event parameters - - - - This method calls all the delegates attached to an event - - the event - the event parameters - wait or not for the completion - - - - This method calls one delegate and checks if the origin is a winform - - the delegate - the delegate parameters - wait or not for the winform to return - the object returned from the delegate - - - - Abort must not be called - - - - - This method waits for the thread to finish - - - - - This method waits for the thread to finish - - The milliseconds timeout. - - - - This property indicates if the thread is suspended - - - - - Suspends this instance, must be called from outside the thread. - - - - - Resumes this instance. - - - - - The status of the current thread - - - - - The thread was suspended and was resumed - - - - - Cancellation has been requested, the thread must return execution immediatly - - - - - The thread is running normally - - - - - The thread is in a sleep instruction - - - - - This method returns the status of the thread, note that this method will handle the suspend mode - and must be called from within the thread - - The actual status - - - - This method resets the current sleep, if any - - - - - This method enters the thread into sleep mode, but will be automatically cancelled when calling RequestCancellation, - note that it must be called from within the thread - - - - - - Indicates wether the thread run and terminated at least once - - - - - This method lets the developer set the exception from within the DoWork body - so it is possible to gest it the termination - - the actual exception - - - - Returns the execution time spent by the thread (cannot be called before termination) - - - - - This class maintains a list of threads and is the only access point to create new ADFThreads. - - - - - This property returns the threads inside the pool - - - - - This property returns user data - - - - - Title of the pool. - - - - - The ThreadPool size - - - - - Returns the execution time spent by the thread (cannot be called before termination) - - - - - This method creates a new pool - - size of the pool - user data held into the pool - the pool - - - - This method creates a new pool using a default and shared title, if the titled pool does exist then it is simply returned for resue - - title of the pool - size of the pool - user data held into the pool - the pool - - - - This method creates a new pool using a default and unique title, if the titled pool does exist then a new title is created with unique appended counter - - title of the pool - size of the pool - user data held into the pool - the pool - - - - This method removes a pool - - the pool to remove - - - - This method retrieve a pool by name - - the pool name - - - - - This property returns the allocated pools - - - - - This method creates a thread. - - The title of the thread - The DoWork callback function that implements thread execution, cannot be null - The EndWork callback function that notifies thread termination - The ProgressWork callback function that notifies thread progression - The cancel thread notification method - user data - The Thread - - - - This method creates a thread. - - The title of the thread - The DoWork callback function that implements thread execution, cannot be null - The EndWork callback function that notifies thread termination - The ProgressWork callback function that notifies thread progression - The Thread - - - - This method creates a thread. - - The title of the thread - The DoWork callback function that implements thread execution, cannot be null - The EndWork callback function that notifies thread termination - The ProgressWork callback function that notifies thread progression - user data - The Thread - - - - This methods requests cancellation on all running threads - - - - - This method will wait for all threads to complete - - - - - Wait for completion of all threads in this pool - - - - - Event to subscribe to exception notifications. - - - - - Event to subscribe to exception notifications. - - - - - This delegate will notify when the pool changes - - - - - Event to subscribe - - - - - This delegate will notify when the threads terminate - - the owner pool - - - - Event to subscribe - - - - diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/CommandLine.dll b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/CommandLine.dll new file mode 100644 index 0000000..618ed3d Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/CommandLine.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/EPPlus.dll b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/EPPlus.dll new file mode 100644 index 0000000..84afe50 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/EPPlus.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/IngeniBridge.BuildUtils.dll b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/IngeniBridge.BuildUtils.dll new file mode 100644 index 0000000..6587533 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/IngeniBridge.BuildUtils.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/IngeniBridge.Core.dll b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/IngeniBridge.Core.dll new file mode 100644 index 0000000..178fbee Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/IngeniBridge.Core.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/IngeniBridge.IBDatabaseParser.exe b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/IngeniBridge.IBDatabaseParser.exe new file mode 100644 index 0000000..6739c15 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/IngeniBridge.IBDatabaseParser.exe differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/IngeniBridge.IBDatabaseParser.exe.config b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/IngeniBridge.IBDatabaseParser.exe.config new file mode 100644 index 0000000..5035d4f --- /dev/null +++ b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/IngeniBridge.IBDatabaseParser.exe.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/IngeniBridge.IBDatabaseParser.pdb b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/IngeniBridge.IBDatabaseParser.pdb new file mode 100644 index 0000000..5f091d9 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/IngeniBridge.IBDatabaseParser.pdb differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/IngeniBridge.StorageAccessor.InMemory.dll b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/IngeniBridge.StorageAccessor.InMemory.dll new file mode 100644 index 0000000..f680a88 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/IngeniBridge.StorageAccessor.InMemory.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/JT.TechCases.Threading.dll b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/JT.TechCases.Threading.dll new file mode 100644 index 0000000..c448275 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/JT.TechCases.Threading.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/Newtonsoft.Json.dll b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/Newtonsoft.Json.dll new file mode 100644 index 0000000..8069902 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/Newtonsoft.Json.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/System.ValueTuple.dll b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/System.ValueTuple.dll new file mode 100644 index 0000000..65fa9ee Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/System.ValueTuple.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/log4net.dll b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/log4net.dll new file mode 100644 index 0000000..93fb476 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/bin/Release/net45/log4net.dll differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/App.config b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/log4net.config similarity index 95% rename from IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/App.config rename to IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/log4net.config index a3a6d1f..a0e7bcb 100644 --- a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/App.config +++ b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/log4net.config @@ -3,9 +3,6 @@
- - - diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/IngeniBridge.IBDatabaseParser.csproj.CoreCompileInputs.cache b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/IngeniBridge.IBDatabaseParser.csproj.CoreCompileInputs.cache index f2913c2..19e90e1 100644 --- a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/IngeniBridge.IBDatabaseParser.csproj.CoreCompileInputs.cache +++ b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/IngeniBridge.IBDatabaseParser.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -98fc6145b84aefbfcc25ccc5a0d3057d8ee38472 +2a1a5d4f9526c4a7f6b765b3be122b345d43a44d diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/IngeniBridge.IBDatabaseParser.csproj.FileListAbsolute.txt b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/IngeniBridge.IBDatabaseParser.csproj.FileListAbsolute.txt index 93f9e39..da79ab5 100644 --- a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/IngeniBridge.IBDatabaseParser.csproj.FileListAbsolute.txt +++ b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/IngeniBridge.IBDatabaseParser.csproj.FileListAbsolute.txt @@ -29,11 +29,9 @@ C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDa C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Debug\CommandLine.xml C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Debug\EPPlus.xml C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Debug\IngeniBridge.Core.xml -C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Debug\JT.TechCases.Threading.xml C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Debug\log4net.xml C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Debug\Newtonsoft.Json.xml C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Debug\System.ValueTuple.xml -C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\obj\Debug\IngeniBridge.IBDatabaseParser.csprojAssemblyReference.cache C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\obj\Debug\IngeniBridge.IBDatabaseParser.csproj.CoreCompileInputs.cache C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\obj\Debug\IngeniBridge.IBDatabaseParser.csproj.CopyComplete C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\obj\Debug\IngeniBridge.IBDatabaseParser.exe diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/IngeniBridge.IBDatabaseParser.csprojAssemblyReference.cache b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/IngeniBridge.IBDatabaseParser.csprojAssemblyReference.cache deleted file mode 100644 index 25d5400..0000000 Binary files a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/IngeniBridge.IBDatabaseParser.csprojAssemblyReference.cache and /dev/null differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/IngeniBridge.IBDatabaseParser.exe b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/IngeniBridge.IBDatabaseParser.exe index 4edafb2..636df6e 100644 Binary files a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/IngeniBridge.IBDatabaseParser.exe and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/IngeniBridge.IBDatabaseParser.exe differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/IngeniBridge.IBDatabaseParser.pdb b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/IngeniBridge.IBDatabaseParser.pdb index cd76685..f97df1b 100644 Binary files a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/IngeniBridge.IBDatabaseParser.pdb and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/IngeniBridge.IBDatabaseParser.pdb differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/net45/IngeniBridge.IBDatabaseParser.AssemblyInfo.cs b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/net45/IngeniBridge.IBDatabaseParser.AssemblyInfo.cs new file mode 100644 index 0000000..ea0865a --- /dev/null +++ b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/net45/IngeniBridge.IBDatabaseParser.AssemblyInfo.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// 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("DEAGITAL")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © DEAGITAL 2016")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("IngeniBridge.IBDatabaseParser")] +[assembly: System.Reflection.AssemblyTitleAttribute("IngeniBridge.IBDatabaseParser")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/net45/IngeniBridge.IBDatabaseParser.AssemblyInfoInputs.cache b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/net45/IngeniBridge.IBDatabaseParser.AssemblyInfoInputs.cache new file mode 100644 index 0000000..92e7b2a --- /dev/null +++ b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/net45/IngeniBridge.IBDatabaseParser.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +fd3bdcc809c0d15e684b3a3a6ad63c296035ff6b diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/net45/IngeniBridge.IBDatabaseParser.assets.cache b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/net45/IngeniBridge.IBDatabaseParser.assets.cache new file mode 100644 index 0000000..be5f1e2 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/net45/IngeniBridge.IBDatabaseParser.assets.cache differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/net45/IngeniBridge.IBDatabaseParser.csproj.CopyComplete b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/net45/IngeniBridge.IBDatabaseParser.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/net45/IngeniBridge.IBDatabaseParser.csproj.CoreCompileInputs.cache b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/net45/IngeniBridge.IBDatabaseParser.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..0c9c06e --- /dev/null +++ b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/net45/IngeniBridge.IBDatabaseParser.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +84ac6c9f2ecd2d24d21f6e73bbf1f67cf243e529 diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/net45/IngeniBridge.IBDatabaseParser.csproj.FileListAbsolute.txt b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/net45/IngeniBridge.IBDatabaseParser.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..274922d --- /dev/null +++ b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/net45/IngeniBridge.IBDatabaseParser.csproj.FileListAbsolute.txt @@ -0,0 +1,18 @@ +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\obj\Debug\net45\IngeniBridge.IBDatabaseParser.csproj.CoreCompileInputs.cache +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\obj\Debug\net45\IngeniBridge.IBDatabaseParser.AssemblyInfoInputs.cache +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\obj\Debug\net45\IngeniBridge.IBDatabaseParser.AssemblyInfo.cs +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Debug\net45\IngeniBridge.IBDatabaseParser.exe.config +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Debug\net45\IngeniBridge.IBDatabaseParser.exe +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Debug\net45\IngeniBridge.IBDatabaseParser.pdb +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Debug\net45\CommandLine.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Debug\net45\EPPlus.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Debug\net45\IngeniBridge.BuildUtils.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Debug\net45\IngeniBridge.Core.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Debug\net45\IngeniBridge.StorageAccessor.InMemory.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Debug\net45\JT.TechCases.Threading.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Debug\net45\log4net.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Debug\net45\Newtonsoft.Json.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Debug\net45\System.ValueTuple.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\obj\Debug\net45\IngeniBridge.IBDatabaseParser.csproj.CopyComplete +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\obj\Debug\net45\IngeniBridge.IBDatabaseParser.exe +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\obj\Debug\net45\IngeniBridge.IBDatabaseParser.pdb diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/net45/IngeniBridge.IBDatabaseParser.exe b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/net45/IngeniBridge.IBDatabaseParser.exe new file mode 100644 index 0000000..1c1f98b Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/net45/IngeniBridge.IBDatabaseParser.exe differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/net45/IngeniBridge.IBDatabaseParser.exe.withSupportedRuntime.config b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/net45/IngeniBridge.IBDatabaseParser.exe.withSupportedRuntime.config new file mode 100644 index 0000000..5035d4f --- /dev/null +++ b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/net45/IngeniBridge.IBDatabaseParser.exe.withSupportedRuntime.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/net45/IngeniBridge.IBDatabaseParser.pdb b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/net45/IngeniBridge.IBDatabaseParser.pdb new file mode 100644 index 0000000..b3c9eab Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/net45/IngeniBridge.IBDatabaseParser.pdb differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/net45/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/net45/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/net45/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/net45/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/net45/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Debug/net45/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/IngeniBridge.IBDatabaseParser.csproj.nuget.cache b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/IngeniBridge.IBDatabaseParser.csproj.nuget.cache new file mode 100644 index 0000000..af20ddc --- /dev/null +++ b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/IngeniBridge.IBDatabaseParser.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "I04C0daOM+ZD8RZRNaTcdj60nBh0+vMwtHad6s0B1VX1bPPNfyOTt6Ja8pZI98W5jtujhZM8UoOKAE/Kz19CQg==", + "success": true +} \ No newline at end of file diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/IngeniBridge.IBDatabaseParser.csproj.nuget.g.props b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/IngeniBridge.IBDatabaseParser.csproj.nuget.g.props new file mode 100644 index 0000000..c42d8a6 --- /dev/null +++ b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/IngeniBridge.IBDatabaseParser.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\obj\project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\joset\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 4.8.0 + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/IngeniBridge.IBDatabaseParser.csproj.nuget.g.targets b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/IngeniBridge.IBDatabaseParser.csproj.nuget.g.targets new file mode 100644 index 0000000..53cfaa1 --- /dev/null +++ b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/IngeniBridge.IBDatabaseParser.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache index b15167e..9b46421 100644 Binary files a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/IngeniBridge.IBDatabaseParser.csproj.CoreCompileInputs.cache b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/IngeniBridge.IBDatabaseParser.csproj.CoreCompileInputs.cache index f98f043..19e90e1 100644 --- a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/IngeniBridge.IBDatabaseParser.csproj.CoreCompileInputs.cache +++ b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/IngeniBridge.IBDatabaseParser.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -818ff818a9dc572895752f68eeca62d5de093d56 +2a1a5d4f9526c4a7f6b765b3be122b345d43a44d diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/IngeniBridge.IBDatabaseParser.csproj.FileListAbsolute.txt b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/IngeniBridge.IBDatabaseParser.csproj.FileListAbsolute.txt index 135cc52..3523911 100644 --- a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/IngeniBridge.IBDatabaseParser.csproj.FileListAbsolute.txt +++ b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/IngeniBridge.IBDatabaseParser.csproj.FileListAbsolute.txt @@ -33,9 +33,7 @@ C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDa C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Release\CommandLine.xml C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Release\EPPlus.xml C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Release\IngeniBridge.Core.xml -C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Release\JT.TechCases.Threading.xml C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Release\log4net.xml C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Release\Newtonsoft.Json.xml C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Release\System.ValueTuple.xml C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\obj\Release\IngeniBridge.IBDatabaseParser.csproj.CopyComplete -C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\obj\Release\IngeniBridge.IBDatabaseParser.csprojAssemblyReference.cache diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/IngeniBridge.IBDatabaseParser.csprojAssemblyReference.cache b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/IngeniBridge.IBDatabaseParser.csprojAssemblyReference.cache deleted file mode 100644 index a98e7db..0000000 Binary files a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/IngeniBridge.IBDatabaseParser.csprojAssemblyReference.cache and /dev/null differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/IngeniBridge.IBDatabaseParser.exe b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/IngeniBridge.IBDatabaseParser.exe index 863774b..3a99887 100644 Binary files a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/IngeniBridge.IBDatabaseParser.exe and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/IngeniBridge.IBDatabaseParser.exe differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/IngeniBridge.IBDatabaseParser.pdb b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/IngeniBridge.IBDatabaseParser.pdb index 89701d0..e34eeda 100644 Binary files a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/IngeniBridge.IBDatabaseParser.pdb and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/IngeniBridge.IBDatabaseParser.pdb differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/net45/IngeniBridge.IBDatabaseParser.AssemblyInfo.cs b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/net45/IngeniBridge.IBDatabaseParser.AssemblyInfo.cs new file mode 100644 index 0000000..f6565df --- /dev/null +++ b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/net45/IngeniBridge.IBDatabaseParser.AssemblyInfo.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// 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("DEAGITAL")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © DEAGITAL 2016")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("IngeniBridge.IBDatabaseParser")] +[assembly: System.Reflection.AssemblyTitleAttribute("IngeniBridge.IBDatabaseParser")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/net45/IngeniBridge.IBDatabaseParser.AssemblyInfoInputs.cache b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/net45/IngeniBridge.IBDatabaseParser.AssemblyInfoInputs.cache new file mode 100644 index 0000000..86b526e --- /dev/null +++ b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/net45/IngeniBridge.IBDatabaseParser.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +0afdd4e19a1f4c18f0e9b0112f5a875ef7e610c7 diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/net45/IngeniBridge.IBDatabaseParser.assets.cache b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/net45/IngeniBridge.IBDatabaseParser.assets.cache new file mode 100644 index 0000000..898ba3d Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/net45/IngeniBridge.IBDatabaseParser.assets.cache differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/net45/IngeniBridge.IBDatabaseParser.csproj.CopyComplete b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/net45/IngeniBridge.IBDatabaseParser.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/net45/IngeniBridge.IBDatabaseParser.csproj.CoreCompileInputs.cache b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/net45/IngeniBridge.IBDatabaseParser.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..0c9c06e --- /dev/null +++ b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/net45/IngeniBridge.IBDatabaseParser.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +84ac6c9f2ecd2d24d21f6e73bbf1f67cf243e529 diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/net45/IngeniBridge.IBDatabaseParser.csproj.FileListAbsolute.txt b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/net45/IngeniBridge.IBDatabaseParser.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..24d3e57 --- /dev/null +++ b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/net45/IngeniBridge.IBDatabaseParser.csproj.FileListAbsolute.txt @@ -0,0 +1,18 @@ +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\obj\Release\net45\IngeniBridge.IBDatabaseParser.csproj.CoreCompileInputs.cache +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\obj\Release\net45\IngeniBridge.IBDatabaseParser.AssemblyInfoInputs.cache +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\obj\Release\net45\IngeniBridge.IBDatabaseParser.AssemblyInfo.cs +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Release\net45\IngeniBridge.IBDatabaseParser.exe.config +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Release\net45\IngeniBridge.IBDatabaseParser.exe +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Release\net45\IngeniBridge.IBDatabaseParser.pdb +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Release\net45\CommandLine.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Release\net45\EPPlus.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Release\net45\IngeniBridge.BuildUtils.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Release\net45\IngeniBridge.Core.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Release\net45\IngeniBridge.StorageAccessor.InMemory.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Release\net45\JT.TechCases.Threading.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Release\net45\log4net.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Release\net45\Newtonsoft.Json.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\bin\Release\net45\System.ValueTuple.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\obj\Release\net45\IngeniBridge.IBDatabaseParser.csproj.CopyComplete +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\obj\Release\net45\IngeniBridge.IBDatabaseParser.exe +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Programs\IngeniBridge.IBDatabaseParser\obj\Release\net45\IngeniBridge.IBDatabaseParser.pdb diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/net45/IngeniBridge.IBDatabaseParser.exe b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/net45/IngeniBridge.IBDatabaseParser.exe new file mode 100644 index 0000000..6739c15 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/net45/IngeniBridge.IBDatabaseParser.exe differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/net45/IngeniBridge.IBDatabaseParser.exe.withSupportedRuntime.config b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/net45/IngeniBridge.IBDatabaseParser.exe.withSupportedRuntime.config new file mode 100644 index 0000000..5035d4f --- /dev/null +++ b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/net45/IngeniBridge.IBDatabaseParser.exe.withSupportedRuntime.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/net45/IngeniBridge.IBDatabaseParser.pdb b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/net45/IngeniBridge.IBDatabaseParser.pdb new file mode 100644 index 0000000..5f091d9 Binary files /dev/null and b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/net45/IngeniBridge.IBDatabaseParser.pdb differ diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/net45/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/net45/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/net45/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/net45/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/net45/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/Release/net45/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/project.assets.json b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/project.assets.json new file mode 100644 index 0000000..7ec0360 --- /dev/null +++ b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/obj/project.assets.json @@ -0,0 +1,684 @@ +{ + "version": 3, + "targets": { + ".NETFramework,Version=v4.5": { + "CommandLineParser/2.3.0": { + "type": "package", + "compile": { + "lib/net45/CommandLine.dll": {} + }, + "runtime": { + "lib/net45/CommandLine.dll": {} + } + }, + "EPPlus/4.5.2.1": { + "type": "package", + "frameworkAssemblies": [ + "PresentationCore", + "System", + "System.Core", + "System.Data", + "System.Drawing", + "System.Security", + "System.Xml", + "System.configuration" + ], + "compile": { + "lib/net40/EPPlus.dll": {} + }, + "runtime": { + "lib/net40/EPPlus.dll": {} + } + }, + "IngeniBridge.BuildUtils/1.0.6": { + "type": "package", + "dependencies": { + "EPPlus": "4.5.2.1", + "IngeniBridge.Core": "1.0.37", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/net45/IngeniBridge.BuildUtils.dll": {} + }, + "runtime": { + "lib/net45/IngeniBridge.BuildUtils.dll": {} + } + }, + "IngeniBridge.Core/1.0.37": { + "type": "package", + "dependencies": { + "JT.TechCases.Threading": "1.0.12", + "Newtonsoft.Json": "11.0.2", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/net45/IngeniBridge.Core.dll": {} + }, + "runtime": { + "lib/net45/IngeniBridge.Core.dll": {} + } + }, + "IngeniBridge.StorageAccessor.InMemory/1.0.8": { + "type": "package", + "dependencies": { + "IngeniBridge.Core": "1.0.37", + "JT.TechCases.Threading": "1.0.12", + "Microsoft.CSharp": "4.5.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/net45/IngeniBridge.StorageAccessor.InMemory.dll": {} + }, + "runtime": { + "lib/net45/IngeniBridge.StorageAccessor.InMemory.dll": {} + } + }, + "JT.TechCases.Threading/1.0.12": { + "type": "package", + "frameworkAssemblies": [ + "PresentationCore", + "PresentationFramework", + "System.Windows.Forms", + "WindowsBase" + ], + "compile": { + "lib/net45/JT.TechCases.Threading.dll": {} + }, + "runtime": { + "lib/net45/JT.TechCases.Threading.dll": {} + } + }, + "log4net/2.0.8": { + "type": "package", + "compile": { + "lib/net45-full/log4net.dll": {} + }, + "runtime": { + "lib/net45-full/log4net.dll": {} + } + }, + "Microsoft.CSharp/4.5.0": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp" + ], + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "Newtonsoft.Json/11.0.2": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "frameworkAssemblies": [ + "System.Runtime.Serialization" + ], + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.ValueTuple/4.5.0": { + "type": "package", + "compile": { + "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + } + }, + ".NETFramework,Version=v4.5/win7-x86": { + "CommandLineParser/2.3.0": { + "type": "package", + "compile": { + "lib/net45/CommandLine.dll": {} + }, + "runtime": { + "lib/net45/CommandLine.dll": {} + } + }, + "EPPlus/4.5.2.1": { + "type": "package", + "frameworkAssemblies": [ + "PresentationCore", + "System", + "System.Core", + "System.Data", + "System.Drawing", + "System.Security", + "System.Xml", + "System.configuration" + ], + "compile": { + "lib/net40/EPPlus.dll": {} + }, + "runtime": { + "lib/net40/EPPlus.dll": {} + } + }, + "IngeniBridge.BuildUtils/1.0.6": { + "type": "package", + "dependencies": { + "EPPlus": "4.5.2.1", + "IngeniBridge.Core": "1.0.37", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/net45/IngeniBridge.BuildUtils.dll": {} + }, + "runtime": { + "lib/net45/IngeniBridge.BuildUtils.dll": {} + } + }, + "IngeniBridge.Core/1.0.37": { + "type": "package", + "dependencies": { + "JT.TechCases.Threading": "1.0.12", + "Newtonsoft.Json": "11.0.2", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/net45/IngeniBridge.Core.dll": {} + }, + "runtime": { + "lib/net45/IngeniBridge.Core.dll": {} + } + }, + "IngeniBridge.StorageAccessor.InMemory/1.0.8": { + "type": "package", + "dependencies": { + "IngeniBridge.Core": "1.0.37", + "JT.TechCases.Threading": "1.0.12", + "Microsoft.CSharp": "4.5.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/net45/IngeniBridge.StorageAccessor.InMemory.dll": {} + }, + "runtime": { + "lib/net45/IngeniBridge.StorageAccessor.InMemory.dll": {} + } + }, + "JT.TechCases.Threading/1.0.12": { + "type": "package", + "frameworkAssemblies": [ + "PresentationCore", + "PresentationFramework", + "System.Windows.Forms", + "WindowsBase" + ], + "compile": { + "lib/net45/JT.TechCases.Threading.dll": {} + }, + "runtime": { + "lib/net45/JT.TechCases.Threading.dll": {} + } + }, + "log4net/2.0.8": { + "type": "package", + "compile": { + "lib/net45-full/log4net.dll": {} + }, + "runtime": { + "lib/net45-full/log4net.dll": {} + } + }, + "Microsoft.CSharp/4.5.0": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp" + ], + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "Newtonsoft.Json/11.0.2": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "frameworkAssemblies": [ + "System.Runtime.Serialization" + ], + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.ValueTuple/4.5.0": { + "type": "package", + "compile": { + "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + } + } + }, + "libraries": { + "CommandLineParser/2.3.0": { + "sha512": "reRoh1qxIxsipV2FPBBkp5zFQZjJ0QKZCODLg6nSGBVJzKMBpLAjZP1QkD8f526RfN4+E1zJR/WHOckSRvllOg==", + "type": "package", + "path": "commandlineparser/2.3.0", + "files": [ + ".signature.p7s", + "commandlineparser.2.3.0.nupkg.sha512", + "commandlineparser.nuspec", + "lib/net40/CommandLine.XML", + "lib/net40/CommandLine.dll", + "lib/net45/CommandLine.XML", + "lib/net45/CommandLine.dll", + "lib/netstandard1.5/CommandLine.dll", + "lib/netstandard1.5/CommandLine.xml", + "readme.md" + ] + }, + "EPPlus/4.5.2.1": { + "sha512": "/OzYn/n982Ozu+ARWISjn9REIb3PA5KN8qPfp3JKOoSnBezN3loGCQ2k0nLNL5K8+b+3boinsNiRbm5ovEfeog==", + "type": "package", + "path": "epplus/4.5.2.1", + "files": [ + "epplus.4.5.2.1.nupkg.sha512", + "epplus.nuspec", + "lib/net35/EPPlus.dll", + "lib/net35/EPPlus.xml", + "lib/net40/EPPlus.dll", + "lib/net40/EPPlus.xml", + "lib/netstandard2.0/EPPlus.dll", + "lib/netstandard2.0/EPPlus.xml", + "readme.txt" + ] + }, + "IngeniBridge.BuildUtils/1.0.6": { + "sha512": "S0Cz50zdX0mLF7S6CL9JCKJFa2+XAonrZcKOvvzlXx1KAoLiOLZ1y8mi1vYXi4vnQGIwOTNn9HJlAhIH9xkI/g==", + "type": "package", + "path": "ingenibridge.buildutils/1.0.6", + "files": [ + ".signature.p7s", + "ingenibridge.buildutils.1.0.6.nupkg.sha512", + "ingenibridge.buildutils.nuspec", + "lib/net45/IngeniBridge.BuildUtils.dll", + "lib/netstandard2.0/IngeniBridge.BuildUtils.dll" + ] + }, + "IngeniBridge.Core/1.0.37": { + "sha512": "V5zIao9IGH9F10UDOMN1oubR0uubmDxY2z50BtiCXUj61lOMiGnpYRrLqeUKcjNQesL9Repvwi7YW1bQ4bMtNg==", + "type": "package", + "path": "ingenibridge.core/1.0.37", + "files": [ + ".signature.p7s", + "ingenibridge.core.1.0.37.nupkg.sha512", + "ingenibridge.core.nuspec", + "lib/net45/IngeniBridge.Core.dll", + "lib/netstandard2.0/IngeniBridge.Core.dll" + ] + }, + "IngeniBridge.StorageAccessor.InMemory/1.0.8": { + "sha512": "qF7zmqcVEbpUhJdtdJ0JsES4L0o1ConlepPnd6f89Ygu3gKzV5ekmAKdOkdxeNk7ZGbf+Q8vCI/BHzy3WRPM9g==", + "type": "package", + "path": "ingenibridge.storageaccessor.inmemory/1.0.8", + "files": [ + ".signature.p7s", + "ingenibridge.storageaccessor.inmemory.1.0.8.nupkg.sha512", + "ingenibridge.storageaccessor.inmemory.nuspec", + "lib/net45/IngeniBridge.StorageAccessor.InMemory.dll", + "lib/netstandard2.0/IngeniBridge.StorageAccessor.InMemory.dll" + ] + }, + "JT.TechCases.Threading/1.0.12": { + "sha512": "P5/D3riDQc/cqnIMekNh7f1RVscDTq8wVI1dXQh9453BmF+7fTnNSzT3HiKcrbcO7DDugNPS9CUJFVz9xrE0cw==", + "type": "package", + "path": "jt.techcases.threading/1.0.12", + "files": [ + ".signature.p7s", + "jt.techcases.threading.1.0.12.nupkg.sha512", + "jt.techcases.threading.nuspec", + "lib/net40/JT.TechCases.Threading.dll", + "lib/net45/JT.TechCases.Threading.dll", + "lib/netstandard2.0/JT.TechCases.Threading.dll" + ] + }, + "log4net/2.0.8": { + "sha512": "N41MQGHZImiCfn0cUuSBjZxrcNfIQCuCgQP0rpgB3J/NWponEh3lc1LxJEuIsPAR9Oc1jVvfkNNFCY1C5hf9LA==", + "type": "package", + "path": "log4net/2.0.8", + "files": [ + "lib/net20-full/log4net.dll", + "lib/net20-full/log4net.xml", + "lib/net35-client/log4net.dll", + "lib/net35-client/log4net.xml", + "lib/net35-full/log4net.dll", + "lib/net35-full/log4net.xml", + "lib/net40-client/log4net.dll", + "lib/net40-client/log4net.xml", + "lib/net40-full/log4net.dll", + "lib/net40-full/log4net.xml", + "lib/net45-full/log4net.dll", + "lib/net45-full/log4net.xml", + "lib/netstandard1.3/log4net.dll", + "log4net.2.0.8.nupkg.sha512", + "log4net.nuspec" + ] + }, + "Microsoft.CSharp/4.5.0": { + "sha512": "EGoBmf3Na2ppbhPePDE9PlX81r1HuOZH5twBrq7couJZiPTjUnD3648balerQJO6EJ8Sj+43+XuRwQ7r+3tE3w==", + "type": "package", + "path": "microsoft.csharp/4.5.0", + "files": [ + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.5.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Newtonsoft.Json/11.0.2": { + "sha512": "IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==", + "type": "package", + "path": "newtonsoft.json/11.0.2", + "files": [ + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml", + "newtonsoft.json.11.0.2.nupkg.sha512", + "newtonsoft.json.nuspec" + ] + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==", + "type": "package", + "path": "system.runtime.serialization.primitives/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Runtime.Serialization.Primitives.dll", + "lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "system.runtime.serialization.primitives.4.3.0.nupkg.sha512", + "system.runtime.serialization.primitives.nuspec" + ] + }, + "System.ValueTuple/4.5.0": { + "sha512": "xZtSZNEHGa+tGsKuP4sh257vxJ/yemShz4EusmomkynMzuEDDjVaErBNewpzEF6swUgbcrSQAX3ELsEp1zCOwA==", + "type": "package", + "path": "system.valuetuple/4.5.0", + "files": [ + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.ValueTuple.dll", + "lib/net461/System.ValueTuple.xml", + "lib/net47/System.ValueTuple.dll", + "lib/net47/System.ValueTuple.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.ValueTuple.dll", + "lib/netstandard1.0/System.ValueTuple.xml", + "lib/netstandard2.0/_._", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.ValueTuple.dll", + "ref/net47/System.ValueTuple.dll", + "ref/netcoreapp2.0/_._", + "ref/netstandard2.0/_._", + "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.valuetuple.4.5.0.nupkg.sha512", + "system.valuetuple.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + } + }, + "projectFileDependencyGroups": { + ".NETFramework,Version=v4.5": [ + "CommandLineParser >= 2.3.0", + "IngeniBridge.BuildUtils >= 1.0.6", + "IngeniBridge.Core >= 1.0.37", + "IngeniBridge.StorageAccessor.InMemory >= 1.0.8", + "JT.TechCases.Threading >= 1.0.12", + "log4net >= 2.0.8" + ] + }, + "packageFolders": { + "C:\\Users\\joset\\.nuget\\packages\\": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\joset\\repos_github\\IngeniBridge\\IngeniBridge.Programs\\IngeniBridge.IBDatabaseParser\\IngeniBridge.IBDatabaseParser.csproj", + "projectName": "IngeniBridge.IBDatabaseParser", + "projectPath": "C:\\Users\\joset\\repos_github\\IngeniBridge\\IngeniBridge.Programs\\IngeniBridge.IBDatabaseParser\\IngeniBridge.IBDatabaseParser.csproj", + "packagesPath": "C:\\Users\\joset\\.nuget\\packages\\", + "outputPath": "C:\\Users\\joset\\repos_github\\IngeniBridge\\IngeniBridge.Programs\\IngeniBridge.IBDatabaseParser\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\joset\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net45" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net45": { + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net45": { + "dependencies": { + "CommandLineParser": { + "target": "Package", + "version": "[2.3.0, )" + }, + "IngeniBridge.BuildUtils": { + "target": "Package", + "version": "[1.0.6, )" + }, + "IngeniBridge.Core": { + "target": "Package", + "version": "[1.0.37, )" + }, + "IngeniBridge.StorageAccessor.InMemory": { + "target": "Package", + "version": "[1.0.8, )" + }, + "JT.TechCases.Threading": { + "target": "Package", + "version": "[1.0.12, )" + }, + "log4net": { + "target": "Package", + "version": "[2.0.8, )" + } + } + } + }, + "runtimes": { + "win7-x86": { + "#import": [] + } + } + } +} \ No newline at end of file diff --git a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/packages.config b/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/packages.config deleted file mode 100644 index 3be3398..0000000 --- a/IngeniBridge.Programs/IngeniBridge.IBDatabaseParser/packages.config +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/IngeniBridge.Programs/packages/JT.TechCases.Threading.1.0.11/JT.TechCases.Threading.1.0.11.nupkg b/IngeniBridge.Programs/packages/JT.TechCases.Threading.1.0.11/JT.TechCases.Threading.1.0.11.nupkg deleted file mode 100644 index c479cd0..0000000 Binary files a/IngeniBridge.Programs/packages/JT.TechCases.Threading.1.0.11/JT.TechCases.Threading.1.0.11.nupkg and /dev/null differ diff --git a/IngeniBridge.Programs/packages/JT.TechCases.Threading.1.0.11/lib/net45/JT.TechCases.Threading.XML b/IngeniBridge.Programs/packages/JT.TechCases.Threading.1.0.11/lib/net45/JT.TechCases.Threading.XML deleted file mode 100644 index de092d6..0000000 --- a/IngeniBridge.Programs/packages/JT.TechCases.Threading.1.0.11/lib/net45/JT.TechCases.Threading.XML +++ /dev/null @@ -1,788 +0,0 @@ - - - - JT.TechCases.Threading - - - - - This class is the base for all exceptions. It is important so it can be treated by the global handler. - - - - - Constructor. - - Message - - - - Constructor. - - Message - Inner exception - - - - Thread DoWork method cannot be null. - - - - - Constructor. - - - - - Error th creating an Thread. - - - - - Constructor. - - Message - - - - Error during execution of an Thread. - - - - - Constructor. - - Inner exception - - - - Error th calling Thread progress notification function. - - - - - Constructor. - - Inner exception - - - - Constructor. - - Message - Inner exception - - - - Error th calling Thread progress notification function. - - - - - Constructor. - - Inner exception - - - - Thread title cannot be null. - - - - - Constructor. - - - - - Thread pool title cannot be null. - - - - - Constructor. - - - - - Must call this method outside the thread. - - - - - Constructor. - - - - - Must call this method inside the thread. - - - - - Constructor. - - - - - Thread cannot be recycled. - - - - - Constructor. - - - - - Semaphore cannot be released. - - - - - Constructor. - - - - - Thread DoWork method cannot be null. - - - - - Constructor. - - - - - Abort method is obsolete. - - - - - Constructor. - - - - - Cannot call this method while thread running. - - - - - Constructor. - - - - - Cannot recycle thread pool after cancellation was requested - - - - - Constructor. - - - - - A strongly-typed resource class, for looking up localized strings, etc. - - - - - Returns the cached ResourceManager instance used by this class. - - - - - Overrides the current thread's CurrentUICulture property for all - resource lookups using this strongly typed resource class. - - - - - This class implement range splitting service - - - - - This function returns subranges from a whole range - - Lower bound - Higher bound - Number of sub ranges to be returned - User Data that wiil be rendered in each calculated SubRange - - - - - Callback for the LaunchSplitedTasks function, process the iteration - - The SubRange split being processed - the index withn the spitted task iteration - - - - Callback for the LaunchSplitedTasks function, initialize UserData into SubRange structure - - The SubRange structure where to set UserData data - - - - This method drives a splitted task for each iteration in callback - - The lower bound of the range (included) - The higher bound of the range (excluded) - The number of parallel iterations (driven by a dedicated pool) - Process callback - Init UserData callback - - - - This class contains a subrange - - - - - Lower bound - - - - - Higher bound - - - - - User Data that was passed at first call - - - - - The same as System.Threading class but without timeouts (wich is semantically nonsense) - - - - - Wait for entering a multiple read operation - - - - - release read operation - - - - - Wait for entering a single write operation - - - - - release write operation - - - - - displays object - - - - - - This class implements a monitorable semephore - - - - Constructor - Max value of the semaphore - - - Acquires the semaphoer - - - Releases the semaphore - - - Wait for the semaphore to come back down to 0 - - - - This property returns the actual count of the semaphore - - - - - displays object - - - - - - Callback function when semaphore is reset - - - - - Event to subscribe to notifications. - - - - - This class encapsulate a thread in the ADF framework. - - - - - Priority of the thread. - - - - - Maps to normal state. - - - - - Maps to lowest state. - - - - - The maximum amount of seconds an application must call CancelationPending property - - - - - Title of the thread. - - - - - Indicates wether cancellation has been requested, this is monitored from outside the thread, - to check the status from within the thread, call source.CheckStatus () - - true or false - - - - Indicates if the thread entered a sleep state - - true or false - - - - Current progression percentage - - The value of progress - - - - Current progression description - - - - - Indicates wether the thread is started - - - - - Thread priority. - - - - - This property erturns the owner pool - - - - - This property returns user data - - - - - This property indicates if the thread is running a long treatment - - - - - This property is set after the thread completed with an exception - - - - - This is an override because sometimes it may return the same key ... - - - - - - Starts the thread as STA by default - - - - - Starts the thread. - - the apartment state - - - - Starts later the thread as STA by default - - - - - Starts the thread but later. - - the apartment state - - - - This method reports thread progression. - - Percent progression - Description of the current step in progression - - - - Requests cancellation for the thread. - - - - - Indicates wether the thread is not responding. - - - - - - Callback function of the thread function - - The igniting Thread - - - - Event to subscribe to notifications. - - - - - Callback function of the thread progression - - The igniting Thread - Percent of progression - Description of the progression - - - - Event to subscribe to notifications. - - - - - Callback function of thread termination - - - - - - Event to subscribe to notifications. - - - - - Callback to the exception handler in the thread execution. - - The igniting Thread - The exception - - - - Event to subscribe to notifications. - - - - - Callback to notify the thread cancellation. - - The igniting Thread - - - - Event to subscribe to notifications. - - - - - This method calls all the delegates attached to an event - - the event - the event parameters - - - - This method calls all the delegates attached to an event - - the event - the event parameters - wait or not for the completion - - - - This method calls one delegate and checks if the origin is a winform - - the delegate - the delegate parameters - wait or not for the winform to return - the object returned from the delegate - - - - Abort must not be called - - - - - This method waits for the thread to finish - - - - - This method waits for the thread to finish - - The milliseconds timeout. - - - - This property indicates if the thread is suspended - - - - - Suspends this instance, must be called from outside the thread. - - - - - Resumes this instance. - - - - - The status of the current thread - - - - - The thread was suspended and was resumed - - - - - Cancellation has been requested, the thread must return execution immediatly - - - - - The thread is running normally - - - - - The thread is in a sleep instruction - - - - - This method returns the status of the thread, note that this method will handle the suspend mode - and must be called from within the thread - - The actual status - - - - This method resets the current sleep, if any - - - - - This method enters the thread into sleep mode, but will be automatically cancelled when calling RequestCancellation, - note that it must be called from within the thread - - - - - - Indicates wether the thread run and terminated at least once - - - - - This method lets the developer set the exception from within the DoWork body - so it is possible to gest it the termination - - the actual exception - - - - Returns the execution time spent by the thread (cannot be called before termination) - - - - - This class maintains a list of threads and is the only access point to create new ADFThreads. - - - - - This property returns the threads inside the pool - - - - - This property returns user data - - - - - Title of the pool. - - - - - The ThreadPool size - - - - - Returns the execution time spent by the thread (cannot be called before termination) - - - - - This method creates a new pool - - size of the pool - user data held into the pool - the pool - - - - This method creates a new pool using a default and shared title, if the titled pool does exist then it is simply returned for resue - - title of the pool - size of the pool - user data held into the pool - the pool - - - - This method creates a new pool using a default and unique title, if the titled pool does exist then a new title is created with unique appended counter - - title of the pool - size of the pool - user data held into the pool - the pool - - - - This method removes a pool - - the pool to remove - - - - This method retrieve a pool by name - - the pool name - - - - - This property returns the allocated pools - - - - - This method creates a thread. - - The title of the thread - The DoWork callback function that implements thread execution, cannot be null - The EndWork callback function that notifies thread termination - The ProgressWork callback function that notifies thread progression - The cancel thread notification method - user data - The Thread - - - - This method creates a thread. - - The title of the thread - The DoWork callback function that implements thread execution, cannot be null - The EndWork callback function that notifies thread termination - The ProgressWork callback function that notifies thread progression - The Thread - - - - This method creates a thread. - - The title of the thread - The DoWork callback function that implements thread execution, cannot be null - The EndWork callback function that notifies thread termination - The ProgressWork callback function that notifies thread progression - user data - The Thread - - - - This methods requests cancellation on all running threads - - - - - This method will wait for all threads to complete - - - - - Wait for completion of all threads in this pool - - - - - Event to subscribe to exception notifications. - - - - - Event to subscribe to exception notifications. - - - - - This delegate will notify when the pool changes - - - - - Event to subscribe - - - - - This delegate will notify when the threads terminate - - the owner pool - - - - Event to subscribe - - - - diff --git a/IngeniBridge.Programs/packages/JT.TechCases.Threading.1.0.11/lib/net45/JT.TechCases.Threading.dll b/IngeniBridge.Programs/packages/JT.TechCases.Threading.1.0.11/lib/net45/JT.TechCases.Threading.dll deleted file mode 100644 index a5b38cc..0000000 Binary files a/IngeniBridge.Programs/packages/JT.TechCases.Threading.1.0.11/lib/net45/JT.TechCases.Threading.dll and /dev/null differ diff --git a/IngeniBridge.Programs/packages/JT.TechCases.Threading.1.0.11/.signature.p7s b/IngeniBridge.Programs/packages/JT.TechCases.Threading.1.0.12/.signature.p7s similarity index 74% rename from IngeniBridge.Programs/packages/JT.TechCases.Threading.1.0.11/.signature.p7s rename to IngeniBridge.Programs/packages/JT.TechCases.Threading.1.0.12/.signature.p7s index 347e27b..0af96ce 100644 Binary files a/IngeniBridge.Programs/packages/JT.TechCases.Threading.1.0.11/.signature.p7s and b/IngeniBridge.Programs/packages/JT.TechCases.Threading.1.0.12/.signature.p7s differ diff --git a/IngeniBridge.Programs/packages/JT.TechCases.Threading.1.0.12/JT.TechCases.Threading.1.0.12.nupkg b/IngeniBridge.Programs/packages/JT.TechCases.Threading.1.0.12/JT.TechCases.Threading.1.0.12.nupkg new file mode 100644 index 0000000..a8aa503 Binary files /dev/null and b/IngeniBridge.Programs/packages/JT.TechCases.Threading.1.0.12/JT.TechCases.Threading.1.0.12.nupkg differ diff --git a/IngeniBridge.Programs/packages/JT.TechCases.Threading.1.0.12/lib/net40/JT.TechCases.Threading.dll b/IngeniBridge.Programs/packages/JT.TechCases.Threading.1.0.12/lib/net40/JT.TechCases.Threading.dll new file mode 100644 index 0000000..66c2c6b Binary files /dev/null and b/IngeniBridge.Programs/packages/JT.TechCases.Threading.1.0.12/lib/net40/JT.TechCases.Threading.dll differ diff --git a/IngeniBridge.Programs/packages/JT.TechCases.Threading.1.0.12/lib/net45/JT.TechCases.Threading.dll b/IngeniBridge.Programs/packages/JT.TechCases.Threading.1.0.12/lib/net45/JT.TechCases.Threading.dll new file mode 100644 index 0000000..c448275 Binary files /dev/null and b/IngeniBridge.Programs/packages/JT.TechCases.Threading.1.0.12/lib/net45/JT.TechCases.Threading.dll differ diff --git a/IngeniBridge.Programs/packages/JT.TechCases.Threading.1.0.12/lib/netstandard2.0/JT.TechCases.Threading.dll b/IngeniBridge.Programs/packages/JT.TechCases.Threading.1.0.12/lib/netstandard2.0/JT.TechCases.Threading.dll new file mode 100644 index 0000000..a36bb26 Binary files /dev/null and b/IngeniBridge.Programs/packages/JT.TechCases.Threading.1.0.12/lib/netstandard2.0/JT.TechCases.Threading.dll differ diff --git a/IngeniBridge.Sample.MyCompany/.vs/IngeniBridge.Samples.MyCompany/DesignTimeBuild/.dtbcache b/IngeniBridge.Sample.MyCompany/.vs/IngeniBridge.Samples.MyCompany/DesignTimeBuild/.dtbcache index c0e315d..8fa3c65 100644 Binary files a/IngeniBridge.Sample.MyCompany/.vs/IngeniBridge.Samples.MyCompany/DesignTimeBuild/.dtbcache and b/IngeniBridge.Sample.MyCompany/.vs/IngeniBridge.Samples.MyCompany/DesignTimeBuild/.dtbcache differ diff --git a/IngeniBridge.Sample.MyCompany/.vs/IngeniBridge.Samples.MyCompany/v15/.suo b/IngeniBridge.Sample.MyCompany/.vs/IngeniBridge.Samples.MyCompany/v15/.suo index 1a42dd5..818930c 100644 Binary files a/IngeniBridge.Sample.MyCompany/.vs/IngeniBridge.Samples.MyCompany/v15/.suo and b/IngeniBridge.Sample.MyCompany/.vs/IngeniBridge.Samples.MyCompany/v15/.suo differ diff --git a/IngeniBridge.Sample.MyCompany/.vs/IngeniBridge.Samples.MyCompany/v15/Server/sqlite3/storage.ide-shm b/IngeniBridge.Sample.MyCompany/.vs/IngeniBridge.Samples.MyCompany/v15/Server/sqlite3/storage.ide-shm new file mode 100644 index 0000000..2d62ab9 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/.vs/IngeniBridge.Samples.MyCompany/v15/Server/sqlite3/storage.ide-shm differ diff --git a/IngeniBridge.Sample.MyCompany/.vs/IngeniBridge.Samples.MyCompany/v15/Server/sqlite3/storage.ide-wal b/IngeniBridge.Sample.MyCompany/.vs/IngeniBridge.Samples.MyCompany/v15/Server/sqlite3/storage.ide-wal new file mode 100644 index 0000000..06f6671 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/.vs/IngeniBridge.Samples.MyCompany/v15/Server/sqlite3/storage.ide-wal differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/IngeniBridge.Samples.MyCompany.csproj b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/IngeniBridge.Samples.MyCompany.csproj index 1bad9c2..abfe2f7 100644 --- a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/IngeniBridge.Samples.MyCompany.csproj +++ b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/IngeniBridge.Samples.MyCompany.csproj @@ -1,101 +1,44 @@ - - - + + - Debug - AnyCPU - {CBA24FBE-BF39-4F28-ABD1-A695477E97A2} + net45 + IngeniBridge.Samples.MyCompany + 1.0.0 + JTO Tec + Copyright © DEAGITAL 2016 + true + + DEAGITAL Exe - Properties - IngeniBridge.Samples.MyCompany - IngeniBridge.Samples.MyCompany - v4.6.1 - 512 - true - SAK - SAK - SAK - SAK - - - AnyCPU - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - x64 - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - ..\packages\EPPlus.4.5.2.1\lib\net40\EPPlus.dll - - - ..\packages\IngeniBridge.BuildUtils.1.0.5\lib\net461\IngeniBridge.BuildUtils.dll - - - ..\packages\IngeniBridge.Core.1.0.36\lib\net461\IngeniBridge.Core.dll - - - ..\packages\IngeniBridge.StorageAccessor.InMemory.1.0.6\lib\net461\IngeniBridge.StorageAccessor.InMemory.dll - - - ..\packages\JT.TechCases.Threading.1.0.11\lib\net45\JT.TechCases.Threading.dll - - - ..\packages\log4net.2.0.8\lib\net45-full\log4net.dll - True - - - ..\packages\Newtonsoft.Json.11.0.2\lib\net45\Newtonsoft.Json.dll - - - - - - - - - ..\packages\System.ValueTuple.4.5.0\lib\net461\System.ValueTuple.dll - - - - - - - + + + - - - + + + + - - + + + + + + + - - {43213853-c6f5-4cc4-b1c5-3fead2355024} - MyCompanyDataModel - + - - - \ No newline at end of file + + + NETCORE;NETSTANDARD;NETSTANDARD2_0 + + + + NET45;NETFULL + + + diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/MasterAssetMyCompany_2018_09_05.ibdb b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/MasterAssetMyCompany_2018_09_05.ibdb new file mode 100644 index 0000000..1eceeb3 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/MasterAssetMyCompany_2018_09_05.ibdb differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/Program.cs b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/Program.cs index 84a8acf..1eed403 100644 --- a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/Program.cs +++ b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/Program.cs @@ -16,6 +16,7 @@ using IngeniBridge.Core.Inventory; using log4net; using System.Diagnostics; +using log4net.Config; namespace IngeniBridge.Samples.MyCompany { @@ -27,7 +28,7 @@ static int Main ( string [ ] args ) int ret = 0; try { - log4net.Config.XmlConfigurator.Configure (); + XmlConfigurator.Configure ( LogManager.GetRepository ( Assembly.GetEntryAssembly () ), new FileInfo ( "log4net.config" ) ); FileVersionInfo fvi = FileVersionInfo.GetVersionInfo ( Assembly.GetEntryAssembly ().Location ); log.Info ( fvi.ProductName + " v" + fvi.FileVersion + " -- " + fvi.LegalCopyright ); log.Info ( "Starting => " + Assembly.GetEntryAssembly ().GetName ().Name + " v" + Assembly.GetEntryAssembly ().GetName ().Version ); diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/Properties/AssemblyInfo.cs b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/Properties/AssemblyInfo.cs deleted file mode 100644 index 85012f3..0000000 --- a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle ( "IngeniBridge.Samples.MyCompany" )] -[assembly: AssemblyDescription ( "" )] -[assembly: AssemblyConfiguration ( "" )] -[assembly: AssemblyCompany ( "" )] -[assembly: AssemblyProduct ( "IngeniBridge.Samples.MyCompany" )] -[assembly: AssemblyCopyright ( "Copyright © 2016" )] -[assembly: AssemblyTrademark ( "" )] -[assembly: AssemblyCulture ( "" )] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible ( false )] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid ( "cba24fbe-bf39-4f28-abd1-a695477e97a2" )] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion ( "1.0.0.0" )] -[assembly: AssemblyFileVersion ( "1.0.0.0" )] diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/IngeniBridge.Samples.MyCompany.1.0.0.nupkg b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/IngeniBridge.Samples.MyCompany.1.0.0.nupkg new file mode 100644 index 0000000..f25a258 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/IngeniBridge.Samples.MyCompany.1.0.0.nupkg differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/IngeniBridge.Samples.MyCompany.log b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/IngeniBridge.Samples.MyCompany.log index 8ed6eaf..694cfe1 100644 --- a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/IngeniBridge.Samples.MyCompany.log +++ b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/IngeniBridge.Samples.MyCompany.log @@ -206,3 +206,19 @@ 2018-08-25 06:38:25,880;[1];INFO ;IngeniBridge.Samples.MyCompany.Program;InfluenceZone => 2, nbvars => 0 2018-08-25 06:38:25,880;[1];INFO ;IngeniBridge.Samples.MyCompany.Program;nb total assets => 12 2018-08-25 06:38:25,880;[1];INFO ;IngeniBridge.Samples.MyCompany.Program;nb total datas => 11 +2018-09-05 21:51:08,086;[1];INFO ;IngeniBridge.Samples.MyCompany.Program;IngeniBridge.Samples.MyCompany v1.0.0.0 -- Copyright © 2016 +2018-09-05 21:51:08,098;[1];INFO ;IngeniBridge.Samples.MyCompany.Program;Starting => IngeniBridge.Samples.MyCompany v1.0.0.0 +2018-09-05 21:51:08,098;[1];INFO ;IngeniBridge.Samples.MyCompany.Program;Data Model => MyCompanyDataModel v1.0.8.11699 +2018-09-05 21:51:08,709;[1];INFO ;IngeniBridge.Samples.MyCompany.Program;TypeOfMeasure, nbentries => 5 +2018-09-05 21:51:08,709;[1];INFO ;IngeniBridge.Samples.MyCompany.Program;Sector, nbentries => 2 +2018-09-05 21:51:08,710;[1];INFO ;IngeniBridge.Samples.MyCompany.Program;City, nbentries => 2 +2018-09-05 21:51:08,711;[1];INFO ;IngeniBridge.Samples.MyCompany.Program;ProductionSite => 3, nbvars => 1 +2018-09-05 21:51:08,711;[1];INFO ;IngeniBridge.Samples.MyCompany.Program;GroupOfPumps => 1, nbvars => 1 +2018-09-05 21:51:08,711;[1];INFO ;IngeniBridge.Samples.MyCompany.Program;WaterPump => 2, nbvars => 2 +2018-09-05 21:51:08,711;[1];INFO ;IngeniBridge.Samples.MyCompany.Program;PressureSensor => 1, nbvars => 1 +2018-09-05 21:51:08,711;[1];INFO ;IngeniBridge.Samples.MyCompany.Program;ClorineInjector => 1, nbvars => 4 +2018-09-05 21:51:08,711;[1];INFO ;IngeniBridge.Samples.MyCompany.Program;MultiFunctionSensor => 1, nbvars => 1 +2018-09-05 21:51:08,712;[1];INFO ;IngeniBridge.Samples.MyCompany.Program;WaterSwitcher => 1, nbvars => 1 +2018-09-05 21:51:08,712;[1];INFO ;IngeniBridge.Samples.MyCompany.Program;InfluenceZone => 2, nbvars => 0 +2018-09-05 21:51:08,712;[1];INFO ;IngeniBridge.Samples.MyCompany.Program;nb total assets => 12 +2018-09-05 21:51:08,712;[1];INFO ;IngeniBridge.Samples.MyCompany.Program;nb total datas => 11 diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/CommandLine.dll b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/CommandLine.dll new file mode 100644 index 0000000..618ed3d Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/CommandLine.dll differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/EPPlus.dll b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/EPPlus.dll new file mode 100644 index 0000000..84afe50 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/EPPlus.dll differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/IngeniBridge.BuildUtils.dll b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/IngeniBridge.BuildUtils.dll new file mode 100644 index 0000000..6587533 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/IngeniBridge.BuildUtils.dll differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/IngeniBridge.Core.dll b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/IngeniBridge.Core.dll new file mode 100644 index 0000000..178fbee Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/IngeniBridge.Core.dll differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/IngeniBridge.Samples.MyCompany.exe b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/IngeniBridge.Samples.MyCompany.exe new file mode 100644 index 0000000..214e20a Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/IngeniBridge.Samples.MyCompany.exe differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/IngeniBridge.Samples.MyCompany.exe.config b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/IngeniBridge.Samples.MyCompany.exe.config new file mode 100644 index 0000000..7e9d908 --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/IngeniBridge.Samples.MyCompany.exe.config @@ -0,0 +1,56 @@ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/IngeniBridge.Samples.MyCompany.pdb b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/IngeniBridge.Samples.MyCompany.pdb new file mode 100644 index 0000000..5e36ae5 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/IngeniBridge.Samples.MyCompany.pdb differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/IngeniBridge.StorageAccessor.InMemory.dll b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/IngeniBridge.StorageAccessor.InMemory.dll new file mode 100644 index 0000000..f680a88 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/IngeniBridge.StorageAccessor.InMemory.dll differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/JT.TechCases.Threading.dll b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/JT.TechCases.Threading.dll new file mode 100644 index 0000000..c448275 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/JT.TechCases.Threading.dll differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/MyCompanyDataModel.dll b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/MyCompanyDataModel.dll new file mode 100644 index 0000000..7b18f38 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/MyCompanyDataModel.dll differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/MyCompanyDataModel.pdb b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/MyCompanyDataModel.pdb new file mode 100644 index 0000000..60cefb1 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/MyCompanyDataModel.pdb differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/Newtonsoft.Json.dll b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/Newtonsoft.Json.dll new file mode 100644 index 0000000..8069902 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/Newtonsoft.Json.dll differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/System.ValueTuple.dll b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/System.ValueTuple.dll new file mode 100644 index 0000000..65fa9ee Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/System.ValueTuple.dll differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/log4net.dll b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/log4net.dll new file mode 100644 index 0000000..93fb476 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Debug/net45/log4net.dll differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/IngeniBridge.Samples.MyCompany.1.0.0.nupkg b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/IngeniBridge.Samples.MyCompany.1.0.0.nupkg new file mode 100644 index 0000000..5f1430d Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/IngeniBridge.Samples.MyCompany.1.0.0.nupkg differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/CommandLine.dll b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/CommandLine.dll new file mode 100644 index 0000000..618ed3d Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/CommandLine.dll differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/EPPlus.dll b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/EPPlus.dll new file mode 100644 index 0000000..84afe50 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/EPPlus.dll differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/IngeniBridge.BuildUtils.dll b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/IngeniBridge.BuildUtils.dll new file mode 100644 index 0000000..6587533 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/IngeniBridge.BuildUtils.dll differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/IngeniBridge.Core.dll b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/IngeniBridge.Core.dll new file mode 100644 index 0000000..178fbee Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/IngeniBridge.Core.dll differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/IngeniBridge.Samples.MyCompany.exe b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/IngeniBridge.Samples.MyCompany.exe new file mode 100644 index 0000000..aef34b8 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/IngeniBridge.Samples.MyCompany.exe differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/IngeniBridge.Samples.MyCompany.exe.config b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/IngeniBridge.Samples.MyCompany.exe.config new file mode 100644 index 0000000..7e9d908 --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/IngeniBridge.Samples.MyCompany.exe.config @@ -0,0 +1,56 @@ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/IngeniBridge.Samples.MyCompany.pdb b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/IngeniBridge.Samples.MyCompany.pdb new file mode 100644 index 0000000..0efc85c Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/IngeniBridge.Samples.MyCompany.pdb differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/IngeniBridge.StorageAccessor.InMemory.dll b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/IngeniBridge.StorageAccessor.InMemory.dll new file mode 100644 index 0000000..f680a88 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/IngeniBridge.StorageAccessor.InMemory.dll differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/JT.TechCases.Threading.dll b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/JT.TechCases.Threading.dll new file mode 100644 index 0000000..c448275 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/JT.TechCases.Threading.dll differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/MyCompanyDataModel.dll b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/MyCompanyDataModel.dll new file mode 100644 index 0000000..fca96bc Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/MyCompanyDataModel.dll differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/MyCompanyDataModel.pdb b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/MyCompanyDataModel.pdb new file mode 100644 index 0000000..0d38628 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/MyCompanyDataModel.pdb differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/Newtonsoft.Json.dll b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/Newtonsoft.Json.dll new file mode 100644 index 0000000..8069902 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/Newtonsoft.Json.dll differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/System.ValueTuple.dll b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/System.ValueTuple.dll new file mode 100644 index 0000000..65fa9ee Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/System.ValueTuple.dll differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/log4net.dll b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/log4net.dll new file mode 100644 index 0000000..93fb476 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/bin/Release/net45/log4net.dll differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/IngeniBridge.Samples.MyCompany.1.0.0.nuspec b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/IngeniBridge.Samples.MyCompany.1.0.0.nuspec new file mode 100644 index 0000000..facdeff --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/IngeniBridge.Samples.MyCompany.1.0.0.nuspec @@ -0,0 +1,27 @@ + + + + IngeniBridge.Samples.MyCompany + 1.0.0 + IngeniBridge.Samples.MyCompany + JTO Tec + JTO Tec + false + Package Description + Copyright © DEAGITAL 2016 + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/build.force b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/build.force new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/IngeniBridge.Samples.MyCompany.AssemblyInfo.cs b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/IngeniBridge.Samples.MyCompany.AssemblyInfo.cs new file mode 100644 index 0000000..a3d95ec --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/IngeniBridge.Samples.MyCompany.AssemblyInfo.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// 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("DEAGITAL")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © DEAGITAL 2016")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("IngeniBridge.Samples.MyCompany")] +[assembly: System.Reflection.AssemblyTitleAttribute("IngeniBridge.Samples.MyCompany")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/IngeniBridge.Samples.MyCompany.AssemblyInfoInputs.cache b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/IngeniBridge.Samples.MyCompany.AssemblyInfoInputs.cache new file mode 100644 index 0000000..d5ae915 --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/IngeniBridge.Samples.MyCompany.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +f3a8a90e3d07ec7d8e741f0d0990ad5d1c283989 diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/IngeniBridge.Samples.MyCompany.assets.cache b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/IngeniBridge.Samples.MyCompany.assets.cache new file mode 100644 index 0000000..0f4f0a6 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/IngeniBridge.Samples.MyCompany.assets.cache differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/IngeniBridge.Samples.MyCompany.csproj.CopyComplete b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/IngeniBridge.Samples.MyCompany.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/IngeniBridge.Samples.MyCompany.csproj.CoreCompileInputs.cache b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/IngeniBridge.Samples.MyCompany.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..92c79d8 --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/IngeniBridge.Samples.MyCompany.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +68c8b8a122bdd3269f8b743ae54fe67a0aeeea1e diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/IngeniBridge.Samples.MyCompany.csproj.FileListAbsolute.txt b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/IngeniBridge.Samples.MyCompany.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..8c1d7d3 --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/IngeniBridge.Samples.MyCompany.csproj.FileListAbsolute.txt @@ -0,0 +1,21 @@ +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\bin\Debug\net45\CommandLine.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\bin\Debug\net45\EPPlus.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\bin\Debug\net45\JT.TechCases.Threading.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\bin\Debug\net45\log4net.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\bin\Debug\net45\System.ValueTuple.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\bin\Debug\net45\MyCompanyDataModel.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\obj\Debug\net45\IngeniBridge.Samples.MyCompany.csprojAssemblyReference.cache +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\obj\Debug\net45\IngeniBridge.Samples.MyCompany.csproj.CoreCompileInputs.cache +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\obj\Debug\net45\IngeniBridge.Samples.MyCompany.AssemblyInfoInputs.cache +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\obj\Debug\net45\IngeniBridge.Samples.MyCompany.AssemblyInfo.cs +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\bin\Debug\net45\IngeniBridge.Core.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\bin\Debug\net45\Newtonsoft.Json.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\bin\Debug\net45\IngeniBridge.StorageAccessor.InMemory.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\bin\Debug\net45\IngeniBridge.Samples.MyCompany.exe.config +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\bin\Debug\net45\IngeniBridge.Samples.MyCompany.exe +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\bin\Debug\net45\IngeniBridge.Samples.MyCompany.pdb +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\bin\Debug\net45\IngeniBridge.BuildUtils.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\bin\Debug\net45\MyCompanyDataModel.pdb +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\obj\Debug\net45\IngeniBridge.Samples.MyCompany.csproj.CopyComplete +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\obj\Debug\net45\IngeniBridge.Samples.MyCompany.exe +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\obj\Debug\net45\IngeniBridge.Samples.MyCompany.pdb diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/IngeniBridge.Samples.MyCompany.csprojAssemblyReference.cache b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/IngeniBridge.Samples.MyCompany.csprojAssemblyReference.cache new file mode 100644 index 0000000..eeb675f Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/IngeniBridge.Samples.MyCompany.csprojAssemblyReference.cache differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/IngeniBridge.Samples.MyCompany.exe b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/IngeniBridge.Samples.MyCompany.exe new file mode 100644 index 0000000..214e20a Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/IngeniBridge.Samples.MyCompany.exe differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/IngeniBridge.Samples.MyCompany.exe.withSupportedRuntime.config b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/IngeniBridge.Samples.MyCompany.exe.withSupportedRuntime.config new file mode 100644 index 0000000..7e9d908 --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/IngeniBridge.Samples.MyCompany.exe.withSupportedRuntime.config @@ -0,0 +1,56 @@ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/IngeniBridge.Samples.MyCompany.pdb b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/IngeniBridge.Samples.MyCompany.pdb new file mode 100644 index 0000000..5e36ae5 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/IngeniBridge.Samples.MyCompany.pdb differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Debug/net45/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/IngeniBridge.Samples.MyCompany.csproj.nuget.cache b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/IngeniBridge.Samples.MyCompany.csproj.nuget.cache new file mode 100644 index 0000000..e448989 --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/IngeniBridge.Samples.MyCompany.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "6zLUpjMvwzpya1UzGj3aCgZFUla1/LrRtK2elP9KfU24DfndsQf9W7YhpDZP9Y0yYwkY3HJecUxREk24Uh/PzA==", + "success": true +} \ No newline at end of file diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/IngeniBridge.Samples.MyCompany.csproj.nuget.g.props b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/IngeniBridge.Samples.MyCompany.csproj.nuget.g.props new file mode 100644 index 0000000..755ea7b --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/IngeniBridge.Samples.MyCompany.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\obj\project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\joset\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 4.8.0 + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/IngeniBridge.Samples.MyCompany.csproj.nuget.g.targets b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/IngeniBridge.Samples.MyCompany.csproj.nuget.g.targets new file mode 100644 index 0000000..53cfaa1 --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/IngeniBridge.Samples.MyCompany.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/IngeniBridge.Samples.MyCompany.1.0.0.nuspec b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/IngeniBridge.Samples.MyCompany.1.0.0.nuspec new file mode 100644 index 0000000..a69170f --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/IngeniBridge.Samples.MyCompany.1.0.0.nuspec @@ -0,0 +1,27 @@ + + + + IngeniBridge.Samples.MyCompany + 1.0.0 + IngeniBridge.Samples.MyCompany + JTO Tec + JTO Tec + false + Package Description + Copyright © DEAGITAL 2016 + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/IngeniBridge.Samples.MyCompany.AssemblyInfo.cs b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/IngeniBridge.Samples.MyCompany.AssemblyInfo.cs new file mode 100644 index 0000000..36209c6 --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/IngeniBridge.Samples.MyCompany.AssemblyInfo.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// 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("DEAGITAL")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © DEAGITAL 2016")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("IngeniBridge.Samples.MyCompany")] +[assembly: System.Reflection.AssemblyTitleAttribute("IngeniBridge.Samples.MyCompany")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/IngeniBridge.Samples.MyCompany.AssemblyInfoInputs.cache b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/IngeniBridge.Samples.MyCompany.AssemblyInfoInputs.cache new file mode 100644 index 0000000..7b73bcf --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/IngeniBridge.Samples.MyCompany.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +05a4754666db15fcaba83046f5b731203f4321c2 diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/IngeniBridge.Samples.MyCompany.assets.cache b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/IngeniBridge.Samples.MyCompany.assets.cache new file mode 100644 index 0000000..0d5340e Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/IngeniBridge.Samples.MyCompany.assets.cache differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/IngeniBridge.Samples.MyCompany.csproj.CopyComplete b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/IngeniBridge.Samples.MyCompany.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/IngeniBridge.Samples.MyCompany.csproj.CoreCompileInputs.cache b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/IngeniBridge.Samples.MyCompany.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..f4efbe1 --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/IngeniBridge.Samples.MyCompany.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +f1ad3d5cbde597ba890ee351399b73988b8d3fb3 diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/IngeniBridge.Samples.MyCompany.csproj.FileListAbsolute.txt b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/IngeniBridge.Samples.MyCompany.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..4e1dd81 --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/IngeniBridge.Samples.MyCompany.csproj.FileListAbsolute.txt @@ -0,0 +1,21 @@ +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\bin\Release\net45\IngeniBridge.Samples.MyCompany.exe.config +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\bin\Release\net45\IngeniBridge.Samples.MyCompany.exe +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\bin\Release\net45\IngeniBridge.Samples.MyCompany.pdb +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\bin\Release\net45\CommandLine.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\bin\Release\net45\EPPlus.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\bin\Release\net45\IngeniBridge.BuildUtils.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\bin\Release\net45\IngeniBridge.Core.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\bin\Release\net45\IngeniBridge.StorageAccessor.InMemory.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\bin\Release\net45\JT.TechCases.Threading.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\bin\Release\net45\log4net.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\bin\Release\net45\Newtonsoft.Json.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\bin\Release\net45\System.ValueTuple.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\bin\Release\net45\MyCompanyDataModel.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\bin\Release\net45\MyCompanyDataModel.pdb +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\obj\Release\net45\IngeniBridge.Samples.MyCompany.csprojAssemblyReference.cache +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\obj\Release\net45\IngeniBridge.Samples.MyCompany.csproj.CoreCompileInputs.cache +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\obj\Release\net45\IngeniBridge.Samples.MyCompany.AssemblyInfoInputs.cache +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\obj\Release\net45\IngeniBridge.Samples.MyCompany.AssemblyInfo.cs +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\obj\Release\net45\IngeniBridge.Samples.MyCompany.csproj.CopyComplete +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\obj\Release\net45\IngeniBridge.Samples.MyCompany.exe +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\obj\Release\net45\IngeniBridge.Samples.MyCompany.pdb diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/IngeniBridge.Samples.MyCompany.csprojAssemblyReference.cache b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/IngeniBridge.Samples.MyCompany.csprojAssemblyReference.cache new file mode 100644 index 0000000..e9d19a7 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/IngeniBridge.Samples.MyCompany.csprojAssemblyReference.cache differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/IngeniBridge.Samples.MyCompany.exe b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/IngeniBridge.Samples.MyCompany.exe new file mode 100644 index 0000000..aef34b8 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/IngeniBridge.Samples.MyCompany.exe differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/IngeniBridge.Samples.MyCompany.exe.withSupportedRuntime.config b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/IngeniBridge.Samples.MyCompany.exe.withSupportedRuntime.config new file mode 100644 index 0000000..7e9d908 --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/IngeniBridge.Samples.MyCompany.exe.withSupportedRuntime.config @@ -0,0 +1,56 @@ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/IngeniBridge.Samples.MyCompany.pdb b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/IngeniBridge.Samples.MyCompany.pdb new file mode 100644 index 0000000..0efc85c Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/IngeniBridge.Samples.MyCompany.pdb differ diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/Release/net45/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/project.assets.json b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/project.assets.json new file mode 100644 index 0000000..02e6cde --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/obj/project.assets.json @@ -0,0 +1,725 @@ +{ + "version": 3, + "targets": { + ".NETFramework,Version=v4.5": { + "CommandLineParser/2.3.0": { + "type": "package", + "compile": { + "lib/net45/CommandLine.dll": {} + }, + "runtime": { + "lib/net45/CommandLine.dll": {} + } + }, + "EPPlus/4.5.2.1": { + "type": "package", + "frameworkAssemblies": [ + "PresentationCore", + "System", + "System.Core", + "System.Data", + "System.Drawing", + "System.Security", + "System.Xml", + "System.configuration" + ], + "compile": { + "lib/net40/EPPlus.dll": {} + }, + "runtime": { + "lib/net40/EPPlus.dll": {} + } + }, + "IngeniBridge.BuildUtils/1.0.6": { + "type": "package", + "dependencies": { + "EPPlus": "4.5.2.1", + "IngeniBridge.Core": "1.0.37", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/net45/IngeniBridge.BuildUtils.dll": {} + }, + "runtime": { + "lib/net45/IngeniBridge.BuildUtils.dll": {} + } + }, + "IngeniBridge.Core/1.0.37": { + "type": "package", + "dependencies": { + "JT.TechCases.Threading": "1.0.12", + "Newtonsoft.Json": "11.0.2", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/net45/IngeniBridge.Core.dll": {} + }, + "runtime": { + "lib/net45/IngeniBridge.Core.dll": {} + } + }, + "IngeniBridge.StorageAccessor.InMemory/1.0.8": { + "type": "package", + "dependencies": { + "IngeniBridge.Core": "1.0.37", + "JT.TechCases.Threading": "1.0.12", + "Microsoft.CSharp": "4.5.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/net45/IngeniBridge.StorageAccessor.InMemory.dll": {} + }, + "runtime": { + "lib/net45/IngeniBridge.StorageAccessor.InMemory.dll": {} + } + }, + "JT.TechCases.Threading/1.0.12": { + "type": "package", + "frameworkAssemblies": [ + "PresentationCore", + "PresentationFramework", + "System.Windows.Forms", + "WindowsBase" + ], + "compile": { + "lib/net45/JT.TechCases.Threading.dll": {} + }, + "runtime": { + "lib/net45/JT.TechCases.Threading.dll": {} + } + }, + "log4net/2.0.8": { + "type": "package", + "compile": { + "lib/net45-full/log4net.dll": {} + }, + "runtime": { + "lib/net45-full/log4net.dll": {} + } + }, + "Microsoft.CSharp/4.5.0": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp" + ], + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "Newtonsoft.Json/11.0.2": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "frameworkAssemblies": [ + "System.Runtime.Serialization" + ], + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.ValueTuple/4.5.0": { + "type": "package", + "compile": { + "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + }, + "MyCompanyDataModel/1.0.0": { + "type": "project", + "framework": ".NETFramework,Version=v4.5", + "dependencies": { + "EPPlus": "4.5.2.1", + "IngeniBridge.Core": "1.0.37", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "bin/placeholder/MyCompanyDataModel.dll": {} + }, + "runtime": { + "bin/placeholder/MyCompanyDataModel.dll": {} + } + } + }, + ".NETFramework,Version=v4.5/win7-x86": { + "CommandLineParser/2.3.0": { + "type": "package", + "compile": { + "lib/net45/CommandLine.dll": {} + }, + "runtime": { + "lib/net45/CommandLine.dll": {} + } + }, + "EPPlus/4.5.2.1": { + "type": "package", + "frameworkAssemblies": [ + "PresentationCore", + "System", + "System.Core", + "System.Data", + "System.Drawing", + "System.Security", + "System.Xml", + "System.configuration" + ], + "compile": { + "lib/net40/EPPlus.dll": {} + }, + "runtime": { + "lib/net40/EPPlus.dll": {} + } + }, + "IngeniBridge.BuildUtils/1.0.6": { + "type": "package", + "dependencies": { + "EPPlus": "4.5.2.1", + "IngeniBridge.Core": "1.0.37", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/net45/IngeniBridge.BuildUtils.dll": {} + }, + "runtime": { + "lib/net45/IngeniBridge.BuildUtils.dll": {} + } + }, + "IngeniBridge.Core/1.0.37": { + "type": "package", + "dependencies": { + "JT.TechCases.Threading": "1.0.12", + "Newtonsoft.Json": "11.0.2", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/net45/IngeniBridge.Core.dll": {} + }, + "runtime": { + "lib/net45/IngeniBridge.Core.dll": {} + } + }, + "IngeniBridge.StorageAccessor.InMemory/1.0.8": { + "type": "package", + "dependencies": { + "IngeniBridge.Core": "1.0.37", + "JT.TechCases.Threading": "1.0.12", + "Microsoft.CSharp": "4.5.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/net45/IngeniBridge.StorageAccessor.InMemory.dll": {} + }, + "runtime": { + "lib/net45/IngeniBridge.StorageAccessor.InMemory.dll": {} + } + }, + "JT.TechCases.Threading/1.0.12": { + "type": "package", + "frameworkAssemblies": [ + "PresentationCore", + "PresentationFramework", + "System.Windows.Forms", + "WindowsBase" + ], + "compile": { + "lib/net45/JT.TechCases.Threading.dll": {} + }, + "runtime": { + "lib/net45/JT.TechCases.Threading.dll": {} + } + }, + "log4net/2.0.8": { + "type": "package", + "compile": { + "lib/net45-full/log4net.dll": {} + }, + "runtime": { + "lib/net45-full/log4net.dll": {} + } + }, + "Microsoft.CSharp/4.5.0": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp" + ], + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "Newtonsoft.Json/11.0.2": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "frameworkAssemblies": [ + "System.Runtime.Serialization" + ], + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.ValueTuple/4.5.0": { + "type": "package", + "compile": { + "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + }, + "MyCompanyDataModel/1.0.0": { + "type": "project", + "framework": ".NETFramework,Version=v4.5", + "dependencies": { + "EPPlus": "4.5.2.1", + "IngeniBridge.Core": "1.0.37", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "bin/placeholder/MyCompanyDataModel.dll": {} + }, + "runtime": { + "bin/placeholder/MyCompanyDataModel.dll": {} + } + } + } + }, + "libraries": { + "CommandLineParser/2.3.0": { + "sha512": "reRoh1qxIxsipV2FPBBkp5zFQZjJ0QKZCODLg6nSGBVJzKMBpLAjZP1QkD8f526RfN4+E1zJR/WHOckSRvllOg==", + "type": "package", + "path": "commandlineparser/2.3.0", + "files": [ + ".signature.p7s", + "commandlineparser.2.3.0.nupkg.sha512", + "commandlineparser.nuspec", + "lib/net40/CommandLine.XML", + "lib/net40/CommandLine.dll", + "lib/net45/CommandLine.XML", + "lib/net45/CommandLine.dll", + "lib/netstandard1.5/CommandLine.dll", + "lib/netstandard1.5/CommandLine.xml", + "readme.md" + ] + }, + "EPPlus/4.5.2.1": { + "sha512": "/OzYn/n982Ozu+ARWISjn9REIb3PA5KN8qPfp3JKOoSnBezN3loGCQ2k0nLNL5K8+b+3boinsNiRbm5ovEfeog==", + "type": "package", + "path": "epplus/4.5.2.1", + "files": [ + "epplus.4.5.2.1.nupkg.sha512", + "epplus.nuspec", + "lib/net35/EPPlus.dll", + "lib/net35/EPPlus.xml", + "lib/net40/EPPlus.dll", + "lib/net40/EPPlus.xml", + "lib/netstandard2.0/EPPlus.dll", + "lib/netstandard2.0/EPPlus.xml", + "readme.txt" + ] + }, + "IngeniBridge.BuildUtils/1.0.6": { + "sha512": "S0Cz50zdX0mLF7S6CL9JCKJFa2+XAonrZcKOvvzlXx1KAoLiOLZ1y8mi1vYXi4vnQGIwOTNn9HJlAhIH9xkI/g==", + "type": "package", + "path": "ingenibridge.buildutils/1.0.6", + "files": [ + ".signature.p7s", + "ingenibridge.buildutils.1.0.6.nupkg.sha512", + "ingenibridge.buildutils.nuspec", + "lib/net45/IngeniBridge.BuildUtils.dll", + "lib/netstandard2.0/IngeniBridge.BuildUtils.dll" + ] + }, + "IngeniBridge.Core/1.0.37": { + "sha512": "V5zIao9IGH9F10UDOMN1oubR0uubmDxY2z50BtiCXUj61lOMiGnpYRrLqeUKcjNQesL9Repvwi7YW1bQ4bMtNg==", + "type": "package", + "path": "ingenibridge.core/1.0.37", + "files": [ + ".signature.p7s", + "ingenibridge.core.1.0.37.nupkg.sha512", + "ingenibridge.core.nuspec", + "lib/net45/IngeniBridge.Core.dll", + "lib/netstandard2.0/IngeniBridge.Core.dll" + ] + }, + "IngeniBridge.StorageAccessor.InMemory/1.0.8": { + "sha512": "qF7zmqcVEbpUhJdtdJ0JsES4L0o1ConlepPnd6f89Ygu3gKzV5ekmAKdOkdxeNk7ZGbf+Q8vCI/BHzy3WRPM9g==", + "type": "package", + "path": "ingenibridge.storageaccessor.inmemory/1.0.8", + "files": [ + ".signature.p7s", + "ingenibridge.storageaccessor.inmemory.1.0.8.nupkg.sha512", + "ingenibridge.storageaccessor.inmemory.nuspec", + "lib/net45/IngeniBridge.StorageAccessor.InMemory.dll", + "lib/netstandard2.0/IngeniBridge.StorageAccessor.InMemory.dll" + ] + }, + "JT.TechCases.Threading/1.0.12": { + "sha512": "P5/D3riDQc/cqnIMekNh7f1RVscDTq8wVI1dXQh9453BmF+7fTnNSzT3HiKcrbcO7DDugNPS9CUJFVz9xrE0cw==", + "type": "package", + "path": "jt.techcases.threading/1.0.12", + "files": [ + ".signature.p7s", + "jt.techcases.threading.1.0.12.nupkg.sha512", + "jt.techcases.threading.nuspec", + "lib/net40/JT.TechCases.Threading.dll", + "lib/net45/JT.TechCases.Threading.dll", + "lib/netstandard2.0/JT.TechCases.Threading.dll" + ] + }, + "log4net/2.0.8": { + "sha512": "N41MQGHZImiCfn0cUuSBjZxrcNfIQCuCgQP0rpgB3J/NWponEh3lc1LxJEuIsPAR9Oc1jVvfkNNFCY1C5hf9LA==", + "type": "package", + "path": "log4net/2.0.8", + "files": [ + "lib/net20-full/log4net.dll", + "lib/net20-full/log4net.xml", + "lib/net35-client/log4net.dll", + "lib/net35-client/log4net.xml", + "lib/net35-full/log4net.dll", + "lib/net35-full/log4net.xml", + "lib/net40-client/log4net.dll", + "lib/net40-client/log4net.xml", + "lib/net40-full/log4net.dll", + "lib/net40-full/log4net.xml", + "lib/net45-full/log4net.dll", + "lib/net45-full/log4net.xml", + "lib/netstandard1.3/log4net.dll", + "log4net.2.0.8.nupkg.sha512", + "log4net.nuspec" + ] + }, + "Microsoft.CSharp/4.5.0": { + "sha512": "EGoBmf3Na2ppbhPePDE9PlX81r1HuOZH5twBrq7couJZiPTjUnD3648balerQJO6EJ8Sj+43+XuRwQ7r+3tE3w==", + "type": "package", + "path": "microsoft.csharp/4.5.0", + "files": [ + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.5.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Newtonsoft.Json/11.0.2": { + "sha512": "IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==", + "type": "package", + "path": "newtonsoft.json/11.0.2", + "files": [ + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml", + "newtonsoft.json.11.0.2.nupkg.sha512", + "newtonsoft.json.nuspec" + ] + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==", + "type": "package", + "path": "system.runtime.serialization.primitives/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Runtime.Serialization.Primitives.dll", + "lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "system.runtime.serialization.primitives.4.3.0.nupkg.sha512", + "system.runtime.serialization.primitives.nuspec" + ] + }, + "System.ValueTuple/4.5.0": { + "sha512": "xZtSZNEHGa+tGsKuP4sh257vxJ/yemShz4EusmomkynMzuEDDjVaErBNewpzEF6swUgbcrSQAX3ELsEp1zCOwA==", + "type": "package", + "path": "system.valuetuple/4.5.0", + "files": [ + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.ValueTuple.dll", + "lib/net461/System.ValueTuple.xml", + "lib/net47/System.ValueTuple.dll", + "lib/net47/System.ValueTuple.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.ValueTuple.dll", + "lib/netstandard1.0/System.ValueTuple.xml", + "lib/netstandard2.0/_._", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.ValueTuple.dll", + "ref/net47/System.ValueTuple.dll", + "ref/netcoreapp2.0/_._", + "ref/netstandard2.0/_._", + "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.valuetuple.4.5.0.nupkg.sha512", + "system.valuetuple.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "MyCompanyDataModel/1.0.0": { + "type": "project", + "path": "../MyCompanyDataModel/MyCompanyDataModel.csproj", + "msbuildProject": "../MyCompanyDataModel/MyCompanyDataModel.csproj" + } + }, + "projectFileDependencyGroups": { + ".NETFramework,Version=v4.5": [ + "CommandLineParser >= 2.3.0", + "IngeniBridge.BuildUtils >= 1.0.6", + "IngeniBridge.Core >= 1.0.37", + "IngeniBridge.StorageAccessor.InMemory >= 1.0.8", + "JT.TechCases.Threading >= 1.0.12", + "MyCompanyDataModel >= 1.0.0", + "log4net >= 2.0.8" + ] + }, + "packageFolders": { + "C:\\Users\\joset\\.nuget\\packages\\": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\joset\\repos_github\\IngeniBridge\\IngeniBridge.Sample.MyCompany\\IngeniBridge.Samples.MyCompany\\IngeniBridge.Samples.MyCompany.csproj", + "projectName": "IngeniBridge.Samples.MyCompany", + "projectPath": "C:\\Users\\joset\\repos_github\\IngeniBridge\\IngeniBridge.Sample.MyCompany\\IngeniBridge.Samples.MyCompany\\IngeniBridge.Samples.MyCompany.csproj", + "packagesPath": "C:\\Users\\joset\\.nuget\\packages\\", + "outputPath": "C:\\Users\\joset\\repos_github\\IngeniBridge\\IngeniBridge.Sample.MyCompany\\IngeniBridge.Samples.MyCompany\\obj\\", + "projectStyle": "PackageReference", + "crossTargeting": true, + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\joset\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net45" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net45": { + "projectReferences": { + "C:\\Users\\joset\\repos_github\\IngeniBridge\\IngeniBridge.Sample.MyCompany\\MyCompanyDataModel\\MyCompanyDataModel.csproj": { + "projectPath": "C:\\Users\\joset\\repos_github\\IngeniBridge\\IngeniBridge.Sample.MyCompany\\MyCompanyDataModel\\MyCompanyDataModel.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net45": { + "dependencies": { + "CommandLineParser": { + "target": "Package", + "version": "[2.3.0, )" + }, + "IngeniBridge.BuildUtils": { + "target": "Package", + "version": "[1.0.6, )" + }, + "IngeniBridge.Core": { + "target": "Package", + "version": "[1.0.37, )" + }, + "IngeniBridge.StorageAccessor.InMemory": { + "target": "Package", + "version": "[1.0.8, )" + }, + "JT.TechCases.Threading": { + "target": "Package", + "version": "[1.0.12, )" + }, + "log4net": { + "target": "Package", + "version": "[2.0.8, )" + } + } + } + }, + "runtimes": { + "win7-x86": { + "#import": [] + } + } + } +} \ No newline at end of file diff --git a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/packages.config b/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/packages.config deleted file mode 100644 index 4697fa3..0000000 --- a/IngeniBridge.Sample.MyCompany/IngeniBridge.Samples.MyCompany/packages.config +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/MyCompanyDataModel.csproj b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/MyCompanyDataModel.csproj index 49bdb11..ca95ce7 100644 --- a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/MyCompanyDataModel.csproj +++ b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/MyCompanyDataModel.csproj @@ -1,84 +1,32 @@ - - - + + - Debug - AnyCPU - {43213853-C6F5-4CC4-B1C5-3FEAD2355024} - Library - Properties - MyCompanyDataModel - MyCompanyDataModel - v4.6.1 - 512 - SAK - SAK - SAK - SAK - + netstandard2.0;net45 + MyCompanyDataModel + 1.0.0 + JTO Tec + Copyright © DEAGITAL 2016 + false + + DEAGITAL - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - x64 - - - - ..\packages\IngeniBridge.Core.1.0.36\lib\net461\IngeniBridge.Core.dll - - - ..\packages\JT.TechCases.Threading.1.0.11\lib\net45\JT.TechCases.Threading.dll - - - ..\packages\Newtonsoft.Json.11.0.2\lib\net45\Newtonsoft.Json.dll - - - - - ..\packages\System.ValueTuple.4.5.0\lib\net461\System.ValueTuple.dll - - - - - - - - + - - - - - - - - - + + + + - - - - - - \ No newline at end of file + + + NETCORE;NETSTANDARD;NETSTANDARD2_0 + + + + NET45;NETFULL + + + + diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/Properties/AssemblyInfo.cs b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/Properties/AssemblyInfo.cs deleted file mode 100644 index 026ca5b..0000000 --- a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,35 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("MyCompanyDataModel")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("MyCompanyDataModel")] -[assembly: AssemblyCopyright("Copyright © 2016")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("43213853-c6f5-4cc4-b1c5-3fead2355024")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.8.*")] diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Debug/net45/EPPlus.dll b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Debug/net45/EPPlus.dll new file mode 100644 index 0000000..84afe50 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Debug/net45/EPPlus.dll differ diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Debug/net45/IngeniBridge.Core.dll b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Debug/net45/IngeniBridge.Core.dll new file mode 100644 index 0000000..178fbee Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Debug/net45/IngeniBridge.Core.dll differ diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Debug/net45/JT.TechCases.Threading.dll b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Debug/net45/JT.TechCases.Threading.dll new file mode 100644 index 0000000..c448275 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Debug/net45/JT.TechCases.Threading.dll differ diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Debug/net45/MyCompanyDataModel.dll b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Debug/net45/MyCompanyDataModel.dll new file mode 100644 index 0000000..7b18f38 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Debug/net45/MyCompanyDataModel.dll differ diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Debug/net45/MyCompanyDataModel.pdb b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Debug/net45/MyCompanyDataModel.pdb new file mode 100644 index 0000000..60cefb1 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Debug/net45/MyCompanyDataModel.pdb differ diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Debug/net45/Newtonsoft.Json.dll b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Debug/net45/Newtonsoft.Json.dll new file mode 100644 index 0000000..8069902 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Debug/net45/Newtonsoft.Json.dll differ diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Debug/net45/System.ValueTuple.dll b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Debug/net45/System.ValueTuple.dll new file mode 100644 index 0000000..65fa9ee Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Debug/net45/System.ValueTuple.dll differ diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Debug/netstandard2.0/MyCompanyDataModel.deps.json b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Debug/netstandard2.0/MyCompanyDataModel.deps.json new file mode 100644 index 0000000..39e9775 --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Debug/netstandard2.0/MyCompanyDataModel.deps.json @@ -0,0 +1,1430 @@ +{ + "runtimeTarget": { + "name": ".NETStandard,Version=v2.0/", + "signature": "ee9f074775c38234cd37e0d834f0b34793ce7e39" + }, + "compilationOptions": {}, + "targets": { + ".NETStandard,Version=v2.0": {}, + ".NETStandard,Version=v2.0/": { + "MyCompanyDataModel/1.0.0": { + "dependencies": { + "EPPlus": "4.5.2.1", + "IngeniBridge.Core": "1.0.37", + "NETStandard.Library": "2.0.3", + "System.ValueTuple": "4.5.0" + }, + "runtime": { + "MyCompanyDataModel.dll": {} + } + }, + "EPPlus/4.5.2.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Json": "2.0.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Data.Common": "4.3.0", + "System.Drawing.Common": "4.5.0", + "System.Reflection": "4.3.0", + "System.Security.Claims": "4.3.0", + "System.Security.Cryptography.Pkcs": "4.4.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding.CodePages": "4.4.0", + "System.Xml.XPath.XmlDocument": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/EPPlus.dll": { + "assemblyVersion": "4.5.2.1", + "fileVersion": "4.5.2.1" + } + } + }, + "IngeniBridge.Core/1.0.37": { + "dependencies": { + "JT.TechCases.Threading": "1.0.12", + "Newtonsoft.Json": "11.0.2", + "System.ValueTuple": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/IngeniBridge.Core.dll": { + "assemblyVersion": "1.0.37.0", + "fileVersion": "1.0.37.0" + } + } + }, + "JT.TechCases.Threading/1.0.12": { + "runtime": { + "lib/netstandard2.0/JT.TechCases.Threading.dll": { + "assemblyVersion": "1.0.12.0", + "fileVersion": "1.0.12.0" + } + } + }, + "Microsoft.Extensions.Configuration/2.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "2.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.17205" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/2.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "2.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.17205" + } + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/2.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "2.0.0", + "Microsoft.Extensions.FileProviders.Physical": "2.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.17205" + } + } + }, + "Microsoft.Extensions.Configuration.Json/2.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "2.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "2.0.0", + "Newtonsoft.Json": "11.0.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.17205" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/2.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "2.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.17205" + } + } + }, + "Microsoft.Extensions.FileProviders.Physical/2.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "2.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "2.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.17205" + } + } + }, + "Microsoft.Extensions.FileSystemGlobbing/2.0.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.17205" + } + } + }, + "Microsoft.Extensions.Primitives/2.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "4.4.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.17205" + } + } + }, + "Microsoft.NETCore.Platforms/1.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "NETStandard.Library/2.0.3": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + } + }, + "Newtonsoft.Json/11.0.2": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.2.21924" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": { + "assemblyVersion": "4.0.13.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Collections.NonGeneric/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Collections.Specialized/4.3.0": { + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.ComponentModel/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": { + "assemblyVersion": "4.1.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "runtime": { + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": { + "assemblyVersion": "4.1.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Data.Common/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "runtime": { + "lib/netstandard1.2/System.Data.Common.dll": { + "assemblyVersion": "4.1.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Drawing.Common/4.5.0": { + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.6.26515.6" + } + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": { + "assemblyVersion": "4.1.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": { + "assemblyVersion": "4.1.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/4.4.0": { + "runtime": { + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "0.0.0.0" + } + } + }, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Security.Claims/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Security.Principal": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "1.0.24212.1" + } + } + }, + "System.Security.Cryptography.Pkcs/4.4.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.25519.3" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Principal/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.Security.Principal.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/4.4.0": { + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": { + "assemblyVersion": "4.1.0.0", + "fileVersion": "4.6.25519.3" + } + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": { + "assemblyVersion": "4.1.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": { + "assemblyVersion": "4.0.12.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": { + "assemblyVersion": "4.1.0.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.ValueTuple/4.5.0": {}, + "System.Xml.ReaderWriter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": { + "assemblyVersion": "4.1.0.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Xml.XmlDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Xml.XPath/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Xml.XPath.XmlDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XPath": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + } + } + }, + "libraries": { + "MyCompanyDataModel/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "EPPlus/4.5.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/OzYn/n982Ozu+ARWISjn9REIb3PA5KN8qPfp3JKOoSnBezN3loGCQ2k0nLNL5K8+b+3boinsNiRbm5ovEfeog==", + "path": "epplus/4.5.2.1", + "hashPath": "epplus.4.5.2.1.nupkg.sha512" + }, + "IngeniBridge.Core/1.0.37": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V5zIao9IGH9F10UDOMN1oubR0uubmDxY2z50BtiCXUj61lOMiGnpYRrLqeUKcjNQesL9Repvwi7YW1bQ4bMtNg==", + "path": "ingenibridge.core/1.0.37", + "hashPath": "ingenibridge.core.1.0.37.nupkg.sha512" + }, + "JT.TechCases.Threading/1.0.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P5/D3riDQc/cqnIMekNh7f1RVscDTq8wVI1dXQh9453BmF+7fTnNSzT3HiKcrbcO7DDugNPS9CUJFVz9xrE0cw==", + "path": "jt.techcases.threading/1.0.12", + "hashPath": "jt.techcases.threading.1.0.12.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SsI4RqI8EH00+cYO96tbftlh87sNUv1eeyuBU1XZdQkG0RrHAOjWgl7P0FoLeTSMXJpOnfweeOWj2d1/5H3FxA==", + "path": "microsoft.extensions.configuration/2.0.0", + "hashPath": "microsoft.extensions.configuration.2.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rHFrXqMIvQNq51H8RYTO4IWmDOYh8NUzyqGlh0xHWTP6XYnKk7Ryinys2uDs+Vu88b3AMlM3gBBSs78m6OQpYQ==", + "path": "microsoft.extensions.configuration.abstractions/2.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.2.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ebFbu+vsz4rzeAICWavk9a0FutWVs7aNZap5k/IVxVhu2CnnhOp/H/gNtpzplrqjYDaNYdmv9a/DoUvH2ynVEQ==", + "path": "microsoft.extensions.configuration.fileextensions/2.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.2.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-thPz4SckRGNqeLbdvJ619YxRFSkWuL1K5QqTMb3TVdEwjQj4O39yfUtjtI/XlWJiY7JKK4MUKAiQZVYc8ohKKg==", + "path": "microsoft.extensions.configuration.json/2.0.0", + "hashPath": "microsoft.extensions.configuration.json.2.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z0AK+hmLO33WAXQ5P1uPzhH7z5yjDHX/XnUefXxE//SyvCb9x4cVjND24dT5566t/yzGp8/WLD7EG9KQKZZklQ==", + "path": "microsoft.extensions.fileproviders.abstractions/2.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.2.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DKO2j2socZbHNCCVEWsLVpB3AQIIzKYFNyITVeWdA1jQ829GJIQf4MUD04+1c+Q2kbK03pIKQZmEy4CGIfgDZw==", + "path": "microsoft.extensions.fileproviders.physical/2.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.2.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UC87vRDUB7/vSaNY/FVhbdAyRkfFBTkYmcUoglxk6TyTojhSqYaG5pZsoP4e1ZuXktFXJXJBTvK8U/QwCo0z3g==", + "path": "microsoft.extensions.filesystemglobbing/2.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.2.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ukg53qNlqTrK38WA30b5qhw0GD7y3jdI9PHHASjdKyTcBHTevFM2o23tyk3pWCgAV27Bbkm+CPQ2zUe1ZOuYSA==", + "path": "microsoft.extensions.primitives/2.0.0", + "hashPath": "microsoft.extensions.primitives.2.0.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "path": "microsoft.netcore.platforms/1.1.0", + "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "NETStandard.Library/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==", + "path": "netstandard.library/2.0.3", + "hashPath": "netstandard.library.2.0.3.nupkg.sha512" + }, + "Newtonsoft.Json/11.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==", + "path": "newtonsoft.json/11.0.2", + "hashPath": "newtonsoft.json.11.0.2.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "path": "system.collections.nongeneric/4.3.0", + "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "path": "system.collections.specialized/4.3.0", + "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "path": "system.componentmodel/4.3.0", + "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "path": "system.componentmodel.primitives/4.3.0", + "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "path": "system.componentmodel.typeconverter/4.3.0", + "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" + }, + "System.Data.Common/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "path": "system.data.common/4.3.0", + "hashPath": "system.data.common.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.Drawing.Common/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LLI+GGolsv4K8Eu2PN5N3/1t4pM5zoU4fM3lWhSOawJuCjv9iQJJODjd4/QJIgpjlqxzQDMMoOjAaVuzrNJT0g==", + "path": "system.drawing.common/4.5.0", + "hashPath": "system.drawing.common.4.5.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9dLLuBxr5GNmOfl2jSMcsHuteEg32BEfUotmmUkmZjpR3RpVHE8YQwt0ow3p6prwA1ME8WqDVZqrr8z6H8G+Kw==", + "path": "system.runtime.compilerservices.unsafe/4.4.0", + "hashPath": "system.runtime.compilerservices.unsafe.4.4.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Security.Claims/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==", + "path": "system.security.claims/4.3.0", + "hashPath": "system.security.claims.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "path": "system.security.cryptography.cng/4.3.0", + "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Pkcs/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pC4ieF0mAVufKNfFYXvtpAkIUBgyAZgLrzDw/bwWDfdqN8H/8m3IqiiMr7cmoWYDFsWwxVTbYDhDzPpiHcxvaA==", + "path": "system.security.cryptography.pkcs/4.4.0", + "hashPath": "system.security.cryptography.pkcs.4.4.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Security.Principal/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==", + "path": "system.security.principal/4.3.0", + "hashPath": "system.security.principal.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6JX7ZdaceBiLKLkYt8zJcp4xTJd1uYyXXEkPw6mnlUIjh1gZPIVKPtRXPmY5kLf6DwZmf5YLwR3QUrRonl7l0A==", + "path": "system.text.encoding.codepages/4.4.0", + "hashPath": "system.text.encoding.codepages.4.4.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", + "path": "system.threading.tasks.extensions/4.3.0", + "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" + }, + "System.ValueTuple/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xZtSZNEHGa+tGsKuP4sh257vxJ/yemShz4EusmomkynMzuEDDjVaErBNewpzEF6swUgbcrSQAX3ELsEp1zCOwA==", + "path": "system.valuetuple/4.5.0", + "hashPath": "system.valuetuple.4.5.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "path": "system.xml.xmldocument/4.3.0", + "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XPath/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", + "path": "system.xml.xpath/4.3.0", + "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512" + }, + "System.Xml.XPath.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==", + "path": "system.xml.xpath.xmldocument/4.3.0", + "hashPath": "system.xml.xpath.xmldocument.4.3.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Debug/netstandard2.0/MyCompanyDataModel.dll b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Debug/netstandard2.0/MyCompanyDataModel.dll new file mode 100644 index 0000000..2ec4775 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Debug/netstandard2.0/MyCompanyDataModel.dll differ diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Debug/netstandard2.0/MyCompanyDataModel.pdb b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Debug/netstandard2.0/MyCompanyDataModel.pdb new file mode 100644 index 0000000..8d208ed Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Debug/netstandard2.0/MyCompanyDataModel.pdb differ diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Release/net45/EPPlus.dll b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Release/net45/EPPlus.dll new file mode 100644 index 0000000..84afe50 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Release/net45/EPPlus.dll differ diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Release/net45/IngeniBridge.Core.dll b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Release/net45/IngeniBridge.Core.dll new file mode 100644 index 0000000..178fbee Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Release/net45/IngeniBridge.Core.dll differ diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Release/net45/JT.TechCases.Threading.dll b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Release/net45/JT.TechCases.Threading.dll new file mode 100644 index 0000000..c448275 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Release/net45/JT.TechCases.Threading.dll differ diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Release/net45/MyCompanyDataModel.dll b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Release/net45/MyCompanyDataModel.dll new file mode 100644 index 0000000..fca96bc Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Release/net45/MyCompanyDataModel.dll differ diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Release/net45/MyCompanyDataModel.pdb b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Release/net45/MyCompanyDataModel.pdb new file mode 100644 index 0000000..0d38628 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Release/net45/MyCompanyDataModel.pdb differ diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Release/net45/Newtonsoft.Json.dll b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Release/net45/Newtonsoft.Json.dll new file mode 100644 index 0000000..8069902 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Release/net45/Newtonsoft.Json.dll differ diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Release/net45/System.ValueTuple.dll b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Release/net45/System.ValueTuple.dll new file mode 100644 index 0000000..65fa9ee Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Release/net45/System.ValueTuple.dll differ diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Release/netstandard2.0/MyCompanyDataModel.deps.json b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Release/netstandard2.0/MyCompanyDataModel.deps.json new file mode 100644 index 0000000..39e9775 --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Release/netstandard2.0/MyCompanyDataModel.deps.json @@ -0,0 +1,1430 @@ +{ + "runtimeTarget": { + "name": ".NETStandard,Version=v2.0/", + "signature": "ee9f074775c38234cd37e0d834f0b34793ce7e39" + }, + "compilationOptions": {}, + "targets": { + ".NETStandard,Version=v2.0": {}, + ".NETStandard,Version=v2.0/": { + "MyCompanyDataModel/1.0.0": { + "dependencies": { + "EPPlus": "4.5.2.1", + "IngeniBridge.Core": "1.0.37", + "NETStandard.Library": "2.0.3", + "System.ValueTuple": "4.5.0" + }, + "runtime": { + "MyCompanyDataModel.dll": {} + } + }, + "EPPlus/4.5.2.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Json": "2.0.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Data.Common": "4.3.0", + "System.Drawing.Common": "4.5.0", + "System.Reflection": "4.3.0", + "System.Security.Claims": "4.3.0", + "System.Security.Cryptography.Pkcs": "4.4.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding.CodePages": "4.4.0", + "System.Xml.XPath.XmlDocument": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/EPPlus.dll": { + "assemblyVersion": "4.5.2.1", + "fileVersion": "4.5.2.1" + } + } + }, + "IngeniBridge.Core/1.0.37": { + "dependencies": { + "JT.TechCases.Threading": "1.0.12", + "Newtonsoft.Json": "11.0.2", + "System.ValueTuple": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/IngeniBridge.Core.dll": { + "assemblyVersion": "1.0.37.0", + "fileVersion": "1.0.37.0" + } + } + }, + "JT.TechCases.Threading/1.0.12": { + "runtime": { + "lib/netstandard2.0/JT.TechCases.Threading.dll": { + "assemblyVersion": "1.0.12.0", + "fileVersion": "1.0.12.0" + } + } + }, + "Microsoft.Extensions.Configuration/2.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "2.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.17205" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/2.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "2.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.17205" + } + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/2.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "2.0.0", + "Microsoft.Extensions.FileProviders.Physical": "2.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.17205" + } + } + }, + "Microsoft.Extensions.Configuration.Json/2.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "2.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "2.0.0", + "Newtonsoft.Json": "11.0.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.17205" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/2.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "2.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.17205" + } + } + }, + "Microsoft.Extensions.FileProviders.Physical/2.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "2.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "2.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.17205" + } + } + }, + "Microsoft.Extensions.FileSystemGlobbing/2.0.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.17205" + } + } + }, + "Microsoft.Extensions.Primitives/2.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "4.4.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.17205" + } + } + }, + "Microsoft.NETCore.Platforms/1.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "NETStandard.Library/2.0.3": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + } + }, + "Newtonsoft.Json/11.0.2": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.2.21924" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": { + "assemblyVersion": "4.0.13.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Collections.NonGeneric/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Collections.Specialized/4.3.0": { + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.ComponentModel/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": { + "assemblyVersion": "4.1.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "runtime": { + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": { + "assemblyVersion": "4.1.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Data.Common/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "runtime": { + "lib/netstandard1.2/System.Data.Common.dll": { + "assemblyVersion": "4.1.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Drawing.Common/4.5.0": { + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.6.26515.6" + } + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": { + "assemblyVersion": "4.1.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": { + "assemblyVersion": "4.1.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/4.4.0": { + "runtime": { + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "0.0.0.0" + } + } + }, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Security.Claims/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Security.Principal": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "1.0.24212.1" + } + } + }, + "System.Security.Cryptography.Pkcs/4.4.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.25519.3" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Principal/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.Security.Principal.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/4.4.0": { + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": { + "assemblyVersion": "4.1.0.0", + "fileVersion": "4.6.25519.3" + } + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": { + "assemblyVersion": "4.1.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": { + "assemblyVersion": "4.0.12.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": { + "assemblyVersion": "4.1.0.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.ValueTuple/4.5.0": {}, + "System.Xml.ReaderWriter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": { + "assemblyVersion": "4.1.0.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Xml.XmlDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Xml.XPath/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Xml.XPath.XmlDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XPath": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + } + } + }, + "libraries": { + "MyCompanyDataModel/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "EPPlus/4.5.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/OzYn/n982Ozu+ARWISjn9REIb3PA5KN8qPfp3JKOoSnBezN3loGCQ2k0nLNL5K8+b+3boinsNiRbm5ovEfeog==", + "path": "epplus/4.5.2.1", + "hashPath": "epplus.4.5.2.1.nupkg.sha512" + }, + "IngeniBridge.Core/1.0.37": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V5zIao9IGH9F10UDOMN1oubR0uubmDxY2z50BtiCXUj61lOMiGnpYRrLqeUKcjNQesL9Repvwi7YW1bQ4bMtNg==", + "path": "ingenibridge.core/1.0.37", + "hashPath": "ingenibridge.core.1.0.37.nupkg.sha512" + }, + "JT.TechCases.Threading/1.0.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P5/D3riDQc/cqnIMekNh7f1RVscDTq8wVI1dXQh9453BmF+7fTnNSzT3HiKcrbcO7DDugNPS9CUJFVz9xrE0cw==", + "path": "jt.techcases.threading/1.0.12", + "hashPath": "jt.techcases.threading.1.0.12.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SsI4RqI8EH00+cYO96tbftlh87sNUv1eeyuBU1XZdQkG0RrHAOjWgl7P0FoLeTSMXJpOnfweeOWj2d1/5H3FxA==", + "path": "microsoft.extensions.configuration/2.0.0", + "hashPath": "microsoft.extensions.configuration.2.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rHFrXqMIvQNq51H8RYTO4IWmDOYh8NUzyqGlh0xHWTP6XYnKk7Ryinys2uDs+Vu88b3AMlM3gBBSs78m6OQpYQ==", + "path": "microsoft.extensions.configuration.abstractions/2.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.2.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ebFbu+vsz4rzeAICWavk9a0FutWVs7aNZap5k/IVxVhu2CnnhOp/H/gNtpzplrqjYDaNYdmv9a/DoUvH2ynVEQ==", + "path": "microsoft.extensions.configuration.fileextensions/2.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.2.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-thPz4SckRGNqeLbdvJ619YxRFSkWuL1K5QqTMb3TVdEwjQj4O39yfUtjtI/XlWJiY7JKK4MUKAiQZVYc8ohKKg==", + "path": "microsoft.extensions.configuration.json/2.0.0", + "hashPath": "microsoft.extensions.configuration.json.2.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z0AK+hmLO33WAXQ5P1uPzhH7z5yjDHX/XnUefXxE//SyvCb9x4cVjND24dT5566t/yzGp8/WLD7EG9KQKZZklQ==", + "path": "microsoft.extensions.fileproviders.abstractions/2.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.2.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DKO2j2socZbHNCCVEWsLVpB3AQIIzKYFNyITVeWdA1jQ829GJIQf4MUD04+1c+Q2kbK03pIKQZmEy4CGIfgDZw==", + "path": "microsoft.extensions.fileproviders.physical/2.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.2.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UC87vRDUB7/vSaNY/FVhbdAyRkfFBTkYmcUoglxk6TyTojhSqYaG5pZsoP4e1ZuXktFXJXJBTvK8U/QwCo0z3g==", + "path": "microsoft.extensions.filesystemglobbing/2.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.2.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ukg53qNlqTrK38WA30b5qhw0GD7y3jdI9PHHASjdKyTcBHTevFM2o23tyk3pWCgAV27Bbkm+CPQ2zUe1ZOuYSA==", + "path": "microsoft.extensions.primitives/2.0.0", + "hashPath": "microsoft.extensions.primitives.2.0.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "path": "microsoft.netcore.platforms/1.1.0", + "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "NETStandard.Library/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==", + "path": "netstandard.library/2.0.3", + "hashPath": "netstandard.library.2.0.3.nupkg.sha512" + }, + "Newtonsoft.Json/11.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==", + "path": "newtonsoft.json/11.0.2", + "hashPath": "newtonsoft.json.11.0.2.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "path": "system.collections.nongeneric/4.3.0", + "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "path": "system.collections.specialized/4.3.0", + "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "path": "system.componentmodel/4.3.0", + "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "path": "system.componentmodel.primitives/4.3.0", + "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "path": "system.componentmodel.typeconverter/4.3.0", + "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" + }, + "System.Data.Common/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "path": "system.data.common/4.3.0", + "hashPath": "system.data.common.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.Drawing.Common/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LLI+GGolsv4K8Eu2PN5N3/1t4pM5zoU4fM3lWhSOawJuCjv9iQJJODjd4/QJIgpjlqxzQDMMoOjAaVuzrNJT0g==", + "path": "system.drawing.common/4.5.0", + "hashPath": "system.drawing.common.4.5.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9dLLuBxr5GNmOfl2jSMcsHuteEg32BEfUotmmUkmZjpR3RpVHE8YQwt0ow3p6prwA1ME8WqDVZqrr8z6H8G+Kw==", + "path": "system.runtime.compilerservices.unsafe/4.4.0", + "hashPath": "system.runtime.compilerservices.unsafe.4.4.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Security.Claims/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==", + "path": "system.security.claims/4.3.0", + "hashPath": "system.security.claims.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "path": "system.security.cryptography.cng/4.3.0", + "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Pkcs/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pC4ieF0mAVufKNfFYXvtpAkIUBgyAZgLrzDw/bwWDfdqN8H/8m3IqiiMr7cmoWYDFsWwxVTbYDhDzPpiHcxvaA==", + "path": "system.security.cryptography.pkcs/4.4.0", + "hashPath": "system.security.cryptography.pkcs.4.4.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Security.Principal/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==", + "path": "system.security.principal/4.3.0", + "hashPath": "system.security.principal.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6JX7ZdaceBiLKLkYt8zJcp4xTJd1uYyXXEkPw6mnlUIjh1gZPIVKPtRXPmY5kLf6DwZmf5YLwR3QUrRonl7l0A==", + "path": "system.text.encoding.codepages/4.4.0", + "hashPath": "system.text.encoding.codepages.4.4.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", + "path": "system.threading.tasks.extensions/4.3.0", + "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" + }, + "System.ValueTuple/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xZtSZNEHGa+tGsKuP4sh257vxJ/yemShz4EusmomkynMzuEDDjVaErBNewpzEF6swUgbcrSQAX3ELsEp1zCOwA==", + "path": "system.valuetuple/4.5.0", + "hashPath": "system.valuetuple.4.5.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "path": "system.xml.xmldocument/4.3.0", + "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XPath/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", + "path": "system.xml.xpath/4.3.0", + "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512" + }, + "System.Xml.XPath.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==", + "path": "system.xml.xpath.xmldocument/4.3.0", + "hashPath": "system.xml.xpath.xmldocument.4.3.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Release/netstandard2.0/MyCompanyDataModel.dll b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Release/netstandard2.0/MyCompanyDataModel.dll new file mode 100644 index 0000000..0666ab6 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Release/netstandard2.0/MyCompanyDataModel.dll differ diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Release/netstandard2.0/MyCompanyDataModel.pdb b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Release/netstandard2.0/MyCompanyDataModel.pdb new file mode 100644 index 0000000..ed07e1b Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/bin/Release/netstandard2.0/MyCompanyDataModel.pdb differ diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/net45/MyCompanyDataModel.AssemblyInfo.cs b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/net45/MyCompanyDataModel.AssemblyInfo.cs new file mode 100644 index 0000000..36dc9fe --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/net45/MyCompanyDataModel.AssemblyInfo.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// 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("DEAGITAL")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © DEAGITAL 2016")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("MyCompanyDataModel")] +[assembly: System.Reflection.AssemblyTitleAttribute("MyCompanyDataModel")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/net45/MyCompanyDataModel.AssemblyInfoInputs.cache b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/net45/MyCompanyDataModel.AssemblyInfoInputs.cache new file mode 100644 index 0000000..36b5c33 --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/net45/MyCompanyDataModel.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +b3c36903835a18915b4d72b557ee030efb00f66f diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/net45/MyCompanyDataModel.assets.cache b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/net45/MyCompanyDataModel.assets.cache new file mode 100644 index 0000000..0e22688 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/net45/MyCompanyDataModel.assets.cache differ diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/net45/MyCompanyDataModel.csproj.CopyComplete b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/net45/MyCompanyDataModel.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/net45/MyCompanyDataModel.csproj.CoreCompileInputs.cache b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/net45/MyCompanyDataModel.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..5e5e894 --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/net45/MyCompanyDataModel.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +0c3db3b43728e4ae356fe008e7d5a9bf9439a9ad diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/net45/MyCompanyDataModel.csproj.FileListAbsolute.txt b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/net45/MyCompanyDataModel.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..30544ea --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/net45/MyCompanyDataModel.csproj.FileListAbsolute.txt @@ -0,0 +1,13 @@ +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\bin\Debug\net45\MyCompanyDataModel.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\bin\Debug\net45\MyCompanyDataModel.pdb +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\bin\Debug\net45\EPPlus.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\bin\Debug\net45\IngeniBridge.Core.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\bin\Debug\net45\JT.TechCases.Threading.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\bin\Debug\net45\Newtonsoft.Json.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\bin\Debug\net45\System.ValueTuple.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\obj\Debug\net45\MyCompanyDataModel.csproj.CoreCompileInputs.cache +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\obj\Debug\net45\MyCompanyDataModel.AssemblyInfoInputs.cache +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\obj\Debug\net45\MyCompanyDataModel.AssemblyInfo.cs +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\obj\Debug\net45\MyCompanyDataModel.csproj.CopyComplete +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\obj\Debug\net45\MyCompanyDataModel.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\obj\Debug\net45\MyCompanyDataModel.pdb diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/net45/MyCompanyDataModel.dll b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/net45/MyCompanyDataModel.dll new file mode 100644 index 0000000..7b18f38 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/net45/MyCompanyDataModel.dll differ diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/net45/MyCompanyDataModel.pdb b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/net45/MyCompanyDataModel.pdb new file mode 100644 index 0000000..60cefb1 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/net45/MyCompanyDataModel.pdb differ diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/net45/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/net45/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/net45/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/net45/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/net45/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/net45/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/netstandard2.0/MyCompanyDataModel.AssemblyInfo.cs b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/netstandard2.0/MyCompanyDataModel.AssemblyInfo.cs new file mode 100644 index 0000000..36dc9fe --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/netstandard2.0/MyCompanyDataModel.AssemblyInfo.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// 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("DEAGITAL")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © DEAGITAL 2016")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("MyCompanyDataModel")] +[assembly: System.Reflection.AssemblyTitleAttribute("MyCompanyDataModel")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/netstandard2.0/MyCompanyDataModel.AssemblyInfoInputs.cache b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/netstandard2.0/MyCompanyDataModel.AssemblyInfoInputs.cache new file mode 100644 index 0000000..36b5c33 --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/netstandard2.0/MyCompanyDataModel.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +b3c36903835a18915b4d72b557ee030efb00f66f diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/netstandard2.0/MyCompanyDataModel.assets.cache b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/netstandard2.0/MyCompanyDataModel.assets.cache new file mode 100644 index 0000000..2a34aee Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/netstandard2.0/MyCompanyDataModel.assets.cache differ diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/netstandard2.0/MyCompanyDataModel.csproj.CoreCompileInputs.cache b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/netstandard2.0/MyCompanyDataModel.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..fe65140 --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/netstandard2.0/MyCompanyDataModel.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +eceb36d5eb79cc0bf5e2d45dc00d194c62eaf867 diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/netstandard2.0/MyCompanyDataModel.csproj.FileListAbsolute.txt b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/netstandard2.0/MyCompanyDataModel.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..eb1730f --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/netstandard2.0/MyCompanyDataModel.csproj.FileListAbsolute.txt @@ -0,0 +1,9 @@ +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\bin\Debug\netstandard2.0\MyCompanyDataModel.deps.json +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\bin\Debug\netstandard2.0\MyCompanyDataModel.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\obj\Debug\netstandard2.0\MyCompanyDataModel.csprojAssemblyReference.cache +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\obj\Debug\netstandard2.0\MyCompanyDataModel.csproj.CoreCompileInputs.cache +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\obj\Debug\netstandard2.0\MyCompanyDataModel.AssemblyInfoInputs.cache +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\obj\Debug\netstandard2.0\MyCompanyDataModel.AssemblyInfo.cs +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\bin\Debug\netstandard2.0\MyCompanyDataModel.pdb +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\obj\Debug\netstandard2.0\MyCompanyDataModel.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\obj\Debug\netstandard2.0\MyCompanyDataModel.pdb diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/netstandard2.0/MyCompanyDataModel.csprojAssemblyReference.cache b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/netstandard2.0/MyCompanyDataModel.csprojAssemblyReference.cache new file mode 100644 index 0000000..29e9192 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/netstandard2.0/MyCompanyDataModel.csprojAssemblyReference.cache differ diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/netstandard2.0/MyCompanyDataModel.dll b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/netstandard2.0/MyCompanyDataModel.dll new file mode 100644 index 0000000..2ec4775 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/netstandard2.0/MyCompanyDataModel.dll differ diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/netstandard2.0/MyCompanyDataModel.pdb b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/netstandard2.0/MyCompanyDataModel.pdb new file mode 100644 index 0000000..8d208ed Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Debug/netstandard2.0/MyCompanyDataModel.pdb differ diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/MyCompanyDataModel.csproj.nuget.cache b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/MyCompanyDataModel.csproj.nuget.cache new file mode 100644 index 0000000..a9b7078 --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/MyCompanyDataModel.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "6h4GWJmUeEG2wOaAV4iYu1i6OpiHb/CmoNkv3WcXknDj69HDlKHXF/SPXBNySQWCFD5lk7sG+TBecuXfSAUSdw==", + "success": true +} \ No newline at end of file diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/MyCompanyDataModel.csproj.nuget.g.props b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/MyCompanyDataModel.csproj.nuget.g.props new file mode 100644 index 0000000..9e20948 --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/MyCompanyDataModel.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\obj\project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\joset\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 4.8.0 + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/MyCompanyDataModel.csproj.nuget.g.targets b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/MyCompanyDataModel.csproj.nuget.g.targets new file mode 100644 index 0000000..a5824de --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/MyCompanyDataModel.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + \ No newline at end of file diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/net45/MyCompanyDataModel.AssemblyInfo.cs b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/net45/MyCompanyDataModel.AssemblyInfo.cs new file mode 100644 index 0000000..9b194d0 --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/net45/MyCompanyDataModel.AssemblyInfo.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// 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("DEAGITAL")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © DEAGITAL 2016")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("MyCompanyDataModel")] +[assembly: System.Reflection.AssemblyTitleAttribute("MyCompanyDataModel")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/net45/MyCompanyDataModel.AssemblyInfoInputs.cache b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/net45/MyCompanyDataModel.AssemblyInfoInputs.cache new file mode 100644 index 0000000..80358c3 --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/net45/MyCompanyDataModel.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +6132d32d4a1da2499c3c1abdf27aee29c056b3be diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/net45/MyCompanyDataModel.assets.cache b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/net45/MyCompanyDataModel.assets.cache new file mode 100644 index 0000000..384ba76 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/net45/MyCompanyDataModel.assets.cache differ diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/net45/MyCompanyDataModel.csproj.CopyComplete b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/net45/MyCompanyDataModel.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/net45/MyCompanyDataModel.csproj.CoreCompileInputs.cache b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/net45/MyCompanyDataModel.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..5e5e894 --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/net45/MyCompanyDataModel.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +0c3db3b43728e4ae356fe008e7d5a9bf9439a9ad diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/net45/MyCompanyDataModel.csproj.FileListAbsolute.txt b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/net45/MyCompanyDataModel.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..d58fd7f --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/net45/MyCompanyDataModel.csproj.FileListAbsolute.txt @@ -0,0 +1,14 @@ +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\bin\Release\net45\MyCompanyDataModel.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\bin\Release\net45\MyCompanyDataModel.pdb +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\bin\Release\net45\EPPlus.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\bin\Release\net45\IngeniBridge.Core.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\bin\Release\net45\JT.TechCases.Threading.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\bin\Release\net45\Newtonsoft.Json.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\bin\Release\net45\System.ValueTuple.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\obj\Release\net45\MyCompanyDataModel.csprojAssemblyReference.cache +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\obj\Release\net45\MyCompanyDataModel.csproj.CoreCompileInputs.cache +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\obj\Release\net45\MyCompanyDataModel.AssemblyInfoInputs.cache +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\obj\Release\net45\MyCompanyDataModel.AssemblyInfo.cs +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\obj\Release\net45\MyCompanyDataModel.csproj.CopyComplete +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\obj\Release\net45\MyCompanyDataModel.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\obj\Release\net45\MyCompanyDataModel.pdb diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/net45/MyCompanyDataModel.csprojAssemblyReference.cache b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/net45/MyCompanyDataModel.csprojAssemblyReference.cache new file mode 100644 index 0000000..45e1885 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/net45/MyCompanyDataModel.csprojAssemblyReference.cache differ diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/net45/MyCompanyDataModel.dll b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/net45/MyCompanyDataModel.dll new file mode 100644 index 0000000..fca96bc Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/net45/MyCompanyDataModel.dll differ diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/net45/MyCompanyDataModel.pdb b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/net45/MyCompanyDataModel.pdb new file mode 100644 index 0000000..0d38628 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/net45/MyCompanyDataModel.pdb differ diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/net45/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/net45/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/net45/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/net45/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/net45/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/net45/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/netstandard2.0/MyCompanyDataModel.AssemblyInfo.cs b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/netstandard2.0/MyCompanyDataModel.AssemblyInfo.cs new file mode 100644 index 0000000..9b194d0 --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/netstandard2.0/MyCompanyDataModel.AssemblyInfo.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// 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("DEAGITAL")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © DEAGITAL 2016")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("MyCompanyDataModel")] +[assembly: System.Reflection.AssemblyTitleAttribute("MyCompanyDataModel")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/netstandard2.0/MyCompanyDataModel.AssemblyInfoInputs.cache b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/netstandard2.0/MyCompanyDataModel.AssemblyInfoInputs.cache new file mode 100644 index 0000000..80358c3 --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/netstandard2.0/MyCompanyDataModel.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +6132d32d4a1da2499c3c1abdf27aee29c056b3be diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/netstandard2.0/MyCompanyDataModel.assets.cache b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/netstandard2.0/MyCompanyDataModel.assets.cache new file mode 100644 index 0000000..8b1b5e4 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/netstandard2.0/MyCompanyDataModel.assets.cache differ diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/netstandard2.0/MyCompanyDataModel.csproj.CoreCompileInputs.cache b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/netstandard2.0/MyCompanyDataModel.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..fe65140 --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/netstandard2.0/MyCompanyDataModel.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +eceb36d5eb79cc0bf5e2d45dc00d194c62eaf867 diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/netstandard2.0/MyCompanyDataModel.csproj.FileListAbsolute.txt b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/netstandard2.0/MyCompanyDataModel.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..55899d4 --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/netstandard2.0/MyCompanyDataModel.csproj.FileListAbsolute.txt @@ -0,0 +1,9 @@ +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\bin\Release\netstandard2.0\MyCompanyDataModel.deps.json +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\bin\Release\netstandard2.0\MyCompanyDataModel.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\bin\Release\netstandard2.0\MyCompanyDataModel.pdb +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\obj\Release\netstandard2.0\MyCompanyDataModel.csprojAssemblyReference.cache +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\obj\Release\netstandard2.0\MyCompanyDataModel.csproj.CoreCompileInputs.cache +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\obj\Release\netstandard2.0\MyCompanyDataModel.AssemblyInfoInputs.cache +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\obj\Release\netstandard2.0\MyCompanyDataModel.AssemblyInfo.cs +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\obj\Release\netstandard2.0\MyCompanyDataModel.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.Sample.MyCompany\MyCompanyDataModel\obj\Release\netstandard2.0\MyCompanyDataModel.pdb diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/netstandard2.0/MyCompanyDataModel.csprojAssemblyReference.cache b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/netstandard2.0/MyCompanyDataModel.csprojAssemblyReference.cache new file mode 100644 index 0000000..29e9192 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/netstandard2.0/MyCompanyDataModel.csprojAssemblyReference.cache differ diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/netstandard2.0/MyCompanyDataModel.dll b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/netstandard2.0/MyCompanyDataModel.dll new file mode 100644 index 0000000..0666ab6 Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/netstandard2.0/MyCompanyDataModel.dll differ diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/netstandard2.0/MyCompanyDataModel.pdb b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/netstandard2.0/MyCompanyDataModel.pdb new file mode 100644 index 0000000..ed07e1b Binary files /dev/null and b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/Release/netstandard2.0/MyCompanyDataModel.pdb differ diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/project.assets.json b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/project.assets.json new file mode 100644 index 0000000..c986983 --- /dev/null +++ b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/obj/project.assets.json @@ -0,0 +1,4469 @@ +{ + "version": 3, + "targets": { + ".NETFramework,Version=v4.5": { + "EPPlus/4.5.2.1": { + "type": "package", + "frameworkAssemblies": [ + "PresentationCore", + "System", + "System.Core", + "System.Data", + "System.Drawing", + "System.Security", + "System.Xml", + "System.configuration" + ], + "compile": { + "lib/net40/EPPlus.dll": {} + }, + "runtime": { + "lib/net40/EPPlus.dll": {} + } + }, + "IngeniBridge.Core/1.0.37": { + "type": "package", + "dependencies": { + "JT.TechCases.Threading": "1.0.12", + "Newtonsoft.Json": "11.0.2", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/net45/IngeniBridge.Core.dll": {} + }, + "runtime": { + "lib/net45/IngeniBridge.Core.dll": {} + } + }, + "JT.TechCases.Threading/1.0.12": { + "type": "package", + "frameworkAssemblies": [ + "PresentationCore", + "PresentationFramework", + "System.Windows.Forms", + "WindowsBase" + ], + "compile": { + "lib/net45/JT.TechCases.Threading.dll": {} + }, + "runtime": { + "lib/net45/JT.TechCases.Threading.dll": {} + } + }, + "Newtonsoft.Json/11.0.2": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.ValueTuple/4.5.0": { + "type": "package", + "compile": { + "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + } + }, + ".NETStandard,Version=v2.0": { + "EPPlus/4.5.2.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Json": "2.0.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Data.Common": "4.3.0", + "System.Drawing.Common": "4.5.0", + "System.Reflection": "4.3.0", + "System.Security.Claims": "4.3.0", + "System.Security.Cryptography.Pkcs": "4.4.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding.CodePages": "4.4.0", + "System.Xml.XPath.XmlDocument": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "lib/netstandard2.0/EPPlus.dll": {} + }, + "runtime": { + "lib/netstandard2.0/EPPlus.dll": {} + } + }, + "IngeniBridge.Core/1.0.37": { + "type": "package", + "dependencies": { + "JT.TechCases.Threading": "1.0.12", + "Newtonsoft.Json": "11.0.2", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/IngeniBridge.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/IngeniBridge.Core.dll": {} + } + }, + "JT.TechCases.Threading/1.0.12": { + "type": "package", + "compile": { + "lib/netstandard2.0/JT.TechCases.Threading.dll": {} + }, + "runtime": { + "lib/netstandard2.0/JT.TechCases.Threading.dll": {} + } + }, + "Microsoft.Extensions.Configuration/2.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "2.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/2.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/2.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "2.0.0", + "Microsoft.Extensions.FileProviders.Physical": "2.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Json/2.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "2.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "2.0.0", + "Newtonsoft.Json": "10.0.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/2.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Physical/2.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "2.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "2.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {} + } + }, + "Microsoft.Extensions.FileSystemGlobbing/2.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} + } + }, + "Microsoft.Extensions.Primitives/2.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "4.4.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "NETStandard.Library/2.0.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + }, + "build": { + "build/netstandard2.0/NETStandard.Library.targets": {} + } + }, + "Newtonsoft.Json/11.0.2": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Data.Common/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Data.Common.dll": {} + }, + "runtime": { + "lib/netstandard1.2/System.Data.Common.dll": {} + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": {} + } + }, + "System.Drawing.Common/4.5.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Drawing.Common.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": {} + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + } + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/4.4.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": {} + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": {} + } + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Security.Principal": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtimeTargets": { + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "System.Security.Cryptography.Pkcs/4.4.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Security.Cryptography.Pkcs.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Principal/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Security.Principal.dll": {} + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.CodePages/4.4.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.ValueTuple/4.5.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XPath/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XPath.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.dll": {} + } + }, + "System.Xml.XPath.XmlDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XPath": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {} + } + } + } + }, + "libraries": { + "EPPlus/4.5.2.1": { + "sha512": "/OzYn/n982Ozu+ARWISjn9REIb3PA5KN8qPfp3JKOoSnBezN3loGCQ2k0nLNL5K8+b+3boinsNiRbm5ovEfeog==", + "type": "package", + "path": "epplus/4.5.2.1", + "files": [ + "epplus.4.5.2.1.nupkg.sha512", + "epplus.nuspec", + "lib/net35/EPPlus.dll", + "lib/net35/EPPlus.xml", + "lib/net40/EPPlus.dll", + "lib/net40/EPPlus.xml", + "lib/netstandard2.0/EPPlus.dll", + "lib/netstandard2.0/EPPlus.xml", + "readme.txt" + ] + }, + "IngeniBridge.Core/1.0.37": { + "sha512": "V5zIao9IGH9F10UDOMN1oubR0uubmDxY2z50BtiCXUj61lOMiGnpYRrLqeUKcjNQesL9Repvwi7YW1bQ4bMtNg==", + "type": "package", + "path": "ingenibridge.core/1.0.37", + "files": [ + ".signature.p7s", + "ingenibridge.core.1.0.37.nupkg.sha512", + "ingenibridge.core.nuspec", + "lib/net45/IngeniBridge.Core.dll", + "lib/netstandard2.0/IngeniBridge.Core.dll" + ] + }, + "JT.TechCases.Threading/1.0.12": { + "sha512": "P5/D3riDQc/cqnIMekNh7f1RVscDTq8wVI1dXQh9453BmF+7fTnNSzT3HiKcrbcO7DDugNPS9CUJFVz9xrE0cw==", + "type": "package", + "path": "jt.techcases.threading/1.0.12", + "files": [ + ".signature.p7s", + "jt.techcases.threading.1.0.12.nupkg.sha512", + "jt.techcases.threading.nuspec", + "lib/net40/JT.TechCases.Threading.dll", + "lib/net45/JT.TechCases.Threading.dll", + "lib/netstandard2.0/JT.TechCases.Threading.dll" + ] + }, + "Microsoft.Extensions.Configuration/2.0.0": { + "sha512": "SsI4RqI8EH00+cYO96tbftlh87sNUv1eeyuBU1XZdQkG0RrHAOjWgl7P0FoLeTSMXJpOnfweeOWj2d1/5H3FxA==", + "type": "package", + "path": "microsoft.extensions.configuration/2.0.0", + "files": [ + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", + "microsoft.extensions.configuration.2.0.0.nupkg.sha512", + "microsoft.extensions.configuration.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/2.0.0": { + "sha512": "rHFrXqMIvQNq51H8RYTO4IWmDOYh8NUzyqGlh0xHWTP6XYnKk7Ryinys2uDs+Vu88b3AMlM3gBBSs78m6OQpYQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/2.0.0", + "files": [ + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.2.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.FileExtensions/2.0.0": { + "sha512": "ebFbu+vsz4rzeAICWavk9a0FutWVs7aNZap5k/IVxVhu2CnnhOp/H/gNtpzplrqjYDaNYdmv9a/DoUvH2ynVEQ==", + "type": "package", + "path": "microsoft.extensions.configuration.fileextensions/2.0.0", + "files": [ + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "microsoft.extensions.configuration.fileextensions.2.0.0.nupkg.sha512", + "microsoft.extensions.configuration.fileextensions.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.Json/2.0.0": { + "sha512": "thPz4SckRGNqeLbdvJ619YxRFSkWuL1K5QqTMb3TVdEwjQj4O39yfUtjtI/XlWJiY7JKK4MUKAiQZVYc8ohKKg==", + "type": "package", + "path": "microsoft.extensions.configuration.json/2.0.0", + "files": [ + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml", + "microsoft.extensions.configuration.json.2.0.0.nupkg.sha512", + "microsoft.extensions.configuration.json.nuspec" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/2.0.0": { + "sha512": "Z0AK+hmLO33WAXQ5P1uPzhH7z5yjDHX/XnUefXxE//SyvCb9x4cVjND24dT5566t/yzGp8/WLD7EG9KQKZZklQ==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/2.0.0", + "files": [ + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.2.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.FileProviders.Physical/2.0.0": { + "sha512": "DKO2j2socZbHNCCVEWsLVpB3AQIIzKYFNyITVeWdA1jQ829GJIQf4MUD04+1c+Q2kbK03pIKQZmEy4CGIfgDZw==", + "type": "package", + "path": "microsoft.extensions.fileproviders.physical/2.0.0", + "files": [ + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml", + "microsoft.extensions.fileproviders.physical.2.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.physical.nuspec" + ] + }, + "Microsoft.Extensions.FileSystemGlobbing/2.0.0": { + "sha512": "UC87vRDUB7/vSaNY/FVhbdAyRkfFBTkYmcUoglxk6TyTojhSqYaG5pZsoP4e1ZuXktFXJXJBTvK8U/QwCo0z3g==", + "type": "package", + "path": "microsoft.extensions.filesystemglobbing/2.0.0", + "files": [ + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "microsoft.extensions.filesystemglobbing.2.0.0.nupkg.sha512", + "microsoft.extensions.filesystemglobbing.nuspec" + ] + }, + "Microsoft.Extensions.Primitives/2.0.0": { + "sha512": "ukg53qNlqTrK38WA30b5qhw0GD7y3jdI9PHHASjdKyTcBHTevFM2o23tyk3pWCgAV27Bbkm+CPQ2zUe1ZOuYSA==", + "type": "package", + "path": "microsoft.extensions.primitives/2.0.0", + "files": [ + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.2.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "type": "package", + "path": "microsoft.netcore.platforms/1.1.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "NETStandard.Library/2.0.3": { + "sha512": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==", + "type": "package", + "path": "netstandard.library/2.0.3", + "files": [ + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "build/netstandard2.0/NETStandard.Library.targets", + "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll", + "build/netstandard2.0/ref/System.AppContext.dll", + "build/netstandard2.0/ref/System.Collections.Concurrent.dll", + "build/netstandard2.0/ref/System.Collections.NonGeneric.dll", + "build/netstandard2.0/ref/System.Collections.Specialized.dll", + "build/netstandard2.0/ref/System.Collections.dll", + "build/netstandard2.0/ref/System.ComponentModel.Composition.dll", + "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll", + "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll", + "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll", + "build/netstandard2.0/ref/System.ComponentModel.dll", + "build/netstandard2.0/ref/System.Console.dll", + "build/netstandard2.0/ref/System.Core.dll", + "build/netstandard2.0/ref/System.Data.Common.dll", + "build/netstandard2.0/ref/System.Data.dll", + "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll", + "build/netstandard2.0/ref/System.Diagnostics.Debug.dll", + "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll", + "build/netstandard2.0/ref/System.Diagnostics.Process.dll", + "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll", + "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll", + "build/netstandard2.0/ref/System.Diagnostics.Tools.dll", + "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll", + "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll", + "build/netstandard2.0/ref/System.Drawing.Primitives.dll", + "build/netstandard2.0/ref/System.Drawing.dll", + "build/netstandard2.0/ref/System.Dynamic.Runtime.dll", + "build/netstandard2.0/ref/System.Globalization.Calendars.dll", + "build/netstandard2.0/ref/System.Globalization.Extensions.dll", + "build/netstandard2.0/ref/System.Globalization.dll", + "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll", + "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll", + "build/netstandard2.0/ref/System.IO.Compression.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.dll", + "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll", + "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll", + "build/netstandard2.0/ref/System.IO.Pipes.dll", + "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll", + "build/netstandard2.0/ref/System.IO.dll", + "build/netstandard2.0/ref/System.Linq.Expressions.dll", + "build/netstandard2.0/ref/System.Linq.Parallel.dll", + "build/netstandard2.0/ref/System.Linq.Queryable.dll", + "build/netstandard2.0/ref/System.Linq.dll", + "build/netstandard2.0/ref/System.Net.Http.dll", + "build/netstandard2.0/ref/System.Net.NameResolution.dll", + "build/netstandard2.0/ref/System.Net.NetworkInformation.dll", + "build/netstandard2.0/ref/System.Net.Ping.dll", + "build/netstandard2.0/ref/System.Net.Primitives.dll", + "build/netstandard2.0/ref/System.Net.Requests.dll", + "build/netstandard2.0/ref/System.Net.Security.dll", + "build/netstandard2.0/ref/System.Net.Sockets.dll", + "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll", + "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll", + "build/netstandard2.0/ref/System.Net.WebSockets.dll", + "build/netstandard2.0/ref/System.Net.dll", + "build/netstandard2.0/ref/System.Numerics.dll", + "build/netstandard2.0/ref/System.ObjectModel.dll", + "build/netstandard2.0/ref/System.Reflection.Extensions.dll", + "build/netstandard2.0/ref/System.Reflection.Primitives.dll", + "build/netstandard2.0/ref/System.Reflection.dll", + "build/netstandard2.0/ref/System.Resources.Reader.dll", + "build/netstandard2.0/ref/System.Resources.ResourceManager.dll", + "build/netstandard2.0/ref/System.Resources.Writer.dll", + "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll", + "build/netstandard2.0/ref/System.Runtime.Extensions.dll", + "build/netstandard2.0/ref/System.Runtime.Handles.dll", + "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll", + "build/netstandard2.0/ref/System.Runtime.InteropServices.dll", + "build/netstandard2.0/ref/System.Runtime.Numerics.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.dll", + "build/netstandard2.0/ref/System.Runtime.dll", + "build/netstandard2.0/ref/System.Security.Claims.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll", + "build/netstandard2.0/ref/System.Security.Principal.dll", + "build/netstandard2.0/ref/System.Security.SecureString.dll", + "build/netstandard2.0/ref/System.ServiceModel.Web.dll", + "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll", + "build/netstandard2.0/ref/System.Text.Encoding.dll", + "build/netstandard2.0/ref/System.Text.RegularExpressions.dll", + "build/netstandard2.0/ref/System.Threading.Overlapped.dll", + "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll", + "build/netstandard2.0/ref/System.Threading.Tasks.dll", + "build/netstandard2.0/ref/System.Threading.Thread.dll", + "build/netstandard2.0/ref/System.Threading.ThreadPool.dll", + "build/netstandard2.0/ref/System.Threading.Timer.dll", + "build/netstandard2.0/ref/System.Threading.dll", + "build/netstandard2.0/ref/System.Transactions.dll", + "build/netstandard2.0/ref/System.ValueTuple.dll", + "build/netstandard2.0/ref/System.Web.dll", + "build/netstandard2.0/ref/System.Windows.dll", + "build/netstandard2.0/ref/System.Xml.Linq.dll", + "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll", + "build/netstandard2.0/ref/System.Xml.Serialization.dll", + "build/netstandard2.0/ref/System.Xml.XDocument.dll", + "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll", + "build/netstandard2.0/ref/System.Xml.XPath.dll", + "build/netstandard2.0/ref/System.Xml.XmlDocument.dll", + "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll", + "build/netstandard2.0/ref/System.Xml.dll", + "build/netstandard2.0/ref/System.dll", + "build/netstandard2.0/ref/mscorlib.dll", + "build/netstandard2.0/ref/netstandard.dll", + "build/netstandard2.0/ref/netstandard.xml", + "lib/netstandard1.0/_._", + "netstandard.library.2.0.3.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "Newtonsoft.Json/11.0.2": { + "sha512": "IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==", + "type": "package", + "path": "newtonsoft.json/11.0.2", + "files": [ + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml", + "newtonsoft.json.11.0.2.nupkg.sha512", + "newtonsoft.json.nuspec" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "runtime.native.System.Net.Http/4.3.0": { + "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "type": "package", + "path": "runtime.native.system.net.http/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.http.4.3.0.nupkg.sha512", + "runtime.native.system.net.http.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "type": "package", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.apple.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.3.0": { + "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "type": "package", + "path": "system.collections.concurrent/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.3.0.nupkg.sha512", + "system.collections.concurrent.nuspec" + ] + }, + "System.Collections.NonGeneric/4.3.0": { + "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "type": "package", + "path": "system.collections.nongeneric/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/netstandard1.3/System.Collections.NonGeneric.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.nongeneric.4.3.0.nupkg.sha512", + "system.collections.nongeneric.nuspec" + ] + }, + "System.Collections.Specialized/4.3.0": { + "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "type": "package", + "path": "system.collections.specialized/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.Specialized.dll", + "lib/netstandard1.3/System.Collections.Specialized.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.xml", + "ref/netstandard1.3/de/System.Collections.Specialized.xml", + "ref/netstandard1.3/es/System.Collections.Specialized.xml", + "ref/netstandard1.3/fr/System.Collections.Specialized.xml", + "ref/netstandard1.3/it/System.Collections.Specialized.xml", + "ref/netstandard1.3/ja/System.Collections.Specialized.xml", + "ref/netstandard1.3/ko/System.Collections.Specialized.xml", + "ref/netstandard1.3/ru/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.specialized.4.3.0.nupkg.sha512", + "system.collections.specialized.nuspec" + ] + }, + "System.ComponentModel/4.3.0": { + "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "type": "package", + "path": "system.componentmodel/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/netstandard1.3/System.ComponentModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/netcore50/de/System.ComponentModel.xml", + "ref/netcore50/es/System.ComponentModel.xml", + "ref/netcore50/fr/System.ComponentModel.xml", + "ref/netcore50/it/System.ComponentModel.xml", + "ref/netcore50/ja/System.ComponentModel.xml", + "ref/netcore50/ko/System.ComponentModel.xml", + "ref/netcore50/ru/System.ComponentModel.xml", + "ref/netcore50/zh-hans/System.ComponentModel.xml", + "ref/netcore50/zh-hant/System.ComponentModel.xml", + "ref/netstandard1.0/System.ComponentModel.dll", + "ref/netstandard1.0/System.ComponentModel.xml", + "ref/netstandard1.0/de/System.ComponentModel.xml", + "ref/netstandard1.0/es/System.ComponentModel.xml", + "ref/netstandard1.0/fr/System.ComponentModel.xml", + "ref/netstandard1.0/it/System.ComponentModel.xml", + "ref/netstandard1.0/ja/System.ComponentModel.xml", + "ref/netstandard1.0/ko/System.ComponentModel.xml", + "ref/netstandard1.0/ru/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.4.3.0.nupkg.sha512", + "system.componentmodel.nuspec" + ] + }, + "System.ComponentModel.Primitives/4.3.0": { + "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "type": "package", + "path": "system.componentmodel.primitives/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.Primitives.dll", + "lib/netstandard1.0/System.ComponentModel.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.primitives.4.3.0.nupkg.sha512", + "system.componentmodel.primitives.nuspec" + ] + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "type": "package", + "path": "system.componentmodel.typeconverter/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.TypeConverter.dll", + "lib/net462/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.TypeConverter.dll", + "ref/net462/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "system.componentmodel.typeconverter.nuspec" + ] + }, + "System.Data.Common/4.3.0": { + "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "type": "package", + "path": "system.data.common/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/System.Data.Common.dll", + "lib/netstandard1.2/System.Data.Common.dll", + "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/System.Data.Common.dll", + "ref/netstandard1.2/System.Data.Common.dll", + "ref/netstandard1.2/System.Data.Common.xml", + "ref/netstandard1.2/de/System.Data.Common.xml", + "ref/netstandard1.2/es/System.Data.Common.xml", + "ref/netstandard1.2/fr/System.Data.Common.xml", + "ref/netstandard1.2/it/System.Data.Common.xml", + "ref/netstandard1.2/ja/System.Data.Common.xml", + "ref/netstandard1.2/ko/System.Data.Common.xml", + "ref/netstandard1.2/ru/System.Data.Common.xml", + "ref/netstandard1.2/zh-hans/System.Data.Common.xml", + "ref/netstandard1.2/zh-hant/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll", + "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.data.common.4.3.0.nupkg.sha512", + "system.data.common.nuspec" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "type": "package", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.3.0": { + "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "type": "package", + "path": "system.diagnostics.tracing/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.3.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.Drawing.Common/4.5.0": { + "sha512": "LLI+GGolsv4K8Eu2PN5N3/1t4pM5zoU4fM3lWhSOawJuCjv9iQJJODjd4/QJIgpjlqxzQDMMoOjAaVuzrNJT0g==", + "type": "package", + "path": "system.drawing.common/4.5.0", + "files": [ + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Drawing.Common.dll", + "ref/netstandard2.0/System.Drawing.Common.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", + "system.drawing.common.4.5.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.3.0": { + "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.FileSystem/4.3.0": { + "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "type": "package", + "path": "system.io.filesystem/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.3.0.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Extensions/4.3.0": { + "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "type": "package", + "path": "system.reflection.extensions/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.extensions.4.3.0.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.3.0": { + "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "type": "package", + "path": "system.reflection.typeextensions/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net462/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net462/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.3.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.CompilerServices.Unsafe/4.4.0": { + "sha512": "9dLLuBxr5GNmOfl2jSMcsHuteEg32BEfUotmmUkmZjpR3RpVHE8YQwt0ow3p6prwA1ME8WqDVZqrr8z6H8G+Kw==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/4.4.0", + "files": [ + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.4.4.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.Numerics/4.3.0": { + "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "type": "package", + "path": "system.runtime.numerics/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.3.0.nupkg.sha512", + "system.runtime.numerics.nuspec" + ] + }, + "System.Security.Claims/4.3.0": { + "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==", + "type": "package", + "path": "system.security.claims/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Claims.dll", + "lib/netstandard1.3/System.Security.Claims.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.xml", + "ref/netstandard1.3/de/System.Security.Claims.xml", + "ref/netstandard1.3/es/System.Security.Claims.xml", + "ref/netstandard1.3/fr/System.Security.Claims.xml", + "ref/netstandard1.3/it/System.Security.Claims.xml", + "ref/netstandard1.3/ja/System.Security.Claims.xml", + "ref/netstandard1.3/ko/System.Security.Claims.xml", + "ref/netstandard1.3/ru/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hans/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hant/System.Security.Claims.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.claims.4.3.0.nupkg.sha512", + "system.security.claims.nuspec" + ] + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.3.0": { + "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "type": "package", + "path": "system.security.cryptography.cng/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net463/System.Security.Cryptography.Cng.dll", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net463/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "system.security.cryptography.cng.4.3.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec" + ] + }, + "System.Security.Cryptography.Csp/4.3.0": { + "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "type": "package", + "path": "system.security.cryptography.csp/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "system.security.cryptography.csp.4.3.0.nupkg.sha512", + "system.security.cryptography.csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "type": "package", + "path": "system.security.cryptography.openssl/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "system.security.cryptography.openssl.nuspec" + ] + }, + "System.Security.Cryptography.Pkcs/4.4.0": { + "sha512": "pC4ieF0mAVufKNfFYXvtpAkIUBgyAZgLrzDw/bwWDfdqN8H/8m3IqiiMr7cmoWYDFsWwxVTbYDhDzPpiHcxvaA==", + "type": "package", + "path": "system.security.cryptography.pkcs/4.4.0", + "files": [ + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Cryptography.Pkcs.dll", + "lib/net461/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "ref/net46/System.Security.Cryptography.Pkcs.dll", + "ref/net461/System.Security.Cryptography.Pkcs.dll", + "ref/net461/System.Security.Cryptography.Pkcs.xml", + "ref/netstandard1.3/System.Security.Cryptography.Pkcs.dll", + "ref/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "ref/netstandard2.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net46/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "system.security.cryptography.pkcs.4.4.0.nupkg.sha512", + "system.security.cryptography.pkcs.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "type": "package", + "path": "system.security.cryptography.primitives/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Principal/4.3.0": { + "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==", + "type": "package", + "path": "system.security.principal/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/netstandard1.0/System.Security.Principal.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/netcore50/de/System.Security.Principal.xml", + "ref/netcore50/es/System.Security.Principal.xml", + "ref/netcore50/fr/System.Security.Principal.xml", + "ref/netcore50/it/System.Security.Principal.xml", + "ref/netcore50/ja/System.Security.Principal.xml", + "ref/netcore50/ko/System.Security.Principal.xml", + "ref/netcore50/ru/System.Security.Principal.xml", + "ref/netcore50/zh-hans/System.Security.Principal.xml", + "ref/netcore50/zh-hant/System.Security.Principal.xml", + "ref/netstandard1.0/System.Security.Principal.dll", + "ref/netstandard1.0/System.Security.Principal.xml", + "ref/netstandard1.0/de/System.Security.Principal.xml", + "ref/netstandard1.0/es/System.Security.Principal.xml", + "ref/netstandard1.0/fr/System.Security.Principal.xml", + "ref/netstandard1.0/it/System.Security.Principal.xml", + "ref/netstandard1.0/ja/System.Security.Principal.xml", + "ref/netstandard1.0/ko/System.Security.Principal.xml", + "ref/netstandard1.0/ru/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hans/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hant/System.Security.Principal.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.principal.4.3.0.nupkg.sha512", + "system.security.principal.nuspec" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.CodePages/4.4.0": { + "sha512": "6JX7ZdaceBiLKLkYt8zJcp4xTJd1uYyXXEkPw6mnlUIjh1gZPIVKPtRXPmY5kLf6DwZmf5YLwR3QUrRonl7l0A==", + "type": "package", + "path": "system.text.encoding.codepages/4.4.0", + "files": [ + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.dll", + "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.3/System.Text.Encoding.CodePages.dll", + "ref/netstandard1.3/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml", + "ref/netstandard2.0/System.Text.Encoding.CodePages.dll", + "ref/netstandard2.0/System.Text.Encoding.CodePages.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "system.text.encoding.codepages.4.4.0.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding.Extensions/4.3.0": { + "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "type": "package", + "path": "system.text.encoding.extensions/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.3.0.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.3.0": { + "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "type": "package", + "path": "system.text.regularexpressions/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", + "type": "package", + "path": "system.threading.tasks.extensions/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "system.threading.tasks.extensions.4.3.0.nupkg.sha512", + "system.threading.tasks.extensions.nuspec" + ] + }, + "System.ValueTuple/4.5.0": { + "sha512": "xZtSZNEHGa+tGsKuP4sh257vxJ/yemShz4EusmomkynMzuEDDjVaErBNewpzEF6swUgbcrSQAX3ELsEp1zCOwA==", + "type": "package", + "path": "system.valuetuple/4.5.0", + "files": [ + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.ValueTuple.dll", + "lib/net461/System.ValueTuple.xml", + "lib/net47/System.ValueTuple.dll", + "lib/net47/System.ValueTuple.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.ValueTuple.dll", + "lib/netstandard1.0/System.ValueTuple.xml", + "lib/netstandard2.0/_._", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.ValueTuple.dll", + "ref/net47/System.ValueTuple.dll", + "ref/netcoreapp2.0/_._", + "ref/netstandard2.0/_._", + "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.valuetuple.4.5.0.nupkg.sha512", + "system.valuetuple.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Xml.ReaderWriter/4.3.0": { + "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "type": "package", + "path": "system.xml.readerwriter/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.3.0.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XmlDocument/4.3.0": { + "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "type": "package", + "path": "system.xml.xmldocument/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xmldocument.4.3.0.nupkg.sha512", + "system.xml.xmldocument.nuspec" + ] + }, + "System.Xml.XPath/4.3.0": { + "sha512": "v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", + "type": "package", + "path": "system.xml.xpath/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XPath.dll", + "lib/netstandard1.3/System.Xml.XPath.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XPath.dll", + "ref/netstandard1.3/System.Xml.XPath.dll", + "ref/netstandard1.3/System.Xml.XPath.xml", + "ref/netstandard1.3/de/System.Xml.XPath.xml", + "ref/netstandard1.3/es/System.Xml.XPath.xml", + "ref/netstandard1.3/fr/System.Xml.XPath.xml", + "ref/netstandard1.3/it/System.Xml.XPath.xml", + "ref/netstandard1.3/ja/System.Xml.XPath.xml", + "ref/netstandard1.3/ko/System.Xml.XPath.xml", + "ref/netstandard1.3/ru/System.Xml.XPath.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xpath.4.3.0.nupkg.sha512", + "system.xml.xpath.nuspec" + ] + }, + "System.Xml.XPath.XmlDocument/4.3.0": { + "sha512": "A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==", + "type": "package", + "path": "system.xml.xpath.xmldocument/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XPath.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XPath.XmlDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xpath.xmldocument.4.3.0.nupkg.sha512", + "system.xml.xpath.xmldocument.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + ".NETFramework,Version=v4.5": [ + "EPPlus >= 4.5.2.1", + "IngeniBridge.Core >= 1.0.37", + "System.ValueTuple >= 4.5.0" + ], + ".NETStandard,Version=v2.0": [ + "EPPlus >= 4.5.2.1", + "IngeniBridge.Core >= 1.0.37", + "NETStandard.Library >= 2.0.3", + "System.ValueTuple >= 4.5.0" + ] + }, + "packageFolders": { + "C:\\Users\\joset\\.nuget\\packages\\": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\joset\\repos_github\\IngeniBridge\\IngeniBridge.Sample.MyCompany\\MyCompanyDataModel\\MyCompanyDataModel.csproj", + "projectName": "MyCompanyDataModel", + "projectPath": "C:\\Users\\joset\\repos_github\\IngeniBridge\\IngeniBridge.Sample.MyCompany\\MyCompanyDataModel\\MyCompanyDataModel.csproj", + "packagesPath": "C:\\Users\\joset\\.nuget\\packages\\", + "outputPath": "C:\\Users\\joset\\repos_github\\IngeniBridge\\IngeniBridge.Sample.MyCompany\\MyCompanyDataModel\\obj\\", + "projectStyle": "PackageReference", + "crossTargeting": true, + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\joset\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net45", + "netstandard2.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net45": { + "projectReferences": {} + }, + "netstandard2.0": { + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net45": { + "dependencies": { + "EPPlus": { + "target": "Package", + "version": "[4.5.2.1, )" + }, + "IngeniBridge.Core": { + "target": "Package", + "version": "[1.0.37, )" + }, + "System.ValueTuple": { + "target": "Package", + "version": "[4.5.0, )" + } + } + }, + "netstandard2.0": { + "dependencies": { + "EPPlus": { + "target": "Package", + "version": "[4.5.2.1, )" + }, + "IngeniBridge.Core": { + "target": "Package", + "version": "[1.0.37, )" + }, + "NETStandard.Library": { + "suppressParent": "All", + "target": "Package", + "version": "[2.0.3, )", + "autoReferenced": true + }, + "System.ValueTuple": { + "target": "Package", + "version": "[4.5.0, )" + } + }, + "imports": [ + "net461" + ], + "assetTargetFallback": true, + "warn": true + } + } + } +} \ No newline at end of file diff --git a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/packages.config b/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/packages.config deleted file mode 100644 index cf736cc..0000000 --- a/IngeniBridge.Sample.MyCompany/MyCompanyDataModel/packages.config +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/.vs/IngeniBridge.TestServer/DesignTimeBuild/.dtbcache b/IngeniBridge.TestServer/IngeniBridge.TestServer/.vs/IngeniBridge.TestServer/DesignTimeBuild/.dtbcache index b31e459..ecac40e 100644 Binary files a/IngeniBridge.TestServer/IngeniBridge.TestServer/.vs/IngeniBridge.TestServer/DesignTimeBuild/.dtbcache and b/IngeniBridge.TestServer/IngeniBridge.TestServer/.vs/IngeniBridge.TestServer/DesignTimeBuild/.dtbcache differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/.vs/IngeniBridge.TestServer/v15/.suo b/IngeniBridge.TestServer/IngeniBridge.TestServer/.vs/IngeniBridge.TestServer/v15/.suo index a390bf0..ddb6f03 100644 Binary files a/IngeniBridge.TestServer/IngeniBridge.TestServer/.vs/IngeniBridge.TestServer/v15/.suo and b/IngeniBridge.TestServer/IngeniBridge.TestServer/.vs/IngeniBridge.TestServer/v15/.suo differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/.vs/IngeniBridge.TestServer/v15/Server/sqlite3/storage.ide b/IngeniBridge.TestServer/IngeniBridge.TestServer/.vs/IngeniBridge.TestServer/v15/Server/sqlite3/storage.ide index a5bc340..39123d3 100644 Binary files a/IngeniBridge.TestServer/IngeniBridge.TestServer/.vs/IngeniBridge.TestServer/v15/Server/sqlite3/storage.ide and b/IngeniBridge.TestServer/IngeniBridge.TestServer/.vs/IngeniBridge.TestServer/v15/Server/sqlite3/storage.ide differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/.vs/IngeniBridge.TestServer/v15/Server/sqlite3/storage.ide-shm b/IngeniBridge.TestServer/IngeniBridge.TestServer/.vs/IngeniBridge.TestServer/v15/Server/sqlite3/storage.ide-shm index 694a440..fe9ac28 100644 Binary files a/IngeniBridge.TestServer/IngeniBridge.TestServer/.vs/IngeniBridge.TestServer/v15/Server/sqlite3/storage.ide-shm and b/IngeniBridge.TestServer/IngeniBridge.TestServer/.vs/IngeniBridge.TestServer/v15/Server/sqlite3/storage.ide-shm differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/.vs/IngeniBridge.TestServer/v15/Server/sqlite3/storage.ide-wal b/IngeniBridge.TestServer/IngeniBridge.TestServer/.vs/IngeniBridge.TestServer/v15/Server/sqlite3/storage.ide-wal index e0d9dde..e69de29 100644 Binary files a/IngeniBridge.TestServer/IngeniBridge.TestServer/.vs/IngeniBridge.TestServer/v15/Server/sqlite3/storage.ide-wal and b/IngeniBridge.TestServer/IngeniBridge.TestServer/.vs/IngeniBridge.TestServer/v15/Server/sqlite3/storage.ide-wal differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/CorrelationInfluenceZone.cs b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/CorrelationInfluenceZone.cs index 58e76ba..4176463 100644 --- a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/CorrelationInfluenceZone.cs +++ b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/CorrelationInfluenceZone.cs @@ -27,7 +27,7 @@ public static void Launch ( HttpClient client, string buf ) Program.log.Info ( "CorrelationInfluenceZoneBusinessUseCase ==============================" ); Task response = client.GetAsync ( Program.url + "/DataModel" ); byte [ ] buffer = response.Result.Content.ReadAsByteArrayAsync ().Result; - Assembly DataModelAssembly = StorageAccessor.RebuildDataModel ( buffer ); + Assembly DataModelAssembly = IngeniBridge.Core.Storage.StorageAccessor.RebuildDataModel ( buffer ); MetaHelper helper = new MetaHelper ( DataModelAssembly ); EntityContentHelper contenthelper = new EntityContentHelper ( helper ); ContextedData cd = ContextedAssetSerializer.DeserializeContextedDatasFromString ( buf ) [ 0 ]; // here get the first and unique data returned by the request : TimedData.TimedDataExternalReference=EXTREF 004 diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer.csproj b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer.csproj index 032f323..20b41e4 100644 --- a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer.csproj +++ b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer.csproj @@ -1,96 +1,29 @@ - - - + + - Debug - AnyCPU - {DD979C2D-57F6-47E9-A5F2-164668EF8657} + net45 + IngeniBridge.TestServer + 1.0.0 + JTO Tec + Copyright © DEAGITAL 2016 + + DEAGITAL Exe - Properties - IngeniBridge.TestServer - IngeniBridge.TestServer - v4.6.1 - 512 - true - - - AnyCPU - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - false - - - AnyCPU - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - false - - - - ..\packages\EPPlus.4.5.2.1\lib\net40\EPPlus.dll - - - ..\packages\IngeniBridge.BuildUtils.1.0.5\lib\net461\IngeniBridge.BuildUtils.dll - - - ..\packages\IngeniBridge.Core.1.0.36\lib\net461\IngeniBridge.Core.dll - - - ..\packages\JT.TechCases.Threading.1.0.11\lib\net45\JT.TechCases.Threading.dll - - - ..\packages\log4net.2.0.8\lib\net45-full\log4net.dll - True - - - ..\packages\Newtonsoft.Json.11.0.2\lib\net45\Newtonsoft.Json.dll - True - - - - - - - - - - ..\packages\System.ValueTuple.4.5.0\lib\net461\System.ValueTuple.dll - - - - - - - - + + - - - - - - + + + + + + + - - - - - - - \ No newline at end of file + + + NET45;NETFULL + + + diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/MethodMapping.cs b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/MethodMapping.cs index 70827ec..7a289d1 100644 --- a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/MethodMapping.cs +++ b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/MethodMapping.cs @@ -27,7 +27,7 @@ public static void Launch ( HttpClient client, string buf ) Program.log.Info ( "MethodMapping ==============================" ); Task response = client.GetAsync ( Program.url + "/DataModel" ); byte [ ] buffer = response.Result.Content.ReadAsByteArrayAsync ().Result; - Assembly DataModelAssembly = StorageAccessor.RebuildDataModel ( buffer ); + Assembly DataModelAssembly = Core.Storage.StorageAccessor.RebuildDataModel ( buffer ); MetaHelper helper = new MetaHelper ( DataModelAssembly ); EntityContentHelper contenthelper = new EntityContentHelper ( helper ); ContextedData [ ] cds = ContextedAssetSerializer.DeserializeContextedDatasFromString ( buf ); diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/Program.cs b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/Program.cs index 32f1fe9..758b8d6 100644 --- a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/Program.cs +++ b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/Program.cs @@ -6,11 +6,13 @@ using IngeniBridge.Core.StagingData; using IngeniBridge.Core.Storage; using log4net; +using log4net.Config; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Diagnostics; +using System.IO; using System.Linq; using System.Net.Http; using System.Net.Http.Headers; @@ -26,7 +28,7 @@ class Program public static string url = "https://cloud.ingenibridge.com/PublicDemo/Deagital/"; static int Main ( string [] args ) { - log4net.Config.XmlConfigurator.Configure (); + XmlConfigurator.Configure ( LogManager.GetRepository ( Assembly.GetEntryAssembly () ), new FileInfo ( "log4net.config" ) ); int ret = 0; try { diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/Properties/AssemblyInfo.cs b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/Properties/AssemblyInfo.cs deleted file mode 100644 index 7e4af99..0000000 --- a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle ( "IngeniBridge.TestServer" )] -[assembly: AssemblyDescription ( "" )] -[assembly: AssemblyConfiguration ( "" )] -[assembly: AssemblyCompany ( "" )] -[assembly: AssemblyProduct ( "IngeniBridge.TestServer" )] -[assembly: AssemblyCopyright ( "Copyright © 2017" )] -[assembly: AssemblyTrademark ( "" )] -[assembly: AssemblyCulture ( "" )] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible ( false )] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid ( "dd979c2d-57f6-47e9-a5f2-164668ef8657" )] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion ( "1.0.0.0" )] -[assembly: AssemblyFileVersion ( "1.0.0.0" )] diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/CommandLine.dll b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/CommandLine.dll new file mode 100644 index 0000000..618ed3d Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/CommandLine.dll differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/EPPlus.dll b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/EPPlus.dll new file mode 100644 index 0000000..84afe50 Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/EPPlus.dll differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/IngeniBridge.BuildUtils.dll b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/IngeniBridge.BuildUtils.dll new file mode 100644 index 0000000..6587533 Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/IngeniBridge.BuildUtils.dll differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/IngeniBridge.Core.dll b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/IngeniBridge.Core.dll new file mode 100644 index 0000000..178fbee Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/IngeniBridge.Core.dll differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/IngeniBridge.StorageAccessor.InMemory.dll b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/IngeniBridge.StorageAccessor.InMemory.dll new file mode 100644 index 0000000..f680a88 Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/IngeniBridge.StorageAccessor.InMemory.dll differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/IngeniBridge.TestServer.exe b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/IngeniBridge.TestServer.exe new file mode 100644 index 0000000..fca09e2 Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/IngeniBridge.TestServer.exe differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/IngeniBridge.TestServer.exe.config b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/IngeniBridge.TestServer.exe.config new file mode 100644 index 0000000..5035d4f --- /dev/null +++ b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/IngeniBridge.TestServer.exe.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/IngeniBridge.TestServer.pdb b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/IngeniBridge.TestServer.pdb new file mode 100644 index 0000000..3b1ba96 Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/IngeniBridge.TestServer.pdb differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/JT.TechCases.Threading.dll b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/JT.TechCases.Threading.dll new file mode 100644 index 0000000..c448275 Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/JT.TechCases.Threading.dll differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/Newtonsoft.Json.dll b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/Newtonsoft.Json.dll new file mode 100644 index 0000000..8069902 Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/Newtonsoft.Json.dll differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/System.ValueTuple.dll b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/System.ValueTuple.dll new file mode 100644 index 0000000..65fa9ee Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/System.ValueTuple.dll differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/log4net.dll b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/log4net.dll new file mode 100644 index 0000000..93fb476 Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/net45/log4net.dll differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/netcoreapp2.1/IngeniBridge.TestServer.deps.json b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/netcoreapp2.1/IngeniBridge.TestServer.deps.json new file mode 100644 index 0000000..d9835a8 --- /dev/null +++ b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/netcoreapp2.1/IngeniBridge.TestServer.deps.json @@ -0,0 +1,1561 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v2.1", + "signature": "32e11170ae47e09a3b79019a9dfe401c295f8e1d" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v2.1": { + "IngeniBridge.TestServer/1.0.0": { + "dependencies": { + "CommandLineParser": "2.3.0", + "IngeniBridge.Core": "1.0.37", + "IngeniBridge.StorageAccessor.InMemory": "1.0.8", + "JT.TechCases.Threading": "1.0.12", + "log4net": "2.0.8" + }, + "runtime": { + "IngeniBridge.TestServer.dll": {} + } + }, + "CommandLineParser/2.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Console": "4.0.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.0.11-rc2-24027", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.1.0" + }, + "runtime": { + "lib/netstandard1.5/CommandLine.dll": { + "assemblyVersion": "2.0.275.0", + "fileVersion": "2.0.275.0" + } + } + }, + "IngeniBridge.Core/1.0.37": { + "dependencies": { + "JT.TechCases.Threading": "1.0.12", + "Newtonsoft.Json": "11.0.2", + "System.ValueTuple": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/IngeniBridge.Core.dll": { + "assemblyVersion": "1.0.37.0", + "fileVersion": "1.0.37.0" + } + } + }, + "IngeniBridge.StorageAccessor.InMemory/1.0.8": { + "dependencies": { + "IngeniBridge.Core": "1.0.37", + "JT.TechCases.Threading": "1.0.12", + "Microsoft.CSharp": "4.5.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.ValueTuple": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/IngeniBridge.StorageAccessor.InMemory.dll": { + "assemblyVersion": "1.0.8.0", + "fileVersion": "1.0.8.0" + } + } + }, + "JT.TechCases.Threading/1.0.12": { + "runtime": { + "lib/netstandard2.0/JT.TechCases.Threading.dll": { + "assemblyVersion": "1.0.12.0", + "fileVersion": "1.0.12.0" + } + } + }, + "log4net/2.0.8": { + "dependencies": { + "System.AppContext": "4.1.0", + "System.Collections.NonGeneric": "4.0.1", + "System.Console": "4.0.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Process": "4.1.0", + "System.Diagnostics.StackTrace": "4.0.1", + "System.Diagnostics.TraceSource": "4.0.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Watcher": "4.0.0", + "System.Linq": "4.1.0", + "System.Net.NameResolution": "4.0.0", + "System.Net.Requests": "4.0.11", + "System.Net.Sockets": "4.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0", + "System.Runtime.Serialization.Formatters": "4.3.0", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Thread": "4.0.0", + "System.Threading.Timer": "4.0.1", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XmlDocument": "4.0.1" + }, + "runtime": { + "lib/netstandard1.3/log4net.dll": { + "assemblyVersion": "2.0.8.0", + "fileVersion": "2.0.8.0" + } + } + }, + "Microsoft.CSharp/4.5.0": {}, + "Microsoft.Win32.Primitives/4.0.1": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "Microsoft.Win32.Registry/4.0.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "Newtonsoft.Json/11.0.2": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.2.21924" + } + } + }, + "runtime.native.System/4.0.0": {}, + "runtime.native.System.Net.Http/4.0.1": {}, + "runtime.native.System.Security.Cryptography/4.0.0": {}, + "System.AppContext/4.1.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Collections/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.0.12": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Collections.Immutable/1.2.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.3.0", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + } + }, + "System.Collections.NonGeneric/4.0.1": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + } + }, + "System.Console/4.0.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.0.11": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/4.0.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.0.11" + } + }, + "System.Diagnostics.Process/4.1.0": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.1", + "Microsoft.Win32.Registry": "4.0.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Thread": "4.0.0", + "System.Threading.ThreadPool": "4.0.10", + "runtime.native.System": "4.0.0" + }, + "runtimeTargets": { + "runtime/linux/lib/_._": { + "rid": "linux", + "assetType": "runtime" + }, + "runtime/osx/lib/_._": { + "rid": "osx", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.Diagnostics.StackTrace/4.0.1": { + "dependencies": { + "System.Collections.Immutable": "1.2.0", + "System.IO.FileSystem": "4.0.1", + "System.Reflection": "4.3.0", + "System.Reflection.Metadata": "1.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.1.0" + } + }, + "System.Diagnostics.TraceSource/4.0.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "runtime.native.System": "4.0.0" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.Diagnostics.Tracing/4.1.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.0.1": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.0.1": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem/4.0.1": { + "dependencies": { + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.0.1", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.Primitives/4.0.1": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.IO.FileSystem.Watcher/4.0.0": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.3.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.0.11", + "System.Threading.Overlapped": "4.0.1", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Thread": "4.0.0", + "runtime.native.System": "4.0.0" + }, + "runtimeTargets": { + "runtime/linux/lib/_._": { + "rid": "linux", + "assetType": "runtime" + }, + "runtime/osx/lib/_._": { + "rid": "osx", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.Linq/4.1.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.1.0" + } + }, + "System.Linq.Expressions/4.0.11-rc2-24027": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.1.0", + "System.ObjectModel": "4.0.12-rc2-24027", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.0.1-rc2-24027", + "System.Reflection.Emit.ILGeneration": "4.0.1-rc2-24027", + "System.Reflection.Emit.Lightweight": "4.0.1-rc2-24027", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + } + }, + "System.Net.Http/4.1.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.DiagnosticSource": "4.0.0", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.0.1", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.0.1", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.OpenSsl": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.0.0", + "runtime.native.System.Net.Http": "4.0.1", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.Net.NameResolution/4.0.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.3.0", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Principal.Windows": "4.0.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.0.0" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.Net.Primitives/4.0.11": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.0.1" + } + }, + "System.Net.Requests/4.0.11": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Net.Http": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.3.0" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.Net.Sockets/4.1.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Net.Primitives": "4.0.11", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Net.WebHeaderCollection/4.0.1": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.1.0" + } + }, + "System.ObjectModel/4.0.12-rc2-24027": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.0.11" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.0.1-rc2-24027": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.0.1-rc2-24027", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.0.1-rc2-24027": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.0.1-rc2-24027": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.0.1-rc2-24027", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.0.1": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Metadata/1.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.Immutable": "1.2.0", + "System.Diagnostics.Debug": "4.0.11", + "System.IO": "4.3.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.1.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": {}, + "System.Runtime.Extensions/4.1.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.0.1": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.1.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.0.1" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "runtime.native.System": "4.0.0" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.Runtime.Numerics/4.0.1": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.1.0" + } + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0" + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Security.Claims/4.0.1": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.1.0", + "System.Security.Principal": "4.0.1" + } + }, + "System.Security.Cryptography.Algorithms/4.2.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.Security.Cryptography.Cng/4.2.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.3.0" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.Security.Cryptography.Csp/4.0.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.0.11" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.Security.Cryptography.Encoding/4.0.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.0.12", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.Security.Cryptography.OpenSsl/4.0.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + } + } + }, + "System.Security.Cryptography.Primitives/4.0.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.X509Certificates/4.1.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.0.1", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Cng": "4.2.0", + "System.Security.Cryptography.Csp": "4.0.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.OpenSsl": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.0.11", + "runtime.native.System": "4.0.0", + "runtime.native.System.Net.Http": "4.0.1", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.Security.Principal/4.0.1": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Security.Principal.Windows/4.0.0": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Claims": "4.0.1", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.0.11" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.Extensions/4.0.11": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.RegularExpressions/4.1.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + } + }, + "System.Threading/4.0.11": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Overlapped/4.0.1": { + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.0.1" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.0.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Thread/4.0.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading.ThreadPool/4.0.10": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.0.1" + } + }, + "System.Threading.Timer/4.0.1": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.ValueTuple/4.5.0": {}, + "System.Xml.ReaderWriter/4.0.11": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.0.0" + } + }, + "System.Xml.XmlDocument/4.0.1": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + } + } + } + }, + "libraries": { + "IngeniBridge.TestServer/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "CommandLineParser/2.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-reRoh1qxIxsipV2FPBBkp5zFQZjJ0QKZCODLg6nSGBVJzKMBpLAjZP1QkD8f526RfN4+E1zJR/WHOckSRvllOg==", + "path": "commandlineparser/2.3.0", + "hashPath": "commandlineparser.2.3.0.nupkg.sha512" + }, + "IngeniBridge.Core/1.0.37": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V5zIao9IGH9F10UDOMN1oubR0uubmDxY2z50BtiCXUj61lOMiGnpYRrLqeUKcjNQesL9Repvwi7YW1bQ4bMtNg==", + "path": "ingenibridge.core/1.0.37", + "hashPath": "ingenibridge.core.1.0.37.nupkg.sha512" + }, + "IngeniBridge.StorageAccessor.InMemory/1.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qF7zmqcVEbpUhJdtdJ0JsES4L0o1ConlepPnd6f89Ygu3gKzV5ekmAKdOkdxeNk7ZGbf+Q8vCI/BHzy3WRPM9g==", + "path": "ingenibridge.storageaccessor.inmemory/1.0.8", + "hashPath": "ingenibridge.storageaccessor.inmemory.1.0.8.nupkg.sha512" + }, + "JT.TechCases.Threading/1.0.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P5/D3riDQc/cqnIMekNh7f1RVscDTq8wVI1dXQh9453BmF+7fTnNSzT3HiKcrbcO7DDugNPS9CUJFVz9xrE0cw==", + "path": "jt.techcases.threading/1.0.12", + "hashPath": "jt.techcases.threading.1.0.12.nupkg.sha512" + }, + "log4net/2.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N41MQGHZImiCfn0cUuSBjZxrcNfIQCuCgQP0rpgB3J/NWponEh3lc1LxJEuIsPAR9Oc1jVvfkNNFCY1C5hf9LA==", + "path": "log4net/2.0.8", + "hashPath": "log4net.2.0.8.nupkg.sha512" + }, + "Microsoft.CSharp/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EGoBmf3Na2ppbhPePDE9PlX81r1HuOZH5twBrq7couJZiPTjUnD3648balerQJO6EJ8Sj+43+XuRwQ7r+3tE3w==", + "path": "microsoft.csharp/4.5.0", + "hashPath": "microsoft.csharp.4.5.0.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==", + "path": "microsoft.win32.primitives/4.0.1", + "hashPath": "microsoft.win32.primitives.4.0.1.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-q+eLtROUAQ3OxYA5mpQrgyFgzLQxIyrfT2eLpYX5IEPlHmIio2nh4F5bgOaQoGOV865kFKZZso9Oq9RlazvXtg==", + "path": "microsoft.win32.registry/4.0.0", + "hashPath": "microsoft.win32.registry.4.0.0.nupkg.sha512" + }, + "Newtonsoft.Json/11.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==", + "path": "newtonsoft.json/11.0.2", + "hashPath": "newtonsoft.json.11.0.2.nupkg.sha512" + }, + "runtime.native.System/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==", + "path": "runtime.native.system/4.0.0", + "hashPath": "runtime.native.system.4.0.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==", + "path": "runtime.native.system.net.http/4.0.1", + "hashPath": "runtime.native.system.net.http.4.0.1.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==", + "path": "runtime.native.system.security.cryptography/4.0.0", + "hashPath": "runtime.native.system.security.cryptography.4.0.0.nupkg.sha512" + }, + "System.AppContext/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==", + "path": "system.appcontext/4.1.0", + "hashPath": "system.appcontext.4.1.0.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.0.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==", + "path": "system.collections.concurrent/4.0.12", + "hashPath": "system.collections.concurrent.4.0.12.nupkg.sha512" + }, + "System.Collections.Immutable/1.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Cma8cBW6di16ZLibL8LYQ+cLjGzoKxpOTu/faZfDcx94ZjAGq6Nv5RO7+T1YZXqEXTZP9rt1wLVEONVpURtUqw==", + "path": "system.collections.immutable/1.2.0", + "hashPath": "system.collections.immutable.1.2.0.nupkg.sha512" + }, + "System.Collections.NonGeneric/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hMxFT2RhhlffyCdKLDXjx8WEC5JfCvNozAZxCablAuFRH74SCV4AgzE8yJCh/73bFnEoZgJ9MJmkjQ0dJmnKqA==", + "path": "system.collections.nongeneric/4.0.1", + "hashPath": "system.collections.nongeneric.4.0.1.nupkg.sha512" + }, + "System.Console/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==", + "path": "system.console/4.0.0", + "hashPath": "system.console.4.0.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==", + "path": "system.diagnostics.debug/4.0.11", + "hashPath": "system.diagnostics.debug.4.0.11.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YKglnq4BMTJxfcr6nuT08g+yJ0UxdePIHxosiLuljuHIUR6t4KhFsyaHOaOc1Ofqp0PUvJ0EmcgiEz6T7vEx3w==", + "path": "system.diagnostics.diagnosticsource/4.0.0", + "hashPath": "system.diagnostics.diagnosticsource.4.0.0.nupkg.sha512" + }, + "System.Diagnostics.Process/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==", + "path": "system.diagnostics.process/4.1.0", + "hashPath": "system.diagnostics.process.4.1.0.nupkg.sha512" + }, + "System.Diagnostics.StackTrace/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6i2EbRq0lgGfiZ+FDf0gVaw9qeEU+7IS2+wbZJmFVpvVzVOgZEt0ScZtyenuBvs6iDYbGiF51bMAa0oDP/tujQ==", + "path": "system.diagnostics.stacktrace/4.0.1", + "hashPath": "system.diagnostics.stacktrace.4.0.1.nupkg.sha512" + }, + "System.Diagnostics.TraceSource/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6WVCczFZKXwpWpzd/iJkYnsmWTSFFiU24Xx/YdHXBcu+nFI/ehTgeqdJQFbtRPzbrO3KtRNjvkhtj4t5/WwWsA==", + "path": "system.diagnostics.tracesource/4.0.0", + "hashPath": "system.diagnostics.tracesource.4.0.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==", + "path": "system.diagnostics.tracing/4.1.0", + "hashPath": "system.diagnostics.tracing.4.1.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==", + "path": "system.globalization.calendars/4.0.1", + "hashPath": "system.globalization.calendars.4.0.1.nupkg.sha512" + }, + "System.Globalization.Extensions/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==", + "path": "system.globalization.extensions/4.0.1", + "hashPath": "system.globalization.extensions.4.0.1.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==", + "path": "system.io.filesystem/4.0.1", + "hashPath": "system.io.filesystem.4.0.1.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==", + "path": "system.io.filesystem.primitives/4.0.1", + "hashPath": "system.io.filesystem.primitives.4.0.1.nupkg.sha512" + }, + "System.IO.FileSystem.Watcher/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qM4Wr3La+RYb/03B0mZZjbA7tHsGzDffnuXP8Sl48HW2JwCjn3kfD5qdw0sqyNNowUipcJMi9/q6sMUrOIJ6UQ==", + "path": "system.io.filesystem.watcher/4.0.0", + "hashPath": "system.io.filesystem.watcher.4.0.0.nupkg.sha512" + }, + "System.Linq/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==", + "path": "system.linq/4.1.0", + "hashPath": "system.linq.4.1.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.0.11-rc2-24027": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CfLNPBWzWdqfRGkdIXNWQ+2zSyaegOL4MAQSry0k6t8CQnPwJLywZLIZAV+cU47gi/7C2eM2I63r2eBZNJDovw==", + "path": "system.linq.expressions/4.0.11-rc2-24027", + "hashPath": "system.linq.expressions.4.0.11-rc2-24027.nupkg.sha512" + }, + "System.Net.Http/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==", + "path": "system.net.http/4.1.0", + "hashPath": "system.net.http.4.1.0.nupkg.sha512" + }, + "System.Net.NameResolution/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==", + "path": "system.net.nameresolution/4.0.0", + "hashPath": "system.net.nameresolution.4.0.0.nupkg.sha512" + }, + "System.Net.Primitives/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==", + "path": "system.net.primitives/4.0.11", + "hashPath": "system.net.primitives.4.0.11.nupkg.sha512" + }, + "System.Net.Requests/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vxGt7C0cZixN+VqoSW4Yakc1Y9WknmxauDqzxgpw/FnBdz4kQNN51l4wxdXX5VY1xjqy//+G+4CvJWp1+f+y6Q==", + "path": "system.net.requests/4.0.11", + "hashPath": "system.net.requests.4.0.11.nupkg.sha512" + }, + "System.Net.Sockets/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==", + "path": "system.net.sockets/4.1.0", + "hashPath": "system.net.sockets.4.1.0.nupkg.sha512" + }, + "System.Net.WebHeaderCollection/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XX2TIAN+wBSAIV51BU2FvvXMdstUa8b0FBSZmDWjZdwUMmggQSifpTOZ5fNH20z9ZCg2fkV1L5SsZnpO2RQDRQ==", + "path": "system.net.webheadercollection/4.0.1", + "hashPath": "system.net.webheadercollection.4.0.1.nupkg.sha512" + }, + "System.ObjectModel/4.0.12-rc2-24027": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8wgKzGVl3RlTMBYsWCjOizWpzH8mm7i0pv2vHwXbpV/rGptDDKzXHyTmdqFdBAfrnsnicwh79hNTc5zzKWKK1A==", + "path": "system.objectmodel/4.0.12-rc2-24027", + "hashPath": "system.objectmodel.4.0.12-rc2-24027.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.0.1-rc2-24027": { + "type": "package", + "serviceable": true, + "sha512": "sha512-C4kvi/Lpj5vgUtCygP0bbBnlYyuDZEU2ofdgGXa8AgV3FkmwNEqJ7zm3OhMFe/kMKRgEkJXkioFdkLHrJJLDTQ==", + "path": "system.reflection.emit/4.0.1-rc2-24027", + "hashPath": "system.reflection.emit.4.0.1-rc2-24027.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.0.1-rc2-24027": { + "type": "package", + "serviceable": true, + "sha512": "sha512-s7puteOinRV3+sGWDLeuUbSSxwZHqHhXpLwoTlS4L0x7d58j868LbKPSPJVZAs6a/dGkyo02WHVDcEtCBjn8VQ==", + "path": "system.reflection.emit.ilgeneration/4.0.1-rc2-24027", + "hashPath": "system.reflection.emit.ilgeneration.4.0.1-rc2-24027.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.0.1-rc2-24027": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kDuurD3Z1bYJrW0VqBEoHWLUCWYtto/SF/dajEj8sXftap3zkqBF+3IMb8l4EfRuzytlS2TlmFxiApbB9C8JEA==", + "path": "system.reflection.emit.lightweight/4.0.1-rc2-24027", + "hashPath": "system.reflection.emit.lightweight.4.0.1-rc2-24027.nupkg.sha512" + }, + "System.Reflection.Extensions/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==", + "path": "system.reflection.extensions/4.0.1", + "hashPath": "system.reflection.extensions.4.0.1.nupkg.sha512" + }, + "System.Reflection.Metadata/1.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jMSCxA4LSyKBGRDm/WtfkO03FkcgRzHxwvQRib1bm2GZ8ifKM1MX1al6breGCEQK280mdl9uQS7JNPXRYk90jw==", + "path": "system.reflection.metadata/1.3.0", + "hashPath": "system.reflection.metadata.1.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==", + "path": "system.reflection.typeextensions/4.1.0", + "hashPath": "system.reflection.typeextensions.4.1.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==", + "path": "system.runtime.extensions/4.1.0", + "hashPath": "system.runtime.extensions.4.1.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==", + "path": "system.runtime.handles/4.0.1", + "hashPath": "system.runtime.handles.4.0.1.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==", + "path": "system.runtime.interopservices/4.1.0", + "hashPath": "system.runtime.interopservices.4.1.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==", + "path": "system.runtime.interopservices.runtimeinformation/4.0.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==", + "path": "system.runtime.numerics/4.0.1", + "hashPath": "system.runtime.numerics.4.0.1.nupkg.sha512" + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==", + "path": "system.runtime.serialization.formatters/4.3.0", + "hashPath": "system.runtime.serialization.formatters.4.3.0.nupkg.sha512" + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==", + "path": "system.runtime.serialization.primitives/4.3.0", + "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Claims/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4Jlp0OgJLS/Voj1kyFP6MJlIYp3crgfH8kNQk2p7+4JYfc1aAmh9PZyAMMbDhuoolGNtux9HqSOazsioRiDvCw==", + "path": "system.security.claims/4.0.1", + "hashPath": "system.security.claims.4.0.1.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==", + "path": "system.security.cryptography.algorithms/4.2.0", + "hashPath": "system.security.cryptography.algorithms.4.2.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cUJ2h+ZvONDe28Szw3st5dOHdjndhJzQ2WObDEXAWRPEQBtVItVoxbXM/OEsTthl3cNn2dk2k0I3y45igCQcLw==", + "path": "system.security.cryptography.cng/4.2.0", + "hashPath": "system.security.cryptography.cng.4.2.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==", + "path": "system.security.cryptography.csp/4.0.0", + "hashPath": "system.security.cryptography.csp.4.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==", + "path": "system.security.cryptography.encoding/4.0.0", + "hashPath": "system.security.cryptography.encoding.4.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==", + "path": "system.security.cryptography.openssl/4.0.0", + "hashPath": "system.security.cryptography.openssl.4.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==", + "path": "system.security.cryptography.primitives/4.0.0", + "hashPath": "system.security.cryptography.primitives.4.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==", + "path": "system.security.cryptography.x509certificates/4.1.0", + "hashPath": "system.security.cryptography.x509certificates.4.1.0.nupkg.sha512" + }, + "System.Security.Principal/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-On+SKhXY5rzxh/S8wlH1Rm0ogBlu7zyHNxeNBiXauNrhHRXAe9EuX8Yl5IOzLPGU5Z4kLWHMvORDOCG8iu9hww==", + "path": "system.security.principal/4.0.1", + "hashPath": "system.security.principal.4.0.1.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iFx15AF3RMEPZn3COh8+Bb2Thv2zsmLd93RchS1b8Mj5SNYeGqbYNCSn5AES1+gq56p4ujGZPrl0xN7ngkXOHg==", + "path": "system.security.principal.windows/4.0.0", + "hashPath": "system.security.principal.windows.4.0.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==", + "path": "system.text.encoding.extensions/4.0.11", + "hashPath": "system.text.encoding.extensions.4.0.11.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==", + "path": "system.text.regularexpressions/4.1.0", + "hashPath": "system.text.regularexpressions.4.1.0.nupkg.sha512" + }, + "System.Threading/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==", + "path": "system.threading/4.0.11", + "hashPath": "system.threading.4.0.11.nupkg.sha512" + }, + "System.Threading.Overlapped/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f7aLuLkBoCQM2kng7zqLFBXz9Gk48gDK8lk1ih9rH/1arJJzZK9gJwNvPDhL6Ps/l6rwOr8jw+4FCHL0KKWiEg==", + "path": "system.threading.overlapped/4.0.1", + "hashPath": "system.threading.overlapped.4.0.1.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==", + "path": "system.threading.tasks.extensions/4.0.0", + "hashPath": "system.threading.tasks.extensions.4.0.0.nupkg.sha512" + }, + "System.Threading.Thread/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==", + "path": "system.threading.thread/4.0.0", + "hashPath": "system.threading.thread.4.0.0.nupkg.sha512" + }, + "System.Threading.ThreadPool/4.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==", + "path": "system.threading.threadpool/4.0.10", + "hashPath": "system.threading.threadpool.4.0.10.nupkg.sha512" + }, + "System.Threading.Timer/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==", + "path": "system.threading.timer/4.0.1", + "hashPath": "system.threading.timer.4.0.1.nupkg.sha512" + }, + "System.ValueTuple/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xZtSZNEHGa+tGsKuP4sh257vxJ/yemShz4EusmomkynMzuEDDjVaErBNewpzEF6swUgbcrSQAX3ELsEp1zCOwA==", + "path": "system.valuetuple/4.5.0", + "hashPath": "system.valuetuple.4.5.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==", + "path": "system.xml.readerwriter/4.0.11", + "hashPath": "system.xml.readerwriter.4.0.11.nupkg.sha512" + }, + "System.Xml.XmlDocument/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==", + "path": "system.xml.xmldocument/4.0.1", + "hashPath": "system.xml.xmldocument.4.0.1.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/App.config b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/netcoreapp2.1/IngeniBridge.TestServer.dll.config similarity index 100% rename from IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/App.config rename to IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/netcoreapp2.1/IngeniBridge.TestServer.dll.config diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/netcoreapp2.1/IngeniBridge.TestServer.runtimeconfig.dev.json b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/netcoreapp2.1/IngeniBridge.TestServer.runtimeconfig.dev.json new file mode 100644 index 0000000..04279d8 --- /dev/null +++ b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/netcoreapp2.1/IngeniBridge.TestServer.runtimeconfig.dev.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\joset\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\joset\\.nuget\\packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ] + } +} \ No newline at end of file diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/netcoreapp2.1/IngeniBridge.TestServer.runtimeconfig.json b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/netcoreapp2.1/IngeniBridge.TestServer.runtimeconfig.json new file mode 100644 index 0000000..7994936 --- /dev/null +++ b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Debug/netcoreapp2.1/IngeniBridge.TestServer.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "netcoreapp2.1", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "2.1.0" + } + } +} \ No newline at end of file diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/CommandLine.dll b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/CommandLine.dll new file mode 100644 index 0000000..618ed3d Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/CommandLine.dll differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/EPPlus.dll b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/EPPlus.dll new file mode 100644 index 0000000..84afe50 Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/EPPlus.dll differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/IngeniBridge.BuildUtils.dll b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/IngeniBridge.BuildUtils.dll new file mode 100644 index 0000000..6587533 Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/IngeniBridge.BuildUtils.dll differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/IngeniBridge.Core.dll b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/IngeniBridge.Core.dll new file mode 100644 index 0000000..178fbee Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/IngeniBridge.Core.dll differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/IngeniBridge.StorageAccessor.InMemory.dll b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/IngeniBridge.StorageAccessor.InMemory.dll new file mode 100644 index 0000000..f680a88 Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/IngeniBridge.StorageAccessor.InMemory.dll differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/IngeniBridge.TestServer.exe b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/IngeniBridge.TestServer.exe new file mode 100644 index 0000000..591930c Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/IngeniBridge.TestServer.exe differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/IngeniBridge.TestServer.exe.config b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/IngeniBridge.TestServer.exe.config new file mode 100644 index 0000000..5035d4f --- /dev/null +++ b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/IngeniBridge.TestServer.exe.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/IngeniBridge.TestServer.pdb b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/IngeniBridge.TestServer.pdb new file mode 100644 index 0000000..af8da46 Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/IngeniBridge.TestServer.pdb differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/JT.TechCases.Threading.dll b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/JT.TechCases.Threading.dll new file mode 100644 index 0000000..c448275 Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/JT.TechCases.Threading.dll differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/Newtonsoft.Json.dll b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/Newtonsoft.Json.dll new file mode 100644 index 0000000..8069902 Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/Newtonsoft.Json.dll differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/System.ValueTuple.dll b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/System.ValueTuple.dll new file mode 100644 index 0000000..65fa9ee Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/System.ValueTuple.dll differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/log4net.dll b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/log4net.dll new file mode 100644 index 0000000..93fb476 Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/bin/Release/net45/log4net.dll differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/log4net.config b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/log4net.config new file mode 100644 index 0000000..d946f10 --- /dev/null +++ b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/log4net.config @@ -0,0 +1,45 @@ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index 57d4faf..b2e0f3a 100644 Binary files a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/IngeniBridge.TestServer.csproj.CoreCompileInputs.cache b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/IngeniBridge.TestServer.csproj.CoreCompileInputs.cache index 5f6eb4d..36d2583 100644 --- a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/IngeniBridge.TestServer.csproj.CoreCompileInputs.cache +++ b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/IngeniBridge.TestServer.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -57711398d340f69caa6911b8d7aba8c5ef59b5e8 +78bf01d542bda4ac29e4a4cc87b861491b5cde63 diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/IngeniBridge.TestServer.csprojAssemblyReference.cache b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/IngeniBridge.TestServer.csprojAssemblyReference.cache index 63f54bf..f5ad289 100644 Binary files a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/IngeniBridge.TestServer.csprojAssemblyReference.cache and b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/IngeniBridge.TestServer.csprojAssemblyReference.cache differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/build.force b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/build.force new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/net45/IngeniBridge.TestServer.AssemblyInfo.cs b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/net45/IngeniBridge.TestServer.AssemblyInfo.cs new file mode 100644 index 0000000..978ef49 --- /dev/null +++ b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/net45/IngeniBridge.TestServer.AssemblyInfo.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// 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("DEAGITAL")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © DEAGITAL 2016")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("IngeniBridge.TestServer")] +[assembly: System.Reflection.AssemblyTitleAttribute("IngeniBridge.TestServer")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/net45/IngeniBridge.TestServer.AssemblyInfoInputs.cache b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/net45/IngeniBridge.TestServer.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fe9d62a --- /dev/null +++ b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/net45/IngeniBridge.TestServer.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +a2c8bd9a51bb230a87600f8dee8e7fa9e8f031d6 diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/net45/IngeniBridge.TestServer.assets.cache b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/net45/IngeniBridge.TestServer.assets.cache new file mode 100644 index 0000000..25d16bd Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/net45/IngeniBridge.TestServer.assets.cache differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/net45/IngeniBridge.TestServer.csproj.CopyComplete b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/net45/IngeniBridge.TestServer.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/net45/IngeniBridge.TestServer.csproj.CoreCompileInputs.cache b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/net45/IngeniBridge.TestServer.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..67f0af4 --- /dev/null +++ b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/net45/IngeniBridge.TestServer.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +a0d68e6364d7902ce6060391c56cc867d47c666b diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/net45/IngeniBridge.TestServer.csproj.FileListAbsolute.txt b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/net45/IngeniBridge.TestServer.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..e277473 --- /dev/null +++ b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/net45/IngeniBridge.TestServer.csproj.FileListAbsolute.txt @@ -0,0 +1,18 @@ +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\bin\Debug\net45\IngeniBridge.TestServer.exe.config +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\bin\Debug\net45\IngeniBridge.TestServer.exe +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\bin\Debug\net45\CommandLine.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\bin\Debug\net45\EPPlus.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\bin\Debug\net45\IngeniBridge.BuildUtils.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\bin\Debug\net45\IngeniBridge.Core.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\bin\Debug\net45\IngeniBridge.StorageAccessor.InMemory.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\bin\Debug\net45\JT.TechCases.Threading.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\bin\Debug\net45\log4net.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\bin\Debug\net45\Newtonsoft.Json.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\bin\Debug\net45\System.ValueTuple.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\obj\Debug\net45\IngeniBridge.TestServer.csproj.CoreCompileInputs.cache +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\obj\Debug\net45\IngeniBridge.TestServer.AssemblyInfoInputs.cache +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\obj\Debug\net45\IngeniBridge.TestServer.AssemblyInfo.cs +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\obj\Debug\net45\IngeniBridge.TestServer.csproj.CopyComplete +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\bin\Debug\net45\IngeniBridge.TestServer.pdb +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\obj\Debug\net45\IngeniBridge.TestServer.exe +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\obj\Debug\net45\IngeniBridge.TestServer.pdb diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/net45/IngeniBridge.TestServer.exe b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/net45/IngeniBridge.TestServer.exe new file mode 100644 index 0000000..fca09e2 Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/net45/IngeniBridge.TestServer.exe differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/net45/IngeniBridge.TestServer.exe.withSupportedRuntime.config b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/net45/IngeniBridge.TestServer.exe.withSupportedRuntime.config new file mode 100644 index 0000000..5035d4f --- /dev/null +++ b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/net45/IngeniBridge.TestServer.exe.withSupportedRuntime.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/net45/IngeniBridge.TestServer.pdb b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/net45/IngeniBridge.TestServer.pdb new file mode 100644 index 0000000..3b1ba96 Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/net45/IngeniBridge.TestServer.pdb differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/net45/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/net45/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/net45/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/net45/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/net45/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/net45/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/netcoreapp2.1/IngeniBridge.TestServer.AssemblyInfo.cs b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/netcoreapp2.1/IngeniBridge.TestServer.AssemblyInfo.cs new file mode 100644 index 0000000..978ef49 --- /dev/null +++ b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/netcoreapp2.1/IngeniBridge.TestServer.AssemblyInfo.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// 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("DEAGITAL")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © DEAGITAL 2016")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("IngeniBridge.TestServer")] +[assembly: System.Reflection.AssemblyTitleAttribute("IngeniBridge.TestServer")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/netcoreapp2.1/IngeniBridge.TestServer.AssemblyInfoInputs.cache b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/netcoreapp2.1/IngeniBridge.TestServer.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fe9d62a --- /dev/null +++ b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/netcoreapp2.1/IngeniBridge.TestServer.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +a2c8bd9a51bb230a87600f8dee8e7fa9e8f031d6 diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/netcoreapp2.1/IngeniBridge.TestServer.assets.cache b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/netcoreapp2.1/IngeniBridge.TestServer.assets.cache new file mode 100644 index 0000000..a595505 Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/netcoreapp2.1/IngeniBridge.TestServer.assets.cache differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/netcoreapp2.1/IngeniBridge.TestServer.csproj.CoreCompileInputs.cache b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/netcoreapp2.1/IngeniBridge.TestServer.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..cf272f2 --- /dev/null +++ b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/netcoreapp2.1/IngeniBridge.TestServer.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +74a977bc0f5d863b73025e8bc272252d0d960d2d diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/netcoreapp2.1/IngeniBridge.TestServer.csproj.FileListAbsolute.txt b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/netcoreapp2.1/IngeniBridge.TestServer.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..466f39d --- /dev/null +++ b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/netcoreapp2.1/IngeniBridge.TestServer.csproj.FileListAbsolute.txt @@ -0,0 +1,9 @@ +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\bin\Debug\netcoreapp2.1\IngeniBridge.TestServer.dll.config +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\bin\Debug\netcoreapp2.1\IngeniBridge.TestServer.deps.json +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\bin\Debug\netcoreapp2.1\IngeniBridge.TestServer.runtimeconfig.json +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\bin\Debug\netcoreapp2.1\IngeniBridge.TestServer.runtimeconfig.dev.json +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\bin\Debug\netcoreapp2.1\IngeniBridge.TestServer.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\obj\Debug\netcoreapp2.1\IngeniBridge.TestServer.csprojAssemblyReference.cache +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\obj\Debug\netcoreapp2.1\IngeniBridge.TestServer.csproj.CoreCompileInputs.cache +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\obj\Debug\netcoreapp2.1\IngeniBridge.TestServer.AssemblyInfoInputs.cache +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\obj\Debug\netcoreapp2.1\IngeniBridge.TestServer.AssemblyInfo.cs diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/netcoreapp2.1/IngeniBridge.TestServer.csprojAssemblyReference.cache b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/netcoreapp2.1/IngeniBridge.TestServer.csprojAssemblyReference.cache new file mode 100644 index 0000000..d981672 Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/netcoreapp2.1/IngeniBridge.TestServer.csprojAssemblyReference.cache differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/IngeniBridge.TestServer.csproj.nuget.cache b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/IngeniBridge.TestServer.csproj.nuget.cache new file mode 100644 index 0000000..d4a183f --- /dev/null +++ b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/IngeniBridge.TestServer.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "dC05zcoQ62KzuD7gKnbRoXtMQf4P53t3MmnugTYZppk97r+q8XDQMsAUhS/GSIJu5s/7VIbUc0gUnGboyYmg2A==", + "success": true +} \ No newline at end of file diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/IngeniBridge.TestServer.csproj.nuget.g.props b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/IngeniBridge.TestServer.csproj.nuget.g.props new file mode 100644 index 0000000..e17a16f --- /dev/null +++ b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/IngeniBridge.TestServer.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\obj\project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\joset\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 4.8.0 + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/IngeniBridge.TestServer.csproj.nuget.g.targets b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/IngeniBridge.TestServer.csproj.nuget.g.targets new file mode 100644 index 0000000..53cfaa1 --- /dev/null +++ b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/IngeniBridge.TestServer.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/IngeniBridge.TestServer.AssemblyInfo.cs b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/IngeniBridge.TestServer.AssemblyInfo.cs new file mode 100644 index 0000000..4c503d9 --- /dev/null +++ b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/IngeniBridge.TestServer.AssemblyInfo.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// 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("DEAGITAL")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © DEAGITAL 2016")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("IngeniBridge.TestServer")] +[assembly: System.Reflection.AssemblyTitleAttribute("IngeniBridge.TestServer")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/IngeniBridge.TestServer.AssemblyInfoInputs.cache b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/IngeniBridge.TestServer.AssemblyInfoInputs.cache new file mode 100644 index 0000000..25c8af3 --- /dev/null +++ b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/IngeniBridge.TestServer.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +2b1c840aed4bf7864b873ce00d5eb72a1e5bb0c0 diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/IngeniBridge.TestServer.assets.cache b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/IngeniBridge.TestServer.assets.cache new file mode 100644 index 0000000..bc75da3 Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/IngeniBridge.TestServer.assets.cache differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/IngeniBridge.TestServer.csproj.CopyComplete b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/IngeniBridge.TestServer.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/IngeniBridge.TestServer.csproj.CoreCompileInputs.cache b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/IngeniBridge.TestServer.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..67f0af4 --- /dev/null +++ b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/IngeniBridge.TestServer.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +a0d68e6364d7902ce6060391c56cc867d47c666b diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/IngeniBridge.TestServer.csproj.FileListAbsolute.txt b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/IngeniBridge.TestServer.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..999d4cc --- /dev/null +++ b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/IngeniBridge.TestServer.csproj.FileListAbsolute.txt @@ -0,0 +1,19 @@ +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\bin\Release\net45\IngeniBridge.TestServer.exe.config +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\bin\Release\net45\IngeniBridge.TestServer.exe +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\bin\Release\net45\IngeniBridge.TestServer.pdb +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\bin\Release\net45\CommandLine.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\bin\Release\net45\EPPlus.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\bin\Release\net45\IngeniBridge.BuildUtils.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\bin\Release\net45\IngeniBridge.Core.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\bin\Release\net45\IngeniBridge.StorageAccessor.InMemory.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\bin\Release\net45\JT.TechCases.Threading.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\bin\Release\net45\log4net.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\bin\Release\net45\Newtonsoft.Json.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\bin\Release\net45\System.ValueTuple.dll +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\obj\Release\net45\IngeniBridge.TestServer.csprojAssemblyReference.cache +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\obj\Release\net45\IngeniBridge.TestServer.csproj.CoreCompileInputs.cache +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\obj\Release\net45\IngeniBridge.TestServer.AssemblyInfoInputs.cache +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\obj\Release\net45\IngeniBridge.TestServer.AssemblyInfo.cs +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\obj\Release\net45\IngeniBridge.TestServer.csproj.CopyComplete +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\obj\Release\net45\IngeniBridge.TestServer.exe +C:\Users\joset\repos_github\IngeniBridge\IngeniBridge.TestServer\IngeniBridge.TestServer\IngeniBridge.TestServer\obj\Release\net45\IngeniBridge.TestServer.pdb diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/IngeniBridge.TestServer.csprojAssemblyReference.cache b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/IngeniBridge.TestServer.csprojAssemblyReference.cache new file mode 100644 index 0000000..567cbe5 Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/IngeniBridge.TestServer.csprojAssemblyReference.cache differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/IngeniBridge.TestServer.exe b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/IngeniBridge.TestServer.exe new file mode 100644 index 0000000..591930c Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/IngeniBridge.TestServer.exe differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/IngeniBridge.TestServer.exe.withSupportedRuntime.config b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/IngeniBridge.TestServer.exe.withSupportedRuntime.config new file mode 100644 index 0000000..5035d4f --- /dev/null +++ b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/IngeniBridge.TestServer.exe.withSupportedRuntime.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/IngeniBridge.TestServer.pdb b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/IngeniBridge.TestServer.pdb new file mode 100644 index 0000000..af8da46 Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/IngeniBridge.TestServer.pdb differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/Release/net45/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs new file mode 100644 index 0000000..e69de29 diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/project.assets.json b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/project.assets.json new file mode 100644 index 0000000..e46ed9e --- /dev/null +++ b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/obj/project.assets.json @@ -0,0 +1,753 @@ +{ + "version": 3, + "targets": { + ".NETFramework,Version=v4.5": { + "CommandLineParser/2.3.0": { + "type": "package", + "compile": { + "lib/net45/CommandLine.dll": {} + }, + "runtime": { + "lib/net45/CommandLine.dll": {} + } + }, + "EPPlus/4.5.2.1": { + "type": "package", + "frameworkAssemblies": [ + "PresentationCore", + "System", + "System.Core", + "System.Data", + "System.Drawing", + "System.Security", + "System.Xml", + "System.configuration" + ], + "compile": { + "lib/net40/EPPlus.dll": {} + }, + "runtime": { + "lib/net40/EPPlus.dll": {} + } + }, + "IngeniBridge.BuildUtils/1.0.6": { + "type": "package", + "dependencies": { + "EPPlus": "4.5.2.1", + "IngeniBridge.Core": "1.0.37", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/net45/IngeniBridge.BuildUtils.dll": {} + }, + "runtime": { + "lib/net45/IngeniBridge.BuildUtils.dll": {} + } + }, + "IngeniBridge.Core/1.0.37": { + "type": "package", + "dependencies": { + "JT.TechCases.Threading": "1.0.12", + "Newtonsoft.Json": "11.0.2", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/net45/IngeniBridge.Core.dll": {} + }, + "runtime": { + "lib/net45/IngeniBridge.Core.dll": {} + } + }, + "IngeniBridge.StorageAccessor.InMemory/1.0.8": { + "type": "package", + "dependencies": { + "IngeniBridge.Core": "1.0.37", + "JT.TechCases.Threading": "1.0.12", + "Microsoft.CSharp": "4.5.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/net45/IngeniBridge.StorageAccessor.InMemory.dll": {} + }, + "runtime": { + "lib/net45/IngeniBridge.StorageAccessor.InMemory.dll": {} + } + }, + "JT.TechCases.Threading/1.0.12": { + "type": "package", + "frameworkAssemblies": [ + "PresentationCore", + "PresentationFramework", + "System.Windows.Forms", + "WindowsBase" + ], + "compile": { + "lib/net45/JT.TechCases.Threading.dll": {} + }, + "runtime": { + "lib/net45/JT.TechCases.Threading.dll": {} + } + }, + "log4net/2.0.8": { + "type": "package", + "compile": { + "lib/net45-full/log4net.dll": {} + }, + "runtime": { + "lib/net45-full/log4net.dll": {} + } + }, + "Microsoft.CSharp/4.5.0": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp" + ], + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "Newtonsoft.Json/11.0.2": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.Net.Http/4.3.3": { + "type": "package", + "frameworkAssemblies": [ + "System.Net.Http" + ], + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "frameworkAssemblies": [ + "System.Runtime.Serialization" + ], + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.ValueTuple/4.5.0": { + "type": "package", + "compile": { + "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + } + }, + ".NETFramework,Version=v4.5/win7-x86": { + "CommandLineParser/2.3.0": { + "type": "package", + "compile": { + "lib/net45/CommandLine.dll": {} + }, + "runtime": { + "lib/net45/CommandLine.dll": {} + } + }, + "EPPlus/4.5.2.1": { + "type": "package", + "frameworkAssemblies": [ + "PresentationCore", + "System", + "System.Core", + "System.Data", + "System.Drawing", + "System.Security", + "System.Xml", + "System.configuration" + ], + "compile": { + "lib/net40/EPPlus.dll": {} + }, + "runtime": { + "lib/net40/EPPlus.dll": {} + } + }, + "IngeniBridge.BuildUtils/1.0.6": { + "type": "package", + "dependencies": { + "EPPlus": "4.5.2.1", + "IngeniBridge.Core": "1.0.37", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/net45/IngeniBridge.BuildUtils.dll": {} + }, + "runtime": { + "lib/net45/IngeniBridge.BuildUtils.dll": {} + } + }, + "IngeniBridge.Core/1.0.37": { + "type": "package", + "dependencies": { + "JT.TechCases.Threading": "1.0.12", + "Newtonsoft.Json": "11.0.2", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/net45/IngeniBridge.Core.dll": {} + }, + "runtime": { + "lib/net45/IngeniBridge.Core.dll": {} + } + }, + "IngeniBridge.StorageAccessor.InMemory/1.0.8": { + "type": "package", + "dependencies": { + "IngeniBridge.Core": "1.0.37", + "JT.TechCases.Threading": "1.0.12", + "Microsoft.CSharp": "4.5.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/net45/IngeniBridge.StorageAccessor.InMemory.dll": {} + }, + "runtime": { + "lib/net45/IngeniBridge.StorageAccessor.InMemory.dll": {} + } + }, + "JT.TechCases.Threading/1.0.12": { + "type": "package", + "frameworkAssemblies": [ + "PresentationCore", + "PresentationFramework", + "System.Windows.Forms", + "WindowsBase" + ], + "compile": { + "lib/net45/JT.TechCases.Threading.dll": {} + }, + "runtime": { + "lib/net45/JT.TechCases.Threading.dll": {} + } + }, + "log4net/2.0.8": { + "type": "package", + "compile": { + "lib/net45-full/log4net.dll": {} + }, + "runtime": { + "lib/net45-full/log4net.dll": {} + } + }, + "Microsoft.CSharp/4.5.0": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp" + ], + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "Newtonsoft.Json/11.0.2": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.Net.Http/4.3.3": { + "type": "package", + "frameworkAssemblies": [ + "System.Net.Http" + ], + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "frameworkAssemblies": [ + "System.Runtime.Serialization" + ], + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.ValueTuple/4.5.0": { + "type": "package", + "compile": { + "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + } + } + }, + "libraries": { + "CommandLineParser/2.3.0": { + "sha512": "reRoh1qxIxsipV2FPBBkp5zFQZjJ0QKZCODLg6nSGBVJzKMBpLAjZP1QkD8f526RfN4+E1zJR/WHOckSRvllOg==", + "type": "package", + "path": "commandlineparser/2.3.0", + "files": [ + ".signature.p7s", + "commandlineparser.2.3.0.nupkg.sha512", + "commandlineparser.nuspec", + "lib/net40/CommandLine.XML", + "lib/net40/CommandLine.dll", + "lib/net45/CommandLine.XML", + "lib/net45/CommandLine.dll", + "lib/netstandard1.5/CommandLine.dll", + "lib/netstandard1.5/CommandLine.xml", + "readme.md" + ] + }, + "EPPlus/4.5.2.1": { + "sha512": "/OzYn/n982Ozu+ARWISjn9REIb3PA5KN8qPfp3JKOoSnBezN3loGCQ2k0nLNL5K8+b+3boinsNiRbm5ovEfeog==", + "type": "package", + "path": "epplus/4.5.2.1", + "files": [ + "epplus.4.5.2.1.nupkg.sha512", + "epplus.nuspec", + "lib/net35/EPPlus.dll", + "lib/net35/EPPlus.xml", + "lib/net40/EPPlus.dll", + "lib/net40/EPPlus.xml", + "lib/netstandard2.0/EPPlus.dll", + "lib/netstandard2.0/EPPlus.xml", + "readme.txt" + ] + }, + "IngeniBridge.BuildUtils/1.0.6": { + "sha512": "S0Cz50zdX0mLF7S6CL9JCKJFa2+XAonrZcKOvvzlXx1KAoLiOLZ1y8mi1vYXi4vnQGIwOTNn9HJlAhIH9xkI/g==", + "type": "package", + "path": "ingenibridge.buildutils/1.0.6", + "files": [ + ".signature.p7s", + "ingenibridge.buildutils.1.0.6.nupkg.sha512", + "ingenibridge.buildutils.nuspec", + "lib/net45/IngeniBridge.BuildUtils.dll", + "lib/netstandard2.0/IngeniBridge.BuildUtils.dll" + ] + }, + "IngeniBridge.Core/1.0.37": { + "sha512": "V5zIao9IGH9F10UDOMN1oubR0uubmDxY2z50BtiCXUj61lOMiGnpYRrLqeUKcjNQesL9Repvwi7YW1bQ4bMtNg==", + "type": "package", + "path": "ingenibridge.core/1.0.37", + "files": [ + ".signature.p7s", + "ingenibridge.core.1.0.37.nupkg.sha512", + "ingenibridge.core.nuspec", + "lib/net45/IngeniBridge.Core.dll", + "lib/netstandard2.0/IngeniBridge.Core.dll" + ] + }, + "IngeniBridge.StorageAccessor.InMemory/1.0.8": { + "sha512": "qF7zmqcVEbpUhJdtdJ0JsES4L0o1ConlepPnd6f89Ygu3gKzV5ekmAKdOkdxeNk7ZGbf+Q8vCI/BHzy3WRPM9g==", + "type": "package", + "path": "ingenibridge.storageaccessor.inmemory/1.0.8", + "files": [ + ".signature.p7s", + "ingenibridge.storageaccessor.inmemory.1.0.8.nupkg.sha512", + "ingenibridge.storageaccessor.inmemory.nuspec", + "lib/net45/IngeniBridge.StorageAccessor.InMemory.dll", + "lib/netstandard2.0/IngeniBridge.StorageAccessor.InMemory.dll" + ] + }, + "JT.TechCases.Threading/1.0.12": { + "sha512": "P5/D3riDQc/cqnIMekNh7f1RVscDTq8wVI1dXQh9453BmF+7fTnNSzT3HiKcrbcO7DDugNPS9CUJFVz9xrE0cw==", + "type": "package", + "path": "jt.techcases.threading/1.0.12", + "files": [ + ".signature.p7s", + "jt.techcases.threading.1.0.12.nupkg.sha512", + "jt.techcases.threading.nuspec", + "lib/net40/JT.TechCases.Threading.dll", + "lib/net45/JT.TechCases.Threading.dll", + "lib/netstandard2.0/JT.TechCases.Threading.dll" + ] + }, + "log4net/2.0.8": { + "sha512": "N41MQGHZImiCfn0cUuSBjZxrcNfIQCuCgQP0rpgB3J/NWponEh3lc1LxJEuIsPAR9Oc1jVvfkNNFCY1C5hf9LA==", + "type": "package", + "path": "log4net/2.0.8", + "files": [ + "lib/net20-full/log4net.dll", + "lib/net20-full/log4net.xml", + "lib/net35-client/log4net.dll", + "lib/net35-client/log4net.xml", + "lib/net35-full/log4net.dll", + "lib/net35-full/log4net.xml", + "lib/net40-client/log4net.dll", + "lib/net40-client/log4net.xml", + "lib/net40-full/log4net.dll", + "lib/net40-full/log4net.xml", + "lib/net45-full/log4net.dll", + "lib/net45-full/log4net.xml", + "lib/netstandard1.3/log4net.dll", + "log4net.2.0.8.nupkg.sha512", + "log4net.nuspec" + ] + }, + "Microsoft.CSharp/4.5.0": { + "sha512": "EGoBmf3Na2ppbhPePDE9PlX81r1HuOZH5twBrq7couJZiPTjUnD3648balerQJO6EJ8Sj+43+XuRwQ7r+3tE3w==", + "type": "package", + "path": "microsoft.csharp/4.5.0", + "files": [ + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.5.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Newtonsoft.Json/11.0.2": { + "sha512": "IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==", + "type": "package", + "path": "newtonsoft.json/11.0.2", + "files": [ + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml", + "newtonsoft.json.11.0.2.nupkg.sha512", + "newtonsoft.json.nuspec" + ] + }, + "System.Net.Http/4.3.3": { + "sha512": "7rCqIbkC/P2+A00NoDH5gnvFhADmX7Dc4INvsOajbU1MVhktE9vZNrjPtF82N6Uo7obK+yzlrPUv/M+snnN/9w==", + "type": "package", + "path": "system.net.http/4.3.3", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.3.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==", + "type": "package", + "path": "system.runtime.serialization.primitives/4.3.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Runtime.Serialization.Primitives.dll", + "lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "system.runtime.serialization.primitives.4.3.0.nupkg.sha512", + "system.runtime.serialization.primitives.nuspec" + ] + }, + "System.ValueTuple/4.5.0": { + "sha512": "xZtSZNEHGa+tGsKuP4sh257vxJ/yemShz4EusmomkynMzuEDDjVaErBNewpzEF6swUgbcrSQAX3ELsEp1zCOwA==", + "type": "package", + "path": "system.valuetuple/4.5.0", + "files": [ + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.ValueTuple.dll", + "lib/net461/System.ValueTuple.xml", + "lib/net47/System.ValueTuple.dll", + "lib/net47/System.ValueTuple.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.ValueTuple.dll", + "lib/netstandard1.0/System.ValueTuple.xml", + "lib/netstandard2.0/_._", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.ValueTuple.dll", + "ref/net47/System.ValueTuple.dll", + "ref/netcoreapp2.0/_._", + "ref/netstandard2.0/_._", + "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.valuetuple.4.5.0.nupkg.sha512", + "system.valuetuple.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + } + }, + "projectFileDependencyGroups": { + ".NETFramework,Version=v4.5": [ + "CommandLineParser >= 2.3.0", + "IngeniBridge.BuildUtils >= 1.0.6", + "IngeniBridge.Core >= 1.0.37", + "IngeniBridge.StorageAccessor.InMemory >= 1.0.8", + "JT.TechCases.Threading >= 1.0.12", + "System.Net.Http >= 4.3.3", + "log4net >= 2.0.8" + ] + }, + "packageFolders": { + "C:\\Users\\joset\\.nuget\\packages\\": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\joset\\repos_github\\IngeniBridge\\IngeniBridge.TestServer\\IngeniBridge.TestServer\\IngeniBridge.TestServer\\IngeniBridge.TestServer.csproj", + "projectName": "IngeniBridge.TestServer", + "projectPath": "C:\\Users\\joset\\repos_github\\IngeniBridge\\IngeniBridge.TestServer\\IngeniBridge.TestServer\\IngeniBridge.TestServer\\IngeniBridge.TestServer.csproj", + "packagesPath": "C:\\Users\\joset\\.nuget\\packages\\", + "outputPath": "C:\\Users\\joset\\repos_github\\IngeniBridge\\IngeniBridge.TestServer\\IngeniBridge.TestServer\\IngeniBridge.TestServer\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\joset\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net45" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net45": { + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net45": { + "dependencies": { + "CommandLineParser": { + "target": "Package", + "version": "[2.3.0, )" + }, + "IngeniBridge.BuildUtils": { + "target": "Package", + "version": "[1.0.6, )" + }, + "IngeniBridge.Core": { + "target": "Package", + "version": "[1.0.37, )" + }, + "IngeniBridge.StorageAccessor.InMemory": { + "target": "Package", + "version": "[1.0.8, )" + }, + "JT.TechCases.Threading": { + "target": "Package", + "version": "[1.0.12, )" + }, + "System.Net.Http": { + "target": "Package", + "version": "[4.3.3, )" + }, + "log4net": { + "target": "Package", + "version": "[2.0.8, )" + } + } + } + }, + "runtimes": { + "win7-x86": { + "#import": [] + } + } + } +} \ No newline at end of file diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/packages.config b/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/packages.config deleted file mode 100644 index 016a847..0000000 --- a/IngeniBridge.TestServer/IngeniBridge.TestServer/IngeniBridge.TestServer/packages.config +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/packages/JT.TechCases.Threading.1.0.11/JT.TechCases.Threading.1.0.11.nupkg b/IngeniBridge.TestServer/IngeniBridge.TestServer/packages/JT.TechCases.Threading.1.0.11/JT.TechCases.Threading.1.0.11.nupkg deleted file mode 100644 index c479cd0..0000000 Binary files a/IngeniBridge.TestServer/IngeniBridge.TestServer/packages/JT.TechCases.Threading.1.0.11/JT.TechCases.Threading.1.0.11.nupkg and /dev/null differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/packages/JT.TechCases.Threading.1.0.11/lib/net45/JT.TechCases.Threading.XML b/IngeniBridge.TestServer/IngeniBridge.TestServer/packages/JT.TechCases.Threading.1.0.11/lib/net45/JT.TechCases.Threading.XML deleted file mode 100644 index de092d6..0000000 --- a/IngeniBridge.TestServer/IngeniBridge.TestServer/packages/JT.TechCases.Threading.1.0.11/lib/net45/JT.TechCases.Threading.XML +++ /dev/null @@ -1,788 +0,0 @@ - - - - JT.TechCases.Threading - - - - - This class is the base for all exceptions. It is important so it can be treated by the global handler. - - - - - Constructor. - - Message - - - - Constructor. - - Message - Inner exception - - - - Thread DoWork method cannot be null. - - - - - Constructor. - - - - - Error th creating an Thread. - - - - - Constructor. - - Message - - - - Error during execution of an Thread. - - - - - Constructor. - - Inner exception - - - - Error th calling Thread progress notification function. - - - - - Constructor. - - Inner exception - - - - Constructor. - - Message - Inner exception - - - - Error th calling Thread progress notification function. - - - - - Constructor. - - Inner exception - - - - Thread title cannot be null. - - - - - Constructor. - - - - - Thread pool title cannot be null. - - - - - Constructor. - - - - - Must call this method outside the thread. - - - - - Constructor. - - - - - Must call this method inside the thread. - - - - - Constructor. - - - - - Thread cannot be recycled. - - - - - Constructor. - - - - - Semaphore cannot be released. - - - - - Constructor. - - - - - Thread DoWork method cannot be null. - - - - - Constructor. - - - - - Abort method is obsolete. - - - - - Constructor. - - - - - Cannot call this method while thread running. - - - - - Constructor. - - - - - Cannot recycle thread pool after cancellation was requested - - - - - Constructor. - - - - - A strongly-typed resource class, for looking up localized strings, etc. - - - - - Returns the cached ResourceManager instance used by this class. - - - - - Overrides the current thread's CurrentUICulture property for all - resource lookups using this strongly typed resource class. - - - - - This class implement range splitting service - - - - - This function returns subranges from a whole range - - Lower bound - Higher bound - Number of sub ranges to be returned - User Data that wiil be rendered in each calculated SubRange - - - - - Callback for the LaunchSplitedTasks function, process the iteration - - The SubRange split being processed - the index withn the spitted task iteration - - - - Callback for the LaunchSplitedTasks function, initialize UserData into SubRange structure - - The SubRange structure where to set UserData data - - - - This method drives a splitted task for each iteration in callback - - The lower bound of the range (included) - The higher bound of the range (excluded) - The number of parallel iterations (driven by a dedicated pool) - Process callback - Init UserData callback - - - - This class contains a subrange - - - - - Lower bound - - - - - Higher bound - - - - - User Data that was passed at first call - - - - - The same as System.Threading class but without timeouts (wich is semantically nonsense) - - - - - Wait for entering a multiple read operation - - - - - release read operation - - - - - Wait for entering a single write operation - - - - - release write operation - - - - - displays object - - - - - - This class implements a monitorable semephore - - - - Constructor - Max value of the semaphore - - - Acquires the semaphoer - - - Releases the semaphore - - - Wait for the semaphore to come back down to 0 - - - - This property returns the actual count of the semaphore - - - - - displays object - - - - - - Callback function when semaphore is reset - - - - - Event to subscribe to notifications. - - - - - This class encapsulate a thread in the ADF framework. - - - - - Priority of the thread. - - - - - Maps to normal state. - - - - - Maps to lowest state. - - - - - The maximum amount of seconds an application must call CancelationPending property - - - - - Title of the thread. - - - - - Indicates wether cancellation has been requested, this is monitored from outside the thread, - to check the status from within the thread, call source.CheckStatus () - - true or false - - - - Indicates if the thread entered a sleep state - - true or false - - - - Current progression percentage - - The value of progress - - - - Current progression description - - - - - Indicates wether the thread is started - - - - - Thread priority. - - - - - This property erturns the owner pool - - - - - This property returns user data - - - - - This property indicates if the thread is running a long treatment - - - - - This property is set after the thread completed with an exception - - - - - This is an override because sometimes it may return the same key ... - - - - - - Starts the thread as STA by default - - - - - Starts the thread. - - the apartment state - - - - Starts later the thread as STA by default - - - - - Starts the thread but later. - - the apartment state - - - - This method reports thread progression. - - Percent progression - Description of the current step in progression - - - - Requests cancellation for the thread. - - - - - Indicates wether the thread is not responding. - - - - - - Callback function of the thread function - - The igniting Thread - - - - Event to subscribe to notifications. - - - - - Callback function of the thread progression - - The igniting Thread - Percent of progression - Description of the progression - - - - Event to subscribe to notifications. - - - - - Callback function of thread termination - - - - - - Event to subscribe to notifications. - - - - - Callback to the exception handler in the thread execution. - - The igniting Thread - The exception - - - - Event to subscribe to notifications. - - - - - Callback to notify the thread cancellation. - - The igniting Thread - - - - Event to subscribe to notifications. - - - - - This method calls all the delegates attached to an event - - the event - the event parameters - - - - This method calls all the delegates attached to an event - - the event - the event parameters - wait or not for the completion - - - - This method calls one delegate and checks if the origin is a winform - - the delegate - the delegate parameters - wait or not for the winform to return - the object returned from the delegate - - - - Abort must not be called - - - - - This method waits for the thread to finish - - - - - This method waits for the thread to finish - - The milliseconds timeout. - - - - This property indicates if the thread is suspended - - - - - Suspends this instance, must be called from outside the thread. - - - - - Resumes this instance. - - - - - The status of the current thread - - - - - The thread was suspended and was resumed - - - - - Cancellation has been requested, the thread must return execution immediatly - - - - - The thread is running normally - - - - - The thread is in a sleep instruction - - - - - This method returns the status of the thread, note that this method will handle the suspend mode - and must be called from within the thread - - The actual status - - - - This method resets the current sleep, if any - - - - - This method enters the thread into sleep mode, but will be automatically cancelled when calling RequestCancellation, - note that it must be called from within the thread - - - - - - Indicates wether the thread run and terminated at least once - - - - - This method lets the developer set the exception from within the DoWork body - so it is possible to gest it the termination - - the actual exception - - - - Returns the execution time spent by the thread (cannot be called before termination) - - - - - This class maintains a list of threads and is the only access point to create new ADFThreads. - - - - - This property returns the threads inside the pool - - - - - This property returns user data - - - - - Title of the pool. - - - - - The ThreadPool size - - - - - Returns the execution time spent by the thread (cannot be called before termination) - - - - - This method creates a new pool - - size of the pool - user data held into the pool - the pool - - - - This method creates a new pool using a default and shared title, if the titled pool does exist then it is simply returned for resue - - title of the pool - size of the pool - user data held into the pool - the pool - - - - This method creates a new pool using a default and unique title, if the titled pool does exist then a new title is created with unique appended counter - - title of the pool - size of the pool - user data held into the pool - the pool - - - - This method removes a pool - - the pool to remove - - - - This method retrieve a pool by name - - the pool name - - - - - This property returns the allocated pools - - - - - This method creates a thread. - - The title of the thread - The DoWork callback function that implements thread execution, cannot be null - The EndWork callback function that notifies thread termination - The ProgressWork callback function that notifies thread progression - The cancel thread notification method - user data - The Thread - - - - This method creates a thread. - - The title of the thread - The DoWork callback function that implements thread execution, cannot be null - The EndWork callback function that notifies thread termination - The ProgressWork callback function that notifies thread progression - The Thread - - - - This method creates a thread. - - The title of the thread - The DoWork callback function that implements thread execution, cannot be null - The EndWork callback function that notifies thread termination - The ProgressWork callback function that notifies thread progression - user data - The Thread - - - - This methods requests cancellation on all running threads - - - - - This method will wait for all threads to complete - - - - - Wait for completion of all threads in this pool - - - - - Event to subscribe to exception notifications. - - - - - Event to subscribe to exception notifications. - - - - - This delegate will notify when the pool changes - - - - - Event to subscribe - - - - - This delegate will notify when the threads terminate - - the owner pool - - - - Event to subscribe - - - - diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/packages/JT.TechCases.Threading.1.0.11/lib/net45/JT.TechCases.Threading.dll b/IngeniBridge.TestServer/IngeniBridge.TestServer/packages/JT.TechCases.Threading.1.0.11/lib/net45/JT.TechCases.Threading.dll deleted file mode 100644 index a5b38cc..0000000 Binary files a/IngeniBridge.TestServer/IngeniBridge.TestServer/packages/JT.TechCases.Threading.1.0.11/lib/net45/JT.TechCases.Threading.dll and /dev/null differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/packages/JT.TechCases.Threading.1.0.11/.signature.p7s b/IngeniBridge.TestServer/IngeniBridge.TestServer/packages/JT.TechCases.Threading.1.0.12/.signature.p7s similarity index 74% rename from IngeniBridge.TestServer/IngeniBridge.TestServer/packages/JT.TechCases.Threading.1.0.11/.signature.p7s rename to IngeniBridge.TestServer/IngeniBridge.TestServer/packages/JT.TechCases.Threading.1.0.12/.signature.p7s index 347e27b..0af96ce 100644 Binary files a/IngeniBridge.TestServer/IngeniBridge.TestServer/packages/JT.TechCases.Threading.1.0.11/.signature.p7s and b/IngeniBridge.TestServer/IngeniBridge.TestServer/packages/JT.TechCases.Threading.1.0.12/.signature.p7s differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/packages/JT.TechCases.Threading.1.0.12/JT.TechCases.Threading.1.0.12.nupkg b/IngeniBridge.TestServer/IngeniBridge.TestServer/packages/JT.TechCases.Threading.1.0.12/JT.TechCases.Threading.1.0.12.nupkg new file mode 100644 index 0000000..a8aa503 Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/packages/JT.TechCases.Threading.1.0.12/JT.TechCases.Threading.1.0.12.nupkg differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/packages/JT.TechCases.Threading.1.0.12/lib/net40/JT.TechCases.Threading.dll b/IngeniBridge.TestServer/IngeniBridge.TestServer/packages/JT.TechCases.Threading.1.0.12/lib/net40/JT.TechCases.Threading.dll new file mode 100644 index 0000000..66c2c6b Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/packages/JT.TechCases.Threading.1.0.12/lib/net40/JT.TechCases.Threading.dll differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/packages/JT.TechCases.Threading.1.0.12/lib/net45/JT.TechCases.Threading.dll b/IngeniBridge.TestServer/IngeniBridge.TestServer/packages/JT.TechCases.Threading.1.0.12/lib/net45/JT.TechCases.Threading.dll new file mode 100644 index 0000000..c448275 Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/packages/JT.TechCases.Threading.1.0.12/lib/net45/JT.TechCases.Threading.dll differ diff --git a/IngeniBridge.TestServer/IngeniBridge.TestServer/packages/JT.TechCases.Threading.1.0.12/lib/netstandard2.0/JT.TechCases.Threading.dll b/IngeniBridge.TestServer/IngeniBridge.TestServer/packages/JT.TechCases.Threading.1.0.12/lib/netstandard2.0/JT.TechCases.Threading.dll new file mode 100644 index 0000000..a36bb26 Binary files /dev/null and b/IngeniBridge.TestServer/IngeniBridge.TestServer/packages/JT.TechCases.Threading.1.0.12/lib/netstandard2.0/JT.TechCases.Threading.dll differ