├── .vs └── UnityIOC │ └── v15 │ ├── .suo │ ├── Server │ └── sqlite3 │ │ ├── db.lock │ │ ├── storage.ide │ │ ├── storage.ide-shm │ │ └── storage.ide-wal │ └── sqlite3 │ └── storage.ide ├── UnityIOC.sln ├── UnityIOC ├── App.config ├── Configs │ └── unityconfiguration.config ├── DependencyResolver.cs ├── IRechargeHandler.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── RechargeHandler.cs ├── UnityIOC.csproj ├── UnityIOC.csproj.user ├── bin │ └── Debug │ │ ├── CommonServiceLocator.dll │ │ ├── CommonServiceLocator.pdb │ │ ├── Configs │ │ └── unityconfiguration.config │ │ ├── Unity.Abstractions.dll │ │ ├── Unity.Configuration.dll │ │ ├── Unity.Container.dll │ │ ├── Unity.Container.pdb │ │ ├── Unity.Interception.Configuration.dll │ │ ├── Unity.Interception.Configuration.pdb │ │ ├── Unity.Interception.dll │ │ ├── Unity.Interception.pdb │ │ ├── Unity.RegistrationByConvention.dll │ │ ├── Unity.RegistrationByConvention.pdb │ │ ├── Unity.ServiceLocation.dll │ │ ├── Unity.ServiceLocation.pdb │ │ ├── UnityIOC.exe │ │ ├── UnityIOC.exe.config │ │ └── UnityIOC.pdb ├── obj │ ├── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── UnityIOC.csproj.CopyComplete │ │ ├── UnityIOC.csproj.CoreCompileInputs.cache │ │ ├── UnityIOC.csproj.FileListAbsolute.txt │ │ ├── UnityIOC.csprojResolveAssemblyReference.cache │ │ ├── UnityIOC.exe │ │ └── UnityIOC.pdb │ ├── UnityIOC.csproj.nuget.cache │ ├── UnityIOC.csproj.nuget.g.props │ ├── UnityIOC.csproj.nuget.g.targets │ └── project.assets.json └── packages.config └── packages ├── Unity.5.8.13 ├── .signature.p7s ├── Unity.5.8.13.nupkg └── lib │ ├── net40 │ ├── CommonServiceLocator.dll │ ├── CommonServiceLocator.pdb │ ├── Unity.Abstractions.dll │ ├── Unity.Abstractions.pdb │ ├── Unity.Configuration.dll │ ├── Unity.Configuration.pdb │ ├── Unity.Container.dll │ ├── Unity.Container.pdb │ ├── Unity.ServiceLocation.dll │ └── Unity.ServiceLocation.pdb │ ├── net45 │ ├── CommonServiceLocator.dll │ ├── CommonServiceLocator.pdb │ ├── Unity.Abstractions.dll │ ├── Unity.Abstractions.pdb │ ├── Unity.Configuration.dll │ ├── Unity.Configuration.pdb │ ├── Unity.Container.dll │ ├── Unity.Container.pdb │ ├── Unity.Interception.Configuration.dll │ ├── Unity.Interception.Configuration.pdb │ ├── Unity.Interception.dll │ ├── Unity.Interception.pdb │ ├── Unity.RegistrationByConvention.dll │ ├── Unity.RegistrationByConvention.pdb │ ├── Unity.ServiceLocation.dll │ └── Unity.ServiceLocation.pdb │ ├── net46 │ ├── CommonServiceLocator.dll │ ├── CommonServiceLocator.pdb │ ├── Unity.Abstractions.dll │ ├── Unity.Abstractions.pdb │ ├── Unity.Configuration.dll │ ├── Unity.Configuration.pdb │ ├── Unity.Container.dll │ ├── Unity.Container.pdb │ ├── Unity.Interception.Configuration.dll │ ├── Unity.Interception.Configuration.pdb │ ├── Unity.Interception.dll │ ├── Unity.Interception.pdb │ ├── Unity.RegistrationByConvention.dll │ ├── Unity.RegistrationByConvention.pdb │ ├── Unity.ServiceLocation.dll │ └── Unity.ServiceLocation.pdb │ ├── net47 │ ├── CommonServiceLocator.dll │ ├── CommonServiceLocator.pdb │ ├── Unity.Abstractions.dll │ ├── Unity.Abstractions.pdb │ ├── Unity.Configuration.dll │ ├── Unity.Configuration.pdb │ ├── Unity.Container.dll │ ├── Unity.Container.pdb │ ├── Unity.Interception.Configuration.dll │ ├── Unity.Interception.Configuration.pdb │ ├── Unity.Interception.dll │ ├── Unity.Interception.pdb │ ├── Unity.RegistrationByConvention.dll │ ├── Unity.RegistrationByConvention.pdb │ ├── Unity.ServiceLocation.dll │ └── Unity.ServiceLocation.pdb │ ├── netcoreapp1.0 │ ├── CommonServiceLocator.deps.json │ ├── CommonServiceLocator.dll │ ├── CommonServiceLocator.pdb │ ├── Unity.Abstractions.deps.json │ ├── Unity.Abstractions.dll │ ├── Unity.Abstractions.pdb │ ├── Unity.Container.deps.json │ ├── Unity.Container.dll │ ├── Unity.Container.pdb │ ├── Unity.ServiceLocation.deps.json │ ├── Unity.ServiceLocation.dll │ └── Unity.ServiceLocation.pdb │ ├── netcoreapp2.0 │ ├── CommonServiceLocator.deps.json │ ├── CommonServiceLocator.dll │ ├── CommonServiceLocator.pdb │ ├── Unity.Abstractions.deps.json │ ├── Unity.Abstractions.dll │ ├── Unity.Abstractions.pdb │ ├── Unity.Configuration.deps.json │ ├── Unity.Configuration.dll │ ├── Unity.Configuration.pdb │ ├── Unity.Container.deps.json │ ├── Unity.Container.dll │ ├── Unity.Container.pdb │ ├── Unity.Interception.Configuration.deps.json │ ├── Unity.Interception.Configuration.dll │ ├── Unity.Interception.Configuration.pdb │ ├── Unity.Interception.deps.json │ ├── Unity.Interception.dll │ ├── Unity.Interception.pdb │ ├── Unity.RegistrationByConvention.deps.json │ ├── Unity.RegistrationByConvention.dll │ ├── Unity.RegistrationByConvention.pdb │ ├── Unity.ServiceLocation.deps.json │ ├── Unity.ServiceLocation.dll │ └── Unity.ServiceLocation.pdb │ ├── netstandard1.0 │ ├── CommonServiceLocator.deps.json │ ├── CommonServiceLocator.dll │ ├── CommonServiceLocator.pdb │ ├── Unity.Abstractions.deps.json │ ├── Unity.Abstractions.dll │ ├── Unity.Abstractions.pdb │ ├── Unity.Container.deps.json │ ├── Unity.Container.dll │ ├── Unity.Container.pdb │ ├── Unity.ServiceLocation.deps.json │ ├── Unity.ServiceLocation.dll │ └── Unity.ServiceLocation.pdb │ └── netstandard2.0 │ ├── CommonServiceLocator.deps.json │ ├── CommonServiceLocator.dll │ ├── CommonServiceLocator.pdb │ ├── Unity.Abstractions.deps.json │ ├── Unity.Abstractions.dll │ ├── Unity.Abstractions.pdb │ ├── Unity.Configuration.deps.json │ ├── Unity.Configuration.dll │ ├── Unity.Configuration.pdb │ ├── Unity.Container.deps.json │ ├── Unity.Container.dll │ ├── Unity.Container.pdb │ ├── Unity.Interception.Configuration.deps.json │ ├── Unity.Interception.Configuration.dll │ ├── Unity.Interception.Configuration.pdb │ ├── Unity.Interception.deps.json │ ├── Unity.Interception.dll │ ├── Unity.Interception.pdb │ ├── Unity.RegistrationByConvention.deps.json │ ├── Unity.RegistrationByConvention.dll │ ├── Unity.RegistrationByConvention.pdb │ ├── Unity.ServiceLocation.deps.json │ ├── Unity.ServiceLocation.dll │ └── Unity.ServiceLocation.pdb ├── Unity.Abstractions.3.3.1 ├── .signature.p7s ├── Unity.Abstractions.3.3.1.nupkg └── lib │ ├── net40 │ └── Unity.Abstractions.dll │ ├── net45 │ └── Unity.Abstractions.dll │ ├── net46 │ └── Unity.Abstractions.dll │ ├── net47 │ └── Unity.Abstractions.dll │ ├── netcoreapp1.0 │ └── Unity.Abstractions.dll │ ├── netcoreapp2.0 │ └── Unity.Abstractions.dll │ ├── netstandard1.0 │ └── Unity.Abstractions.dll │ └── netstandard2.0 │ └── Unity.Abstractions.dll └── Unity.Configuration.5.2.5 ├── .signature.p7s ├── Unity.Configuration.5.2.5.nupkg └── lib ├── net40 └── Unity.Configuration.dll ├── net45 └── Unity.Configuration.dll ├── net46 └── Unity.Configuration.dll ├── net47 └── Unity.Configuration.dll ├── netcoreapp2.0 └── Unity.Configuration.dll └── netstandard2.0 └── Unity.Configuration.dll /.vs/UnityIOC/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/.vs/UnityIOC/v15/.suo -------------------------------------------------------------------------------- /.vs/UnityIOC/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/.vs/UnityIOC/v15/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /.vs/UnityIOC/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/.vs/UnityIOC/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /.vs/UnityIOC/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/.vs/UnityIOC/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /.vs/UnityIOC/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/.vs/UnityIOC/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /.vs/UnityIOC/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/.vs/UnityIOC/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /UnityIOC.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.27428.2015 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnityIOC", "UnityIOC\UnityIOC.csproj", "{F32096B2-3DB9-4682-9803-BD5E8BB226BB}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {F32096B2-3DB9-4682-9803-BD5E8BB226BB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {F32096B2-3DB9-4682-9803-BD5E8BB226BB}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {F32096B2-3DB9-4682-9803-BD5E8BB226BB}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {F32096B2-3DB9-4682-9803-BD5E8BB226BB}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {F2974189-39FA-47DC-B1F8-4902DC475E7C} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /UnityIOC/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /UnityIOC/Configs/unityconfiguration.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /UnityIOC/DependencyResolver.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using Microsoft.Practices.Unity; 7 | using Microsoft.Practices.Unity.Configuration; 8 | using Unity; 9 | 10 | namespace UnityIOC 11 | { 12 | public class DependencyResolver 13 | { 14 | public static IUnityContainer Container 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | private static readonly object obj = new Object(); 21 | private DependencyResolver() 22 | { 23 | } 24 | 25 | private static void GetContainer() 26 | { 27 | if (Container == null) 28 | lock (obj) 29 | { 30 | Container = new UnityContainer(); 31 | Container.LoadConfiguration(); 32 | } 33 | } 34 | 35 | public static T LoadDependency() 36 | { 37 | GetContainer(); 38 | return Container.Resolve(); 39 | } 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /UnityIOC/IRechargeHandler.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace UnityIOC 8 | { 9 | public interface IRechargeHandler 10 | { 11 | void DoRecharge(); 12 | 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /UnityIOC/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace UnityIOC 8 | { 9 | class Program 10 | { 11 | static void Main(string[] args) 12 | { 13 | IRechargeHandler rHandler = DependencyResolver.LoadDependency(); 14 | rHandler.DoRecharge(); 15 | Console.ReadLine(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /UnityIOC/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("UnityIOC")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("UnityIOC")] 13 | [assembly: AssemblyCopyright("Copyright © 2018")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("f32096b2-3db9-4682-9803-bd5e8bb226bb")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /UnityIOC/RechargeHandler.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace UnityIOC 8 | { 9 | public class RechargeHandler : IRechargeHandler 10 | { 11 | public void DoRecharge() 12 | { 13 | Console.WriteLine("Recharge is done successfully."); 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /UnityIOC/UnityIOC.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {F32096B2-3DB9-4682-9803-BD5E8BB226BB} 8 | Exe 9 | UnityIOC 10 | UnityIOC 11 | v4.5.1 12 | 512 13 | true 14 | 15 | 16 | 17 | AnyCPU 18 | true 19 | full 20 | false 21 | bin\Debug\ 22 | DEBUG;TRACE 23 | prompt 24 | 4 25 | 26 | 27 | AnyCPU 28 | pdbonly 29 | true 30 | bin\Release\ 31 | TRACE 32 | prompt 33 | 4 34 | 35 | 36 | 37 | ..\packages\Unity.5.8.13\lib\net45\CommonServiceLocator.dll 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | ..\packages\Unity.Abstractions.3.3.1\lib\net45\Unity.Abstractions.dll 50 | 51 | 52 | ..\packages\Unity.Configuration.5.2.5\lib\net45\Unity.Configuration.dll 53 | 54 | 55 | ..\packages\Unity.5.8.13\lib\net45\Unity.Container.dll 56 | 57 | 58 | ..\packages\Unity.5.8.13\lib\net45\Unity.Interception.dll 59 | 60 | 61 | ..\packages\Unity.5.8.13\lib\net45\Unity.Interception.Configuration.dll 62 | 63 | 64 | ..\packages\Unity.5.8.13\lib\net45\Unity.RegistrationByConvention.dll 65 | 66 | 67 | ..\packages\Unity.5.8.13\lib\net45\Unity.ServiceLocation.dll 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | Designer 80 | 81 | 82 | PreserveNewest 83 | Designer 84 | 85 | 86 | 87 | 88 | 89 | 90 | -------------------------------------------------------------------------------- /UnityIOC/UnityIOC.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ShowAllFiles 5 | 6 | -------------------------------------------------------------------------------- /UnityIOC/bin/Debug/CommonServiceLocator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/UnityIOC/bin/Debug/CommonServiceLocator.dll -------------------------------------------------------------------------------- /UnityIOC/bin/Debug/CommonServiceLocator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/UnityIOC/bin/Debug/CommonServiceLocator.pdb -------------------------------------------------------------------------------- /UnityIOC/bin/Debug/Configs/unityconfiguration.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /UnityIOC/bin/Debug/Unity.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/UnityIOC/bin/Debug/Unity.Abstractions.dll -------------------------------------------------------------------------------- /UnityIOC/bin/Debug/Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/UnityIOC/bin/Debug/Unity.Configuration.dll -------------------------------------------------------------------------------- /UnityIOC/bin/Debug/Unity.Container.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/UnityIOC/bin/Debug/Unity.Container.dll -------------------------------------------------------------------------------- /UnityIOC/bin/Debug/Unity.Container.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/UnityIOC/bin/Debug/Unity.Container.pdb -------------------------------------------------------------------------------- /UnityIOC/bin/Debug/Unity.Interception.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/UnityIOC/bin/Debug/Unity.Interception.Configuration.dll -------------------------------------------------------------------------------- /UnityIOC/bin/Debug/Unity.Interception.Configuration.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/UnityIOC/bin/Debug/Unity.Interception.Configuration.pdb -------------------------------------------------------------------------------- /UnityIOC/bin/Debug/Unity.Interception.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/UnityIOC/bin/Debug/Unity.Interception.dll -------------------------------------------------------------------------------- /UnityIOC/bin/Debug/Unity.Interception.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/UnityIOC/bin/Debug/Unity.Interception.pdb -------------------------------------------------------------------------------- /UnityIOC/bin/Debug/Unity.RegistrationByConvention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/UnityIOC/bin/Debug/Unity.RegistrationByConvention.dll -------------------------------------------------------------------------------- /UnityIOC/bin/Debug/Unity.RegistrationByConvention.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/UnityIOC/bin/Debug/Unity.RegistrationByConvention.pdb -------------------------------------------------------------------------------- /UnityIOC/bin/Debug/Unity.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/UnityIOC/bin/Debug/Unity.ServiceLocation.dll -------------------------------------------------------------------------------- /UnityIOC/bin/Debug/Unity.ServiceLocation.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/UnityIOC/bin/Debug/Unity.ServiceLocation.pdb -------------------------------------------------------------------------------- /UnityIOC/bin/Debug/UnityIOC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/UnityIOC/bin/Debug/UnityIOC.exe -------------------------------------------------------------------------------- /UnityIOC/bin/Debug/UnityIOC.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /UnityIOC/bin/Debug/UnityIOC.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/UnityIOC/bin/Debug/UnityIOC.pdb -------------------------------------------------------------------------------- /UnityIOC/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/UnityIOC/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /UnityIOC/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/UnityIOC/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /UnityIOC/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/UnityIOC/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /UnityIOC/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/UnityIOC/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /UnityIOC/obj/Debug/UnityIOC.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/UnityIOC/obj/Debug/UnityIOC.csproj.CopyComplete -------------------------------------------------------------------------------- /UnityIOC/obj/Debug/UnityIOC.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 124544a6e3dd1a28ad0b03cf3f3d26cb55386de7 2 | -------------------------------------------------------------------------------- /UnityIOC/obj/Debug/UnityIOC.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\Akshay\RND\UnityIOC\UnityIOC\bin\Debug\Configs\unityconfiguration.config 2 | D:\Akshay\RND\UnityIOC\UnityIOC\bin\Debug\UnityIOC.exe.config 3 | D:\Akshay\RND\UnityIOC\UnityIOC\bin\Debug\UnityIOC.exe 4 | D:\Akshay\RND\UnityIOC\UnityIOC\bin\Debug\UnityIOC.pdb 5 | D:\Akshay\RND\UnityIOC\UnityIOC\bin\Debug\Microsoft.Practices.ServiceLocation.dll 6 | D:\Akshay\RND\UnityIOC\UnityIOC\bin\Debug\Microsoft.Practices.ServiceLocation.pdb 7 | D:\Akshay\RND\UnityIOC\UnityIOC\bin\Debug\Microsoft.Practices.Unity.Configuration.dll 8 | D:\Akshay\RND\UnityIOC\UnityIOC\bin\Debug\Microsoft.Practices.Unity.RegistrationByConvention.dll 9 | D:\Akshay\RND\UnityIOC\UnityIOC\bin\Debug\Microsoft.Practices.Unity.dll 10 | D:\Akshay\RND\UnityIOC\UnityIOC\obj\Debug\UnityIOC.csproj.CoreCompileInputs.cache 11 | D:\Akshay\RND\UnityIOC\UnityIOC\obj\Debug\UnityIOC.csproj.CopyComplete 12 | D:\Akshay\RND\UnityIOC\UnityIOC\obj\Debug\UnityIOC.exe 13 | D:\Akshay\RND\UnityIOC\UnityIOC\obj\Debug\UnityIOC.pdb 14 | D:\Akshay\RND\UnityIOC\UnityIOC\obj\Debug\UnityIOC.csprojResolveAssemblyReference.cache 15 | C:\Users\Akshay\Downloads\RND\UnityIOC\UnityIOC\bin\Debug\Configs\unityconfiguration.config 16 | C:\Users\Akshay\Downloads\RND\UnityIOC\UnityIOC\bin\Debug\UnityIOC.exe.config 17 | C:\Users\Akshay\Downloads\RND\UnityIOC\UnityIOC\bin\Debug\UnityIOC.exe 18 | C:\Users\Akshay\Downloads\RND\UnityIOC\UnityIOC\bin\Debug\UnityIOC.pdb 19 | C:\Users\Akshay\Downloads\RND\UnityIOC\UnityIOC\obj\Debug\UnityIOC.csproj.CoreCompileInputs.cache 20 | C:\Users\Akshay\Downloads\RND\UnityIOC\UnityIOC\obj\Debug\UnityIOC.csproj.CopyComplete 21 | C:\Users\Akshay\Downloads\RND\UnityIOC\UnityIOC\obj\Debug\UnityIOC.exe 22 | C:\Users\Akshay\Downloads\RND\UnityIOC\UnityIOC\obj\Debug\UnityIOC.pdb 23 | C:\Users\Akshay\Downloads\RND\UnityIOC\UnityIOC\bin\Debug\CommonServiceLocator.dll 24 | C:\Users\Akshay\Downloads\RND\UnityIOC\UnityIOC\bin\Debug\Unity.Abstractions.dll 25 | C:\Users\Akshay\Downloads\RND\UnityIOC\UnityIOC\bin\Debug\Unity.ServiceLocation.dll 26 | C:\Users\Akshay\Downloads\RND\UnityIOC\UnityIOC\bin\Debug\Unity.Configuration.dll 27 | C:\Users\Akshay\Downloads\RND\UnityIOC\UnityIOC\bin\Debug\Unity.Container.dll 28 | C:\Users\Akshay\Downloads\RND\UnityIOC\UnityIOC\bin\Debug\Unity.Interception.Configuration.dll 29 | C:\Users\Akshay\Downloads\RND\UnityIOC\UnityIOC\bin\Debug\Unity.Interception.dll 30 | C:\Users\Akshay\Downloads\RND\UnityIOC\UnityIOC\bin\Debug\Unity.RegistrationByConvention.dll 31 | C:\Users\Akshay\Downloads\RND\UnityIOC\UnityIOC\bin\Debug\CommonServiceLocator.pdb 32 | C:\Users\Akshay\Downloads\RND\UnityIOC\UnityIOC\bin\Debug\Unity.Container.pdb 33 | C:\Users\Akshay\Downloads\RND\UnityIOC\UnityIOC\bin\Debug\Unity.Interception.pdb 34 | C:\Users\Akshay\Downloads\RND\UnityIOC\UnityIOC\bin\Debug\Unity.Interception.Configuration.pdb 35 | C:\Users\Akshay\Downloads\RND\UnityIOC\UnityIOC\bin\Debug\Unity.RegistrationByConvention.pdb 36 | C:\Users\Akshay\Downloads\RND\UnityIOC\UnityIOC\bin\Debug\Unity.ServiceLocation.pdb 37 | -------------------------------------------------------------------------------- /UnityIOC/obj/Debug/UnityIOC.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/UnityIOC/obj/Debug/UnityIOC.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /UnityIOC/obj/Debug/UnityIOC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/UnityIOC/obj/Debug/UnityIOC.exe -------------------------------------------------------------------------------- /UnityIOC/obj/Debug/UnityIOC.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/UnityIOC/obj/Debug/UnityIOC.pdb -------------------------------------------------------------------------------- /UnityIOC/obj/UnityIOC.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "rHueBVEPRF4XycsMeI0DX0YEGD2eB5TPBV/d1R1Q+q++uxxgLGAQqWbiULXpO08Ccmb842BndJjdKeJnfnX5aQ==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /UnityIOC/obj/UnityIOC.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | C:\Users\Akshay\Downloads\RND\UnityIOC\UnityIOC\obj\project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\Akshay\.nuget\packages\ 9 | PackageReference 10 | 4.9.0 11 | 12 | 13 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 14 | 15 | -------------------------------------------------------------------------------- /UnityIOC/obj/UnityIOC.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | -------------------------------------------------------------------------------- /UnityIOC/obj/project.assets.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "targets": { 4 | ".NETFramework,Version=v4.5.1": {}, 5 | ".NETFramework,Version=v4.5.1/win": {}, 6 | ".NETFramework,Version=v4.5.1/win-x64": {}, 7 | ".NETFramework,Version=v4.5.1/win-x86": {} 8 | }, 9 | "libraries": {}, 10 | "projectFileDependencyGroups": { 11 | ".NETFramework,Version=v4.5.1": [] 12 | }, 13 | "packageFolders": { 14 | "C:\\Users\\Akshay\\.nuget\\packages\\": {} 15 | }, 16 | "project": { 17 | "version": "1.0.0", 18 | "restore": { 19 | "projectUniqueName": "C:\\Users\\Akshay\\Downloads\\RND\\UnityIOC\\UnityIOC\\UnityIOC.csproj", 20 | "projectName": "UnityIOC", 21 | "projectPath": "C:\\Users\\Akshay\\Downloads\\RND\\UnityIOC\\UnityIOC\\UnityIOC.csproj", 22 | "packagesPath": "C:\\Users\\Akshay\\.nuget\\packages\\", 23 | "outputPath": "C:\\Users\\Akshay\\Downloads\\RND\\UnityIOC\\UnityIOC\\obj\\", 24 | "projectStyle": "PackageReference", 25 | "skipContentFileWrite": true, 26 | "configFilePaths": [ 27 | "C:\\Users\\Akshay\\AppData\\Roaming\\NuGet\\NuGet.Config", 28 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 29 | ], 30 | "originalTargetFrameworks": [ 31 | "net451" 32 | ], 33 | "sources": { 34 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 35 | "https://api.nuget.org/v3/index.json": {} 36 | }, 37 | "frameworks": { 38 | "net451": { 39 | "projectReferences": {} 40 | } 41 | } 42 | }, 43 | "frameworks": { 44 | "net451": {} 45 | }, 46 | "runtimes": { 47 | "win": { 48 | "#import": [] 49 | }, 50 | "win-x64": { 51 | "#import": [] 52 | }, 53 | "win-x86": { 54 | "#import": [] 55 | } 56 | } 57 | } 58 | } -------------------------------------------------------------------------------- /UnityIOC/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/Unity.5.8.13/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/.signature.p7s -------------------------------------------------------------------------------- /packages/Unity.5.8.13/Unity.5.8.13.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/Unity.5.8.13.nupkg -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net40/CommonServiceLocator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net40/CommonServiceLocator.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net40/CommonServiceLocator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net40/CommonServiceLocator.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net40/Unity.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net40/Unity.Abstractions.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net40/Unity.Abstractions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net40/Unity.Abstractions.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net40/Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net40/Unity.Configuration.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net40/Unity.Configuration.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net40/Unity.Configuration.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net40/Unity.Container.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net40/Unity.Container.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net40/Unity.Container.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net40/Unity.Container.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net40/Unity.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net40/Unity.ServiceLocation.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net40/Unity.ServiceLocation.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net40/Unity.ServiceLocation.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net45/CommonServiceLocator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net45/CommonServiceLocator.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net45/CommonServiceLocator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net45/CommonServiceLocator.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net45/Unity.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net45/Unity.Abstractions.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net45/Unity.Abstractions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net45/Unity.Abstractions.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net45/Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net45/Unity.Configuration.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net45/Unity.Configuration.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net45/Unity.Configuration.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net45/Unity.Container.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net45/Unity.Container.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net45/Unity.Container.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net45/Unity.Container.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net45/Unity.Interception.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net45/Unity.Interception.Configuration.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net45/Unity.Interception.Configuration.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net45/Unity.Interception.Configuration.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net45/Unity.Interception.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net45/Unity.Interception.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net45/Unity.Interception.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net45/Unity.Interception.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net45/Unity.RegistrationByConvention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net45/Unity.RegistrationByConvention.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net45/Unity.RegistrationByConvention.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net45/Unity.RegistrationByConvention.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net45/Unity.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net45/Unity.ServiceLocation.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net45/Unity.ServiceLocation.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net45/Unity.ServiceLocation.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net46/CommonServiceLocator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net46/CommonServiceLocator.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net46/CommonServiceLocator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net46/CommonServiceLocator.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net46/Unity.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net46/Unity.Abstractions.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net46/Unity.Abstractions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net46/Unity.Abstractions.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net46/Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net46/Unity.Configuration.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net46/Unity.Configuration.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net46/Unity.Configuration.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net46/Unity.Container.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net46/Unity.Container.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net46/Unity.Container.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net46/Unity.Container.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net46/Unity.Interception.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net46/Unity.Interception.Configuration.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net46/Unity.Interception.Configuration.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net46/Unity.Interception.Configuration.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net46/Unity.Interception.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net46/Unity.Interception.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net46/Unity.Interception.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net46/Unity.Interception.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net46/Unity.RegistrationByConvention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net46/Unity.RegistrationByConvention.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net46/Unity.RegistrationByConvention.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net46/Unity.RegistrationByConvention.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net46/Unity.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net46/Unity.ServiceLocation.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net46/Unity.ServiceLocation.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net46/Unity.ServiceLocation.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net47/CommonServiceLocator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net47/CommonServiceLocator.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net47/CommonServiceLocator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net47/CommonServiceLocator.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net47/Unity.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net47/Unity.Abstractions.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net47/Unity.Abstractions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net47/Unity.Abstractions.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net47/Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net47/Unity.Configuration.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net47/Unity.Configuration.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net47/Unity.Configuration.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net47/Unity.Container.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net47/Unity.Container.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net47/Unity.Container.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net47/Unity.Container.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net47/Unity.Interception.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net47/Unity.Interception.Configuration.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net47/Unity.Interception.Configuration.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net47/Unity.Interception.Configuration.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net47/Unity.Interception.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net47/Unity.Interception.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net47/Unity.Interception.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net47/Unity.Interception.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net47/Unity.RegistrationByConvention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net47/Unity.RegistrationByConvention.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net47/Unity.RegistrationByConvention.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net47/Unity.RegistrationByConvention.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net47/Unity.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net47/Unity.ServiceLocation.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/net47/Unity.ServiceLocation.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/net47/Unity.ServiceLocation.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp1.0/CommonServiceLocator.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v1.0", 4 | "signature": "da39a3ee5e6b4b0d3255bfef95601890afd80709" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v1.0": { 9 | "CommonServiceLocator/2.0.4": { 10 | "runtime": { 11 | "CommonServiceLocator.dll": {} 12 | } 13 | } 14 | } 15 | }, 16 | "libraries": { 17 | "CommonServiceLocator/2.0.4": { 18 | "type": "project", 19 | "serviceable": false, 20 | "sha512": "" 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp1.0/CommonServiceLocator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netcoreapp1.0/CommonServiceLocator.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp1.0/CommonServiceLocator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netcoreapp1.0/CommonServiceLocator.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp1.0/Unity.Abstractions.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v1.0", 4 | "signature": "da39a3ee5e6b4b0d3255bfef95601890afd80709" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v1.0": { 9 | "Unity.Abstractions/3.3.1": { 10 | "runtime": { 11 | "Unity.Abstractions.dll": {} 12 | } 13 | } 14 | } 15 | }, 16 | "libraries": { 17 | "Unity.Abstractions/3.3.1": { 18 | "type": "project", 19 | "serviceable": false, 20 | "sha512": "" 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp1.0/Unity.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netcoreapp1.0/Unity.Abstractions.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp1.0/Unity.Abstractions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netcoreapp1.0/Unity.Abstractions.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp1.0/Unity.Container.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v1.0", 4 | "signature": "da39a3ee5e6b4b0d3255bfef95601890afd80709" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v1.0": { 9 | "Unity.Container/5.8.13": { 10 | "dependencies": { 11 | "Unity.Abstractions": "3.3.1" 12 | }, 13 | "runtime": { 14 | "Unity.Container.dll": {} 15 | } 16 | }, 17 | "Unity.Abstractions/3.3.1": { 18 | "runtime": { 19 | "Unity.Abstractions.dll": {} 20 | } 21 | } 22 | } 23 | }, 24 | "libraries": { 25 | "Unity.Container/5.8.13": { 26 | "type": "project", 27 | "serviceable": false, 28 | "sha512": "" 29 | }, 30 | "Unity.Abstractions/3.3.1": { 31 | "type": "project", 32 | "serviceable": false, 33 | "sha512": "" 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp1.0/Unity.Container.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netcoreapp1.0/Unity.Container.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp1.0/Unity.Container.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netcoreapp1.0/Unity.Container.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp1.0/Unity.ServiceLocation.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v1.0", 4 | "signature": "da39a3ee5e6b4b0d3255bfef95601890afd80709" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v1.0": { 9 | "Unity.ServiceLocation/2.1.2": { 10 | "dependencies": { 11 | "CommonServiceLocator": "2.0.4", 12 | "Unity.Abstractions": "3.3.1" 13 | }, 14 | "runtime": { 15 | "Unity.ServiceLocation.dll": {} 16 | } 17 | }, 18 | "CommonServiceLocator/2.0.4": { 19 | "runtime": { 20 | "CommonServiceLocator.dll": {} 21 | } 22 | }, 23 | "Unity.Abstractions/3.3.1": { 24 | "runtime": { 25 | "Unity.Abstractions.dll": {} 26 | } 27 | } 28 | } 29 | }, 30 | "libraries": { 31 | "Unity.ServiceLocation/2.1.2": { 32 | "type": "project", 33 | "serviceable": false, 34 | "sha512": "" 35 | }, 36 | "CommonServiceLocator/2.0.4": { 37 | "type": "project", 38 | "serviceable": false, 39 | "sha512": "" 40 | }, 41 | "Unity.Abstractions/3.3.1": { 42 | "type": "project", 43 | "serviceable": false, 44 | "sha512": "" 45 | } 46 | } 47 | } -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp1.0/Unity.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netcoreapp1.0/Unity.ServiceLocation.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp1.0/Unity.ServiceLocation.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netcoreapp1.0/Unity.ServiceLocation.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp2.0/CommonServiceLocator.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v2.0", 4 | "signature": "da39a3ee5e6b4b0d3255bfef95601890afd80709" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v2.0": { 9 | "CommonServiceLocator/2.0.4": { 10 | "runtime": { 11 | "CommonServiceLocator.dll": {} 12 | } 13 | } 14 | } 15 | }, 16 | "libraries": { 17 | "CommonServiceLocator/2.0.4": { 18 | "type": "project", 19 | "serviceable": false, 20 | "sha512": "" 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp2.0/CommonServiceLocator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netcoreapp2.0/CommonServiceLocator.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp2.0/CommonServiceLocator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netcoreapp2.0/CommonServiceLocator.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.Abstractions.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v2.0", 4 | "signature": "da39a3ee5e6b4b0d3255bfef95601890afd80709" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v2.0": { 9 | "Unity.Abstractions/3.3.1": { 10 | "runtime": { 11 | "Unity.Abstractions.dll": {} 12 | } 13 | } 14 | } 15 | }, 16 | "libraries": { 17 | "Unity.Abstractions/3.3.1": { 18 | "type": "project", 19 | "serviceable": false, 20 | "sha512": "" 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.Abstractions.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.Abstractions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.Abstractions.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.Configuration.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v2.0", 4 | "signature": "bf44e1fd7af08895e4a20c297d47b662a3467068" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v2.0": { 9 | "Unity.Configuration/5.2.5": { 10 | "dependencies": { 11 | "System.Configuration.ConfigurationManager": "4.4.1", 12 | "Unity.Abstractions": "3.3.1" 13 | }, 14 | "runtime": { 15 | "Unity.Configuration.dll": {} 16 | } 17 | }, 18 | "System.Configuration.ConfigurationManager/4.4.1": { 19 | "dependencies": { 20 | "System.Security.Cryptography.ProtectedData": "4.4.0" 21 | }, 22 | "runtime": { 23 | "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { 24 | "assemblyVersion": "4.0.0.0", 25 | "fileVersion": "4.6.25921.2" 26 | } 27 | } 28 | }, 29 | "System.Security.Cryptography.ProtectedData/4.4.0": { 30 | "runtime": { 31 | "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { 32 | "assemblyVersion": "4.0.2.0", 33 | "fileVersion": "4.6.25519.3" 34 | } 35 | }, 36 | "runtimeTargets": { 37 | "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { 38 | "rid": "win", 39 | "assetType": "runtime", 40 | "assemblyVersion": "4.0.2.0", 41 | "fileVersion": "4.6.25519.3" 42 | } 43 | } 44 | }, 45 | "Unity.Abstractions/3.3.1": { 46 | "runtime": { 47 | "Unity.Abstractions.dll": {} 48 | } 49 | } 50 | } 51 | }, 52 | "libraries": { 53 | "Unity.Configuration/5.2.5": { 54 | "type": "project", 55 | "serviceable": false, 56 | "sha512": "" 57 | }, 58 | "System.Configuration.ConfigurationManager/4.4.1": { 59 | "type": "package", 60 | "serviceable": true, 61 | "sha512": "sha512-LoSjM/kLDpyLyoGsmwS5oVMRzHf/0XHkRpr3QZu/HuAv6Sfk919usTMLqD9N9VK3S4Q2+bd3tKJ0ko4MYFfq4Q==", 62 | "path": "system.configuration.configurationmanager/4.4.1", 63 | "hashPath": "system.configuration.configurationmanager.4.4.1.nupkg.sha512" 64 | }, 65 | "System.Security.Cryptography.ProtectedData/4.4.0": { 66 | "type": "package", 67 | "serviceable": true, 68 | "sha512": "sha512-WwEexvBd+17yfY7fcS+fBGl+HADEfCJuKeDJqBT7D6j6vKwYvfLyGuq2y/MmrKORC6mbYwth7kjinO1mPhTL3g==", 69 | "path": "system.security.cryptography.protecteddata/4.4.0", 70 | "hashPath": "system.security.cryptography.protecteddata.4.4.0.nupkg.sha512" 71 | }, 72 | "Unity.Abstractions/3.3.1": { 73 | "type": "project", 74 | "serviceable": false, 75 | "sha512": "" 76 | } 77 | } 78 | } -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.Configuration.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.Configuration.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.Configuration.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.Container.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v2.0", 4 | "signature": "da39a3ee5e6b4b0d3255bfef95601890afd80709" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v2.0": { 9 | "Unity.Container/5.8.13": { 10 | "dependencies": { 11 | "Unity.Abstractions": "3.3.1" 12 | }, 13 | "runtime": { 14 | "Unity.Container.dll": {} 15 | } 16 | }, 17 | "Unity.Abstractions/3.3.1": { 18 | "runtime": { 19 | "Unity.Abstractions.dll": {} 20 | } 21 | } 22 | } 23 | }, 24 | "libraries": { 25 | "Unity.Container/5.8.13": { 26 | "type": "project", 27 | "serviceable": false, 28 | "sha512": "" 29 | }, 30 | "Unity.Abstractions/3.3.1": { 31 | "type": "project", 32 | "serviceable": false, 33 | "sha512": "" 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.Container.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.Container.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.Container.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.Container.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.Interception.Configuration.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v2.0", 4 | "signature": "c88235425ebe1d963904962e05bb0d687275bda0" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v2.0": { 9 | "Unity.Interception.Configuration/5.1.7": { 10 | "dependencies": { 11 | "Unity.Abstractions": "3.3.1", 12 | "Unity.Configuration": "5.2.5", 13 | "Unity.Interception": "5.5.5" 14 | }, 15 | "runtime": { 16 | "Unity.Interception.Configuration.dll": {} 17 | } 18 | }, 19 | "Microsoft.NETCore.Targets/1.1.0": {}, 20 | "System.Configuration.ConfigurationManager/4.4.1": { 21 | "dependencies": { 22 | "System.Security.Cryptography.ProtectedData": "4.4.0" 23 | }, 24 | "runtime": { 25 | "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { 26 | "assemblyVersion": "4.0.0.0", 27 | "fileVersion": "4.6.25921.2" 28 | } 29 | } 30 | }, 31 | "System.IO/4.3.0": { 32 | "dependencies": { 33 | "Microsoft.NETCore.Targets": "1.1.0", 34 | "System.Runtime": "4.3.0", 35 | "System.Text.Encoding": "4.3.0", 36 | "System.Threading.Tasks": "4.3.0" 37 | } 38 | }, 39 | "System.Reflection/4.3.0": { 40 | "dependencies": { 41 | "Microsoft.NETCore.Targets": "1.1.0", 42 | "System.IO": "4.3.0", 43 | "System.Reflection.Primitives": "4.3.0", 44 | "System.Runtime": "4.3.0" 45 | } 46 | }, 47 | "System.Reflection.Emit/4.3.0": { 48 | "dependencies": { 49 | "System.IO": "4.3.0", 50 | "System.Reflection": "4.3.0", 51 | "System.Reflection.Emit.ILGeneration": "4.3.0", 52 | "System.Reflection.Primitives": "4.3.0", 53 | "System.Runtime": "4.3.0" 54 | } 55 | }, 56 | "System.Reflection.Emit.ILGeneration/4.3.0": { 57 | "dependencies": { 58 | "System.Reflection": "4.3.0", 59 | "System.Reflection.Primitives": "4.3.0", 60 | "System.Runtime": "4.3.0" 61 | } 62 | }, 63 | "System.Reflection.Primitives/4.3.0": { 64 | "dependencies": { 65 | "Microsoft.NETCore.Targets": "1.1.0", 66 | "System.Runtime": "4.3.0" 67 | } 68 | }, 69 | "System.Runtime/4.3.0": { 70 | "dependencies": { 71 | "Microsoft.NETCore.Targets": "1.1.0" 72 | } 73 | }, 74 | "System.Security.Cryptography.ProtectedData/4.4.0": { 75 | "runtime": { 76 | "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { 77 | "assemblyVersion": "4.0.2.0", 78 | "fileVersion": "4.6.25519.3" 79 | } 80 | }, 81 | "runtimeTargets": { 82 | "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { 83 | "rid": "win", 84 | "assetType": "runtime", 85 | "assemblyVersion": "4.0.2.0", 86 | "fileVersion": "4.6.25519.3" 87 | } 88 | } 89 | }, 90 | "System.Text.Encoding/4.3.0": { 91 | "dependencies": { 92 | "Microsoft.NETCore.Targets": "1.1.0", 93 | "System.Runtime": "4.3.0" 94 | } 95 | }, 96 | "System.Threading.Tasks/4.3.0": { 97 | "dependencies": { 98 | "Microsoft.NETCore.Targets": "1.1.0", 99 | "System.Runtime": "4.3.0" 100 | } 101 | }, 102 | "Unity.Abstractions/3.3.1": { 103 | "runtime": { 104 | "Unity.Abstractions.dll": {} 105 | } 106 | }, 107 | "Unity.Configuration/5.2.5": { 108 | "dependencies": { 109 | "System.Configuration.ConfigurationManager": "4.4.1", 110 | "Unity.Abstractions": "3.3.1" 111 | }, 112 | "runtime": { 113 | "Unity.Configuration.dll": {} 114 | } 115 | }, 116 | "Unity.Interception/5.5.5": { 117 | "dependencies": { 118 | "System.Reflection.Emit": "4.3.0", 119 | "Unity.Abstractions": "3.3.1" 120 | }, 121 | "runtime": { 122 | "Unity.Interception.dll": {} 123 | } 124 | } 125 | } 126 | }, 127 | "libraries": { 128 | "Unity.Interception.Configuration/5.1.7": { 129 | "type": "project", 130 | "serviceable": false, 131 | "sha512": "" 132 | }, 133 | "Microsoft.NETCore.Targets/1.1.0": { 134 | "type": "package", 135 | "serviceable": true, 136 | "sha512": "sha512-ytLLWSzd1X4/wJDCh3AVJCpyMjlt1gM5oHvIb7MvVGzNgSflpyccYmuisFGU5Uc79JahYmVYwgGhc5ZBypTBDA==", 137 | "path": "microsoft.netcore.targets/1.1.0", 138 | "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" 139 | }, 140 | "System.Configuration.ConfigurationManager/4.4.1": { 141 | "type": "package", 142 | "serviceable": true, 143 | "sha512": "sha512-LoSjM/kLDpyLyoGsmwS5oVMRzHf/0XHkRpr3QZu/HuAv6Sfk919usTMLqD9N9VK3S4Q2+bd3tKJ0ko4MYFfq4Q==", 144 | "path": "system.configuration.configurationmanager/4.4.1", 145 | "hashPath": "system.configuration.configurationmanager.4.4.1.nupkg.sha512" 146 | }, 147 | "System.IO/4.3.0": { 148 | "type": "package", 149 | "serviceable": true, 150 | "sha512": "sha512-L5YORr8xPIUjmF7mvHMtxTePiHKxsTUckAACjt7fzhHYJPih4WaJwptI9ZyInkdRaOCVjVCoIogsLSR2uWkwsw==", 151 | "path": "system.io/4.3.0", 152 | "hashPath": "system.io.4.3.0.nupkg.sha512" 153 | }, 154 | "System.Reflection/4.3.0": { 155 | "type": "package", 156 | "serviceable": true, 157 | "sha512": "sha512-qT7GlIYUEz3NmWBtF06oUbjQMrbtDcw4hCjhKDz3wjHbHMuVvkBKZztn64sJ1AwgtmWLmD7Bn7QHTLooiaXSPw==", 158 | "path": "system.reflection/4.3.0", 159 | "hashPath": "system.reflection.4.3.0.nupkg.sha512" 160 | }, 161 | "System.Reflection.Emit/4.3.0": { 162 | "type": "package", 163 | "serviceable": true, 164 | "sha512": "sha512-rbk1mShyEO0tWEBacr2yVM/ur5NCaii6IhYEaslZwF7f7JO2BZ+lVX6Mo8klzy7fT2T5eishZrv3F4Lvw5AzWg==", 165 | "path": "system.reflection.emit/4.3.0", 166 | "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" 167 | }, 168 | "System.Reflection.Emit.ILGeneration/4.3.0": { 169 | "type": "package", 170 | "serviceable": true, 171 | "sha512": "sha512-6G4nJb+/mmQSngUQGK/4xlVWYKgAyQPiMP9QAEG/ZKCY41FNcFixPC719nEe4pCvU4fTigTyUQpR1KSIbReYHw==", 172 | "path": "system.reflection.emit.ilgeneration/4.3.0", 173 | "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" 174 | }, 175 | "System.Reflection.Primitives/4.3.0": { 176 | "type": "package", 177 | "serviceable": true, 178 | "sha512": "sha512-ix3iL33E9DdpLwJa087WQTvan+QuEfwHQZqf+2hjb58Gn4Vi/qVaOCo7tNnb5+l8szXKywSSM0//ucUIyF870g==", 179 | "path": "system.reflection.primitives/4.3.0", 180 | "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" 181 | }, 182 | "System.Runtime/4.3.0": { 183 | "type": "package", 184 | "serviceable": true, 185 | "sha512": "sha512-KijrInhiP+YGs4ZKcT1sGdgrftjfH4gZrBRKJfKsTvvqFclaA6hGeWzXLU2XJ2nNy3P7htJ4g9UDE+KjLANTCQ==", 186 | "path": "system.runtime/4.3.0", 187 | "hashPath": "system.runtime.4.3.0.nupkg.sha512" 188 | }, 189 | "System.Security.Cryptography.ProtectedData/4.4.0": { 190 | "type": "package", 191 | "serviceable": true, 192 | "sha512": "sha512-WwEexvBd+17yfY7fcS+fBGl+HADEfCJuKeDJqBT7D6j6vKwYvfLyGuq2y/MmrKORC6mbYwth7kjinO1mPhTL3g==", 193 | "path": "system.security.cryptography.protecteddata/4.4.0", 194 | "hashPath": "system.security.cryptography.protecteddata.4.4.0.nupkg.sha512" 195 | }, 196 | "System.Text.Encoding/4.3.0": { 197 | "type": "package", 198 | "serviceable": true, 199 | "sha512": "sha512-SzIbqxzENo10YtPeMhvqI0dfCqE4Q+Fud7YF7jEP4MuZ3Nza9w+QGOFQJ+hyg7WIDtRKsN0cnkodSW5//6kqVw==", 200 | "path": "system.text.encoding/4.3.0", 201 | "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" 202 | }, 203 | "System.Threading.Tasks/4.3.0": { 204 | "type": "package", 205 | "serviceable": true, 206 | "sha512": "sha512-9Mdk6qutu+3TRSWxzJaC9Sdm3BNYX34FJ2g2Oct/be/BT46JMGexURivTZbkQxL48W4RxvTtG0CZHMRnmbi+Dg==", 207 | "path": "system.threading.tasks/4.3.0", 208 | "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" 209 | }, 210 | "Unity.Abstractions/3.3.1": { 211 | "type": "project", 212 | "serviceable": false, 213 | "sha512": "" 214 | }, 215 | "Unity.Configuration/5.2.5": { 216 | "type": "project", 217 | "serviceable": false, 218 | "sha512": "" 219 | }, 220 | "Unity.Interception/5.5.5": { 221 | "type": "project", 222 | "serviceable": false, 223 | "sha512": "" 224 | } 225 | } 226 | } -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.Interception.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.Interception.Configuration.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.Interception.Configuration.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.Interception.Configuration.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.Interception.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v2.0", 4 | "signature": "4f6de87602d0b6106cf9e23e047eadfb52c0caac" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v2.0": { 9 | "Unity.Interception/5.5.5": { 10 | "dependencies": { 11 | "System.Reflection.Emit": "4.3.0", 12 | "Unity.Abstractions": "3.3.1" 13 | }, 14 | "runtime": { 15 | "Unity.Interception.dll": {} 16 | } 17 | }, 18 | "Microsoft.NETCore.Targets/1.1.0": {}, 19 | "System.IO/4.3.0": { 20 | "dependencies": { 21 | "Microsoft.NETCore.Targets": "1.1.0", 22 | "System.Runtime": "4.3.0", 23 | "System.Text.Encoding": "4.3.0", 24 | "System.Threading.Tasks": "4.3.0" 25 | } 26 | }, 27 | "System.Reflection/4.3.0": { 28 | "dependencies": { 29 | "Microsoft.NETCore.Targets": "1.1.0", 30 | "System.IO": "4.3.0", 31 | "System.Reflection.Primitives": "4.3.0", 32 | "System.Runtime": "4.3.0" 33 | } 34 | }, 35 | "System.Reflection.Emit/4.3.0": { 36 | "dependencies": { 37 | "System.IO": "4.3.0", 38 | "System.Reflection": "4.3.0", 39 | "System.Reflection.Emit.ILGeneration": "4.3.0", 40 | "System.Reflection.Primitives": "4.3.0", 41 | "System.Runtime": "4.3.0" 42 | } 43 | }, 44 | "System.Reflection.Emit.ILGeneration/4.3.0": { 45 | "dependencies": { 46 | "System.Reflection": "4.3.0", 47 | "System.Reflection.Primitives": "4.3.0", 48 | "System.Runtime": "4.3.0" 49 | } 50 | }, 51 | "System.Reflection.Primitives/4.3.0": { 52 | "dependencies": { 53 | "Microsoft.NETCore.Targets": "1.1.0", 54 | "System.Runtime": "4.3.0" 55 | } 56 | }, 57 | "System.Runtime/4.3.0": { 58 | "dependencies": { 59 | "Microsoft.NETCore.Targets": "1.1.0" 60 | } 61 | }, 62 | "System.Text.Encoding/4.3.0": { 63 | "dependencies": { 64 | "Microsoft.NETCore.Targets": "1.1.0", 65 | "System.Runtime": "4.3.0" 66 | } 67 | }, 68 | "System.Threading.Tasks/4.3.0": { 69 | "dependencies": { 70 | "Microsoft.NETCore.Targets": "1.1.0", 71 | "System.Runtime": "4.3.0" 72 | } 73 | }, 74 | "Unity.Abstractions/3.3.1": { 75 | "runtime": { 76 | "Unity.Abstractions.dll": {} 77 | } 78 | } 79 | } 80 | }, 81 | "libraries": { 82 | "Unity.Interception/5.5.5": { 83 | "type": "project", 84 | "serviceable": false, 85 | "sha512": "" 86 | }, 87 | "Microsoft.NETCore.Targets/1.1.0": { 88 | "type": "package", 89 | "serviceable": true, 90 | "sha512": "sha512-ytLLWSzd1X4/wJDCh3AVJCpyMjlt1gM5oHvIb7MvVGzNgSflpyccYmuisFGU5Uc79JahYmVYwgGhc5ZBypTBDA==", 91 | "path": "microsoft.netcore.targets/1.1.0", 92 | "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" 93 | }, 94 | "System.IO/4.3.0": { 95 | "type": "package", 96 | "serviceable": true, 97 | "sha512": "sha512-L5YORr8xPIUjmF7mvHMtxTePiHKxsTUckAACjt7fzhHYJPih4WaJwptI9ZyInkdRaOCVjVCoIogsLSR2uWkwsw==", 98 | "path": "system.io/4.3.0", 99 | "hashPath": "system.io.4.3.0.nupkg.sha512" 100 | }, 101 | "System.Reflection/4.3.0": { 102 | "type": "package", 103 | "serviceable": true, 104 | "sha512": "sha512-qT7GlIYUEz3NmWBtF06oUbjQMrbtDcw4hCjhKDz3wjHbHMuVvkBKZztn64sJ1AwgtmWLmD7Bn7QHTLooiaXSPw==", 105 | "path": "system.reflection/4.3.0", 106 | "hashPath": "system.reflection.4.3.0.nupkg.sha512" 107 | }, 108 | "System.Reflection.Emit/4.3.0": { 109 | "type": "package", 110 | "serviceable": true, 111 | "sha512": "sha512-rbk1mShyEO0tWEBacr2yVM/ur5NCaii6IhYEaslZwF7f7JO2BZ+lVX6Mo8klzy7fT2T5eishZrv3F4Lvw5AzWg==", 112 | "path": "system.reflection.emit/4.3.0", 113 | "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" 114 | }, 115 | "System.Reflection.Emit.ILGeneration/4.3.0": { 116 | "type": "package", 117 | "serviceable": true, 118 | "sha512": "sha512-6G4nJb+/mmQSngUQGK/4xlVWYKgAyQPiMP9QAEG/ZKCY41FNcFixPC719nEe4pCvU4fTigTyUQpR1KSIbReYHw==", 119 | "path": "system.reflection.emit.ilgeneration/4.3.0", 120 | "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" 121 | }, 122 | "System.Reflection.Primitives/4.3.0": { 123 | "type": "package", 124 | "serviceable": true, 125 | "sha512": "sha512-ix3iL33E9DdpLwJa087WQTvan+QuEfwHQZqf+2hjb58Gn4Vi/qVaOCo7tNnb5+l8szXKywSSM0//ucUIyF870g==", 126 | "path": "system.reflection.primitives/4.3.0", 127 | "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" 128 | }, 129 | "System.Runtime/4.3.0": { 130 | "type": "package", 131 | "serviceable": true, 132 | "sha512": "sha512-KijrInhiP+YGs4ZKcT1sGdgrftjfH4gZrBRKJfKsTvvqFclaA6hGeWzXLU2XJ2nNy3P7htJ4g9UDE+KjLANTCQ==", 133 | "path": "system.runtime/4.3.0", 134 | "hashPath": "system.runtime.4.3.0.nupkg.sha512" 135 | }, 136 | "System.Text.Encoding/4.3.0": { 137 | "type": "package", 138 | "serviceable": true, 139 | "sha512": "sha512-SzIbqxzENo10YtPeMhvqI0dfCqE4Q+Fud7YF7jEP4MuZ3Nza9w+QGOFQJ+hyg7WIDtRKsN0cnkodSW5//6kqVw==", 140 | "path": "system.text.encoding/4.3.0", 141 | "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" 142 | }, 143 | "System.Threading.Tasks/4.3.0": { 144 | "type": "package", 145 | "serviceable": true, 146 | "sha512": "sha512-9Mdk6qutu+3TRSWxzJaC9Sdm3BNYX34FJ2g2Oct/be/BT46JMGexURivTZbkQxL48W4RxvTtG0CZHMRnmbi+Dg==", 147 | "path": "system.threading.tasks/4.3.0", 148 | "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" 149 | }, 150 | "Unity.Abstractions/3.3.1": { 151 | "type": "project", 152 | "serviceable": false, 153 | "sha512": "" 154 | } 155 | } 156 | } -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.Interception.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.Interception.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.Interception.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.Interception.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.RegistrationByConvention.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v2.0", 4 | "signature": "da39a3ee5e6b4b0d3255bfef95601890afd80709" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v2.0": { 9 | "Unity.RegistrationByConvention/2.1.9": { 10 | "dependencies": { 11 | "Unity.Abstractions": "3.3.1" 12 | }, 13 | "runtime": { 14 | "Unity.RegistrationByConvention.dll": {} 15 | } 16 | }, 17 | "Unity.Abstractions/3.3.1": { 18 | "runtime": { 19 | "Unity.Abstractions.dll": {} 20 | } 21 | } 22 | } 23 | }, 24 | "libraries": { 25 | "Unity.RegistrationByConvention/2.1.9": { 26 | "type": "project", 27 | "serviceable": false, 28 | "sha512": "" 29 | }, 30 | "Unity.Abstractions/3.3.1": { 31 | "type": "project", 32 | "serviceable": false, 33 | "sha512": "" 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.RegistrationByConvention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.RegistrationByConvention.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.RegistrationByConvention.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.RegistrationByConvention.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.ServiceLocation.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v2.0", 4 | "signature": "da39a3ee5e6b4b0d3255bfef95601890afd80709" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v2.0": { 9 | "Unity.ServiceLocation/2.1.2": { 10 | "dependencies": { 11 | "CommonServiceLocator": "2.0.4", 12 | "Unity.Abstractions": "3.3.1" 13 | }, 14 | "runtime": { 15 | "Unity.ServiceLocation.dll": {} 16 | } 17 | }, 18 | "CommonServiceLocator/2.0.4": { 19 | "runtime": { 20 | "CommonServiceLocator.dll": {} 21 | } 22 | }, 23 | "Unity.Abstractions/3.3.1": { 24 | "runtime": { 25 | "Unity.Abstractions.dll": {} 26 | } 27 | } 28 | } 29 | }, 30 | "libraries": { 31 | "Unity.ServiceLocation/2.1.2": { 32 | "type": "project", 33 | "serviceable": false, 34 | "sha512": "" 35 | }, 36 | "CommonServiceLocator/2.0.4": { 37 | "type": "project", 38 | "serviceable": false, 39 | "sha512": "" 40 | }, 41 | "Unity.Abstractions/3.3.1": { 42 | "type": "project", 43 | "serviceable": false, 44 | "sha512": "" 45 | } 46 | } 47 | } -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.ServiceLocation.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.ServiceLocation.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netcoreapp2.0/Unity.ServiceLocation.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard1.0/CommonServiceLocator.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETStandard,Version=v1.0/", 4 | "signature": "38c0039ef413e73e1ecfe7e135a91109c408f871" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETStandard,Version=v1.0": {}, 9 | ".NETStandard,Version=v1.0/": { 10 | "CommonServiceLocator/2.0.4": { 11 | "dependencies": { 12 | "NETStandard.Library": "1.6.1", 13 | "System.ComponentModel": "4.3.0" 14 | }, 15 | "runtime": { 16 | "CommonServiceLocator.dll": {} 17 | } 18 | }, 19 | "Microsoft.NETCore.Platforms/1.1.0": {}, 20 | "Microsoft.NETCore.Targets/1.1.0": {}, 21 | "NETStandard.Library/1.6.1": { 22 | "dependencies": { 23 | "Microsoft.NETCore.Platforms": "1.1.0", 24 | "System.Collections": "4.3.0", 25 | "System.Diagnostics.Debug": "4.3.0", 26 | "System.Diagnostics.Tools": "4.3.0", 27 | "System.Globalization": "4.3.0", 28 | "System.IO": "4.3.0", 29 | "System.Linq": "4.3.0", 30 | "System.Linq.Expressions": "4.3.0", 31 | "System.Net.Primitives": "4.3.0", 32 | "System.ObjectModel": "4.3.0", 33 | "System.Reflection": "4.3.0", 34 | "System.Reflection.Extensions": "4.3.0", 35 | "System.Reflection.Primitives": "4.3.0", 36 | "System.Resources.ResourceManager": "4.3.0", 37 | "System.Runtime": "4.3.0", 38 | "System.Runtime.Extensions": "4.3.0", 39 | "System.Text.Encoding": "4.3.0", 40 | "System.Text.Encoding.Extensions": "4.3.0", 41 | "System.Text.RegularExpressions": "4.3.0", 42 | "System.Threading": "4.3.0", 43 | "System.Threading.Tasks": "4.3.0", 44 | "System.Xml.ReaderWriter": "4.3.0", 45 | "System.Xml.XDocument": "4.3.0" 46 | } 47 | }, 48 | "System.Collections/4.3.0": { 49 | "dependencies": { 50 | "Microsoft.NETCore.Platforms": "1.1.0", 51 | "Microsoft.NETCore.Targets": "1.1.0", 52 | "System.Runtime": "4.3.0" 53 | } 54 | }, 55 | "System.ComponentModel/4.3.0": { 56 | "dependencies": { 57 | "System.Runtime": "4.3.0" 58 | } 59 | }, 60 | "System.Diagnostics.Debug/4.3.0": { 61 | "dependencies": { 62 | "Microsoft.NETCore.Platforms": "1.1.0", 63 | "Microsoft.NETCore.Targets": "1.1.0", 64 | "System.Runtime": "4.3.0" 65 | } 66 | }, 67 | "System.Diagnostics.Tools/4.3.0": { 68 | "dependencies": { 69 | "Microsoft.NETCore.Platforms": "1.1.0", 70 | "Microsoft.NETCore.Targets": "1.1.0", 71 | "System.Runtime": "4.3.0" 72 | } 73 | }, 74 | "System.Globalization/4.3.0": { 75 | "dependencies": { 76 | "Microsoft.NETCore.Platforms": "1.1.0", 77 | "Microsoft.NETCore.Targets": "1.1.0", 78 | "System.Runtime": "4.3.0" 79 | } 80 | }, 81 | "System.IO/4.3.0": { 82 | "dependencies": { 83 | "Microsoft.NETCore.Platforms": "1.1.0", 84 | "Microsoft.NETCore.Targets": "1.1.0", 85 | "System.Runtime": "4.3.0", 86 | "System.Text.Encoding": "4.3.0", 87 | "System.Threading.Tasks": "4.3.0" 88 | } 89 | }, 90 | "System.Linq/4.3.0": { 91 | "dependencies": { 92 | "System.Collections": "4.3.0", 93 | "System.Runtime": "4.3.0" 94 | } 95 | }, 96 | "System.Linq.Expressions/4.3.0": { 97 | "dependencies": { 98 | "System.Reflection": "4.3.0", 99 | "System.Runtime": "4.3.0" 100 | } 101 | }, 102 | "System.Net.Primitives/4.3.0": { 103 | "dependencies": { 104 | "Microsoft.NETCore.Platforms": "1.1.0", 105 | "Microsoft.NETCore.Targets": "1.1.0", 106 | "System.Runtime": "4.3.0" 107 | } 108 | }, 109 | "System.ObjectModel/4.3.0": { 110 | "dependencies": { 111 | "System.Runtime": "4.3.0" 112 | } 113 | }, 114 | "System.Reflection/4.3.0": { 115 | "dependencies": { 116 | "Microsoft.NETCore.Platforms": "1.1.0", 117 | "Microsoft.NETCore.Targets": "1.1.0", 118 | "System.IO": "4.3.0", 119 | "System.Reflection.Primitives": "4.3.0", 120 | "System.Runtime": "4.3.0" 121 | } 122 | }, 123 | "System.Reflection.Extensions/4.3.0": { 124 | "dependencies": { 125 | "Microsoft.NETCore.Platforms": "1.1.0", 126 | "Microsoft.NETCore.Targets": "1.1.0", 127 | "System.Reflection": "4.3.0", 128 | "System.Runtime": "4.3.0" 129 | } 130 | }, 131 | "System.Reflection.Primitives/4.3.0": { 132 | "dependencies": { 133 | "Microsoft.NETCore.Platforms": "1.1.0", 134 | "Microsoft.NETCore.Targets": "1.1.0", 135 | "System.Runtime": "4.3.0" 136 | } 137 | }, 138 | "System.Resources.ResourceManager/4.3.0": { 139 | "dependencies": { 140 | "Microsoft.NETCore.Platforms": "1.1.0", 141 | "Microsoft.NETCore.Targets": "1.1.0", 142 | "System.Globalization": "4.3.0", 143 | "System.Reflection": "4.3.0", 144 | "System.Runtime": "4.3.0" 145 | } 146 | }, 147 | "System.Runtime/4.3.0": { 148 | "dependencies": { 149 | "Microsoft.NETCore.Platforms": "1.1.0", 150 | "Microsoft.NETCore.Targets": "1.1.0" 151 | } 152 | }, 153 | "System.Runtime.Extensions/4.3.0": { 154 | "dependencies": { 155 | "Microsoft.NETCore.Platforms": "1.1.0", 156 | "Microsoft.NETCore.Targets": "1.1.0", 157 | "System.Runtime": "4.3.0" 158 | } 159 | }, 160 | "System.Text.Encoding/4.3.0": { 161 | "dependencies": { 162 | "Microsoft.NETCore.Platforms": "1.1.0", 163 | "Microsoft.NETCore.Targets": "1.1.0", 164 | "System.Runtime": "4.3.0" 165 | } 166 | }, 167 | "System.Text.Encoding.Extensions/4.3.0": { 168 | "dependencies": { 169 | "Microsoft.NETCore.Platforms": "1.1.0", 170 | "Microsoft.NETCore.Targets": "1.1.0", 171 | "System.Runtime": "4.3.0", 172 | "System.Text.Encoding": "4.3.0" 173 | } 174 | }, 175 | "System.Text.RegularExpressions/4.3.0": { 176 | "dependencies": { 177 | "System.Runtime": "4.3.0" 178 | } 179 | }, 180 | "System.Threading/4.3.0": { 181 | "dependencies": { 182 | "System.Runtime": "4.3.0", 183 | "System.Threading.Tasks": "4.3.0" 184 | } 185 | }, 186 | "System.Threading.Tasks/4.3.0": { 187 | "dependencies": { 188 | "Microsoft.NETCore.Platforms": "1.1.0", 189 | "Microsoft.NETCore.Targets": "1.1.0", 190 | "System.Runtime": "4.3.0" 191 | } 192 | }, 193 | "System.Xml.ReaderWriter/4.3.0": { 194 | "dependencies": { 195 | "System.IO": "4.3.0", 196 | "System.Runtime": "4.3.0", 197 | "System.Text.Encoding": "4.3.0", 198 | "System.Threading.Tasks": "4.3.0" 199 | } 200 | }, 201 | "System.Xml.XDocument/4.3.0": { 202 | "dependencies": { 203 | "System.IO": "4.3.0", 204 | "System.Runtime": "4.3.0", 205 | "System.Xml.ReaderWriter": "4.3.0" 206 | } 207 | } 208 | } 209 | }, 210 | "libraries": { 211 | "CommonServiceLocator/2.0.4": { 212 | "type": "project", 213 | "serviceable": false, 214 | "sha512": "" 215 | }, 216 | "Microsoft.NETCore.Platforms/1.1.0": { 217 | "type": "package", 218 | "serviceable": true, 219 | "sha512": "sha512-d15KS6WIdb5TzAEQiNM7KxB5TYb7cgiRk/767t83xYicHpHoqekPHXLWOc6gyh/FDF77dj4oR1/qg2tnPRfM1g==", 220 | "path": "microsoft.netcore.platforms/1.1.0", 221 | "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" 222 | }, 223 | "Microsoft.NETCore.Targets/1.1.0": { 224 | "type": "package", 225 | "serviceable": true, 226 | "sha512": "sha512-ytLLWSzd1X4/wJDCh3AVJCpyMjlt1gM5oHvIb7MvVGzNgSflpyccYmuisFGU5Uc79JahYmVYwgGhc5ZBypTBDA==", 227 | "path": "microsoft.netcore.targets/1.1.0", 228 | "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" 229 | }, 230 | "NETStandard.Library/1.6.1": { 231 | "type": "package", 232 | "serviceable": true, 233 | "sha512": "sha512-A2VXIgOKsJH/+FYHDyqx+0blYlcWMpofnEubqvWgvIVETbuaFn7kQFWodMekYRQlTXX+T7MQC+wn7VqrnMzszg==", 234 | "path": "netstandard.library/1.6.1", 235 | "hashPath": "netstandard.library.1.6.1.nupkg.sha512" 236 | }, 237 | "System.Collections/4.3.0": { 238 | "type": "package", 239 | "serviceable": true, 240 | "sha512": "sha512-IBm+Q1J1tm1WL8i75kHNGMciYO++PKuUCG5t+mjcZ7bseyz553hk+eMzDCj7PA4KBxH231a/9WYb8lhrDv1iRw==", 241 | "path": "system.collections/4.3.0", 242 | "hashPath": "system.collections.4.3.0.nupkg.sha512" 243 | }, 244 | "System.ComponentModel/4.3.0": { 245 | "type": "package", 246 | "serviceable": true, 247 | "sha512": "sha512-vI932IM2wdu+hSFFKdgxPsm6CH7C+xvHWCGYIHQu2IJrPrqvsDpTctjAN50modDsc71m2qoHrLQgmU9Us9euSg==", 248 | "path": "system.componentmodel/4.3.0", 249 | "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" 250 | }, 251 | "System.Diagnostics.Debug/4.3.0": { 252 | "type": "package", 253 | "serviceable": true, 254 | "sha512": "sha512-n32WASxghwyuvm8kdm5sfQGWBGUV0YqGqcWIFHZlQ346GWNJkWNiZcZgXnpVfqhltZuGHq6oXoO45Dc90d/ezw==", 255 | "path": "system.diagnostics.debug/4.3.0", 256 | "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" 257 | }, 258 | "System.Diagnostics.Tools/4.3.0": { 259 | "type": "package", 260 | "serviceable": true, 261 | "sha512": "sha512-IdYK1XbL3dovlHJ0Rn1jOLURy9eS6rSmPNokaUgwGTrNqq4TJIUYeRLIULM3vwdTo9G4qF3wH4pn/cCi1FeQHg==", 262 | "path": "system.diagnostics.tools/4.3.0", 263 | "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" 264 | }, 265 | "System.Globalization/4.3.0": { 266 | "type": "package", 267 | "serviceable": true, 268 | "sha512": "sha512-5ay4bV2/N1RP5XY8xUjQ/qjcdwxkb4vlpuoafj74xrohY6sh6jkNWCWmfycZE4/5qlOxZdtF3wL+KLYdp+7irw==", 269 | "path": "system.globalization/4.3.0", 270 | "hashPath": "system.globalization.4.3.0.nupkg.sha512" 271 | }, 272 | "System.IO/4.3.0": { 273 | "type": "package", 274 | "serviceable": true, 275 | "sha512": "sha512-L5YORr8xPIUjmF7mvHMtxTePiHKxsTUckAACjt7fzhHYJPih4WaJwptI9ZyInkdRaOCVjVCoIogsLSR2uWkwsw==", 276 | "path": "system.io/4.3.0", 277 | "hashPath": "system.io.4.3.0.nupkg.sha512" 278 | }, 279 | "System.Linq/4.3.0": { 280 | "type": "package", 281 | "serviceable": true, 282 | "sha512": "sha512-LQhiK6Bsl3fMskpyJ32yh2H9N+m98F4JHiNB1wLQsb9Ct0WJg1ExstYA1jnNknj78fXZwjjnTfL4n+GbjY9LkA==", 283 | "path": "system.linq/4.3.0", 284 | "hashPath": "system.linq.4.3.0.nupkg.sha512" 285 | }, 286 | "System.Linq.Expressions/4.3.0": { 287 | "type": "package", 288 | "serviceable": true, 289 | "sha512": "sha512-nYIClsbYRMHfhD9KOHYrGn9P//jljwc71noboKNYfnS5bLklNr2MhpGMnSlDW7iETD5demPQCLYMXoGDY3Kjtw==", 290 | "path": "system.linq.expressions/4.3.0", 291 | "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" 292 | }, 293 | "System.Net.Primitives/4.3.0": { 294 | "type": "package", 295 | "serviceable": true, 296 | "sha512": "sha512-YfOFWRUd20IOJZ1W9rqr3YHNNI0jbKCYwAMk1IGpypwDSpuQwDJloE67T+4AH6ZqjUslI/SA67lvzlVYPadv5g==", 297 | "path": "system.net.primitives/4.3.0", 298 | "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" 299 | }, 300 | "System.ObjectModel/4.3.0": { 301 | "type": "package", 302 | "serviceable": true, 303 | "sha512": "sha512-Nskf2SYcbNQvAHWUgnZABh7dPKqHtSkeFaqzHGUAqHXmeDZmE2SwrxcCmlIBtsvk7yeSZEd975J7zcQ4Uewb/g==", 304 | "path": "system.objectmodel/4.3.0", 305 | "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" 306 | }, 307 | "System.Reflection/4.3.0": { 308 | "type": "package", 309 | "serviceable": true, 310 | "sha512": "sha512-qT7GlIYUEz3NmWBtF06oUbjQMrbtDcw4hCjhKDz3wjHbHMuVvkBKZztn64sJ1AwgtmWLmD7Bn7QHTLooiaXSPw==", 311 | "path": "system.reflection/4.3.0", 312 | "hashPath": "system.reflection.4.3.0.nupkg.sha512" 313 | }, 314 | "System.Reflection.Extensions/4.3.0": { 315 | "type": "package", 316 | "serviceable": true, 317 | "sha512": "sha512-YbRxNhNYsk4f6G+5/9Ne+v6sWczhWjARfaEGPzZcmdVuOKGt05DI1Z6TfGKZTLVqocGQjh+iQuiKem7jtSpu0g==", 318 | "path": "system.reflection.extensions/4.3.0", 319 | "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" 320 | }, 321 | "System.Reflection.Primitives/4.3.0": { 322 | "type": "package", 323 | "serviceable": true, 324 | "sha512": "sha512-ix3iL33E9DdpLwJa087WQTvan+QuEfwHQZqf+2hjb58Gn4Vi/qVaOCo7tNnb5+l8szXKywSSM0//ucUIyF870g==", 325 | "path": "system.reflection.primitives/4.3.0", 326 | "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" 327 | }, 328 | "System.Resources.ResourceManager/4.3.0": { 329 | "type": "package", 330 | "serviceable": true, 331 | "sha512": "sha512-zCYivSL6Sp67gMkcczNln8WYw7Y1dGa8CPVTs385VbB25g11Kk5xoO8TytK6Qb5HO8n0AHCNsp6Ltv7EEazh1Q==", 332 | "path": "system.resources.resourcemanager/4.3.0", 333 | "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" 334 | }, 335 | "System.Runtime/4.3.0": { 336 | "type": "package", 337 | "serviceable": true, 338 | "sha512": "sha512-KijrInhiP+YGs4ZKcT1sGdgrftjfH4gZrBRKJfKsTvvqFclaA6hGeWzXLU2XJ2nNy3P7htJ4g9UDE+KjLANTCQ==", 339 | "path": "system.runtime/4.3.0", 340 | "hashPath": "system.runtime.4.3.0.nupkg.sha512" 341 | }, 342 | "System.Runtime.Extensions/4.3.0": { 343 | "type": "package", 344 | "serviceable": true, 345 | "sha512": "sha512-FbMqvUhS2mHvUrBQdje6QnAf7SPmnx48CN9iuBJ18+E5TKA+Tn5eFxvkVIUZjkIkeepYm4Ap5Rq5BTnVG5jHnA==", 346 | "path": "system.runtime.extensions/4.3.0", 347 | "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" 348 | }, 349 | "System.Text.Encoding/4.3.0": { 350 | "type": "package", 351 | "serviceable": true, 352 | "sha512": "sha512-SzIbqxzENo10YtPeMhvqI0dfCqE4Q+Fud7YF7jEP4MuZ3Nza9w+QGOFQJ+hyg7WIDtRKsN0cnkodSW5//6kqVw==", 353 | "path": "system.text.encoding/4.3.0", 354 | "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" 355 | }, 356 | "System.Text.Encoding.Extensions/4.3.0": { 357 | "type": "package", 358 | "serviceable": true, 359 | "sha512": "sha512-Ne/tEJYVXxMYOLdpMZ4KFYTyT4GrWS7zM+enXSRFsCWHVnTizKgwaXgQ80JdrPJLtjoGdBvTOsnTyU0rSGf1wQ==", 360 | "path": "system.text.encoding.extensions/4.3.0", 361 | "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" 362 | }, 363 | "System.Text.RegularExpressions/4.3.0": { 364 | "type": "package", 365 | "serviceable": true, 366 | "sha512": "sha512-bP8xKEESq6EOKFvRYGUwPkLGtZre1Y3QQKLmY21WgNLTxDs8Aff0AeKEXZL0TgkL8SrIkE7lCnXFTi9MqdAHMg==", 367 | "path": "system.text.regularexpressions/4.3.0", 368 | "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" 369 | }, 370 | "System.Threading/4.3.0": { 371 | "type": "package", 372 | "serviceable": true, 373 | "sha512": "sha512-7VnBJCVkxFIES+qCjPN/sGN0RWI5xAE7/kfD2qfJPBMEoMeFzI74bb7CjL0C97TJ1uN35Ah85mM4acCPh0zyBA==", 374 | "path": "system.threading/4.3.0", 375 | "hashPath": "system.threading.4.3.0.nupkg.sha512" 376 | }, 377 | "System.Threading.Tasks/4.3.0": { 378 | "type": "package", 379 | "serviceable": true, 380 | "sha512": "sha512-9Mdk6qutu+3TRSWxzJaC9Sdm3BNYX34FJ2g2Oct/be/BT46JMGexURivTZbkQxL48W4RxvTtG0CZHMRnmbi+Dg==", 381 | "path": "system.threading.tasks/4.3.0", 382 | "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" 383 | }, 384 | "System.Xml.ReaderWriter/4.3.0": { 385 | "type": "package", 386 | "serviceable": true, 387 | "sha512": "sha512-ffATtFd2XaSXv3bdR0sYLUMgmUdoY3LvjE4DOJmdHyw6gn9gdZSCPZXdoI74eJ08cz1r7rLf8U7oROqB5xkQ4Q==", 388 | "path": "system.xml.readerwriter/4.3.0", 389 | "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" 390 | }, 391 | "System.Xml.XDocument/4.3.0": { 392 | "type": "package", 393 | "serviceable": true, 394 | "sha512": "sha512-Q7EOvbGqTkSj8Ot/6yyuQnGOqWAvCcPqaFUsRwKAa61ugnvakD+9tB3yTewut6HjV978Z0TEKwzCz6sAWS9G8g==", 395 | "path": "system.xml.xdocument/4.3.0", 396 | "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" 397 | } 398 | } 399 | } -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard1.0/CommonServiceLocator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netstandard1.0/CommonServiceLocator.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard1.0/CommonServiceLocator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netstandard1.0/CommonServiceLocator.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard1.0/Unity.Abstractions.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETStandard,Version=v1.0/", 4 | "signature": "9a0b6ac8bd918fe11bd7e956e15451b11d5d6174" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETStandard,Version=v1.0": {}, 9 | ".NETStandard,Version=v1.0/": { 10 | "Unity.Abstractions/3.3.1": { 11 | "dependencies": { 12 | "NETStandard.Library": "1.6.1" 13 | }, 14 | "runtime": { 15 | "Unity.Abstractions.dll": {} 16 | } 17 | }, 18 | "Microsoft.NETCore.Platforms/1.1.0": {}, 19 | "Microsoft.NETCore.Targets/1.1.0": {}, 20 | "NETStandard.Library/1.6.1": { 21 | "dependencies": { 22 | "Microsoft.NETCore.Platforms": "1.1.0", 23 | "System.Collections": "4.3.0", 24 | "System.Diagnostics.Debug": "4.3.0", 25 | "System.Diagnostics.Tools": "4.3.0", 26 | "System.Globalization": "4.3.0", 27 | "System.IO": "4.3.0", 28 | "System.Linq": "4.3.0", 29 | "System.Linq.Expressions": "4.3.0", 30 | "System.Net.Primitives": "4.3.0", 31 | "System.ObjectModel": "4.3.0", 32 | "System.Reflection": "4.3.0", 33 | "System.Reflection.Extensions": "4.3.0", 34 | "System.Reflection.Primitives": "4.3.0", 35 | "System.Resources.ResourceManager": "4.3.0", 36 | "System.Runtime": "4.3.0", 37 | "System.Runtime.Extensions": "4.3.0", 38 | "System.Text.Encoding": "4.3.0", 39 | "System.Text.Encoding.Extensions": "4.3.0", 40 | "System.Text.RegularExpressions": "4.3.0", 41 | "System.Threading": "4.3.0", 42 | "System.Threading.Tasks": "4.3.0", 43 | "System.Xml.ReaderWriter": "4.3.0", 44 | "System.Xml.XDocument": "4.3.0" 45 | } 46 | }, 47 | "System.Collections/4.3.0": { 48 | "dependencies": { 49 | "Microsoft.NETCore.Platforms": "1.1.0", 50 | "Microsoft.NETCore.Targets": "1.1.0", 51 | "System.Runtime": "4.3.0" 52 | } 53 | }, 54 | "System.Diagnostics.Debug/4.3.0": { 55 | "dependencies": { 56 | "Microsoft.NETCore.Platforms": "1.1.0", 57 | "Microsoft.NETCore.Targets": "1.1.0", 58 | "System.Runtime": "4.3.0" 59 | } 60 | }, 61 | "System.Diagnostics.Tools/4.3.0": { 62 | "dependencies": { 63 | "Microsoft.NETCore.Platforms": "1.1.0", 64 | "Microsoft.NETCore.Targets": "1.1.0", 65 | "System.Runtime": "4.3.0" 66 | } 67 | }, 68 | "System.Globalization/4.3.0": { 69 | "dependencies": { 70 | "Microsoft.NETCore.Platforms": "1.1.0", 71 | "Microsoft.NETCore.Targets": "1.1.0", 72 | "System.Runtime": "4.3.0" 73 | } 74 | }, 75 | "System.IO/4.3.0": { 76 | "dependencies": { 77 | "Microsoft.NETCore.Platforms": "1.1.0", 78 | "Microsoft.NETCore.Targets": "1.1.0", 79 | "System.Runtime": "4.3.0", 80 | "System.Text.Encoding": "4.3.0", 81 | "System.Threading.Tasks": "4.3.0" 82 | } 83 | }, 84 | "System.Linq/4.3.0": { 85 | "dependencies": { 86 | "System.Collections": "4.3.0", 87 | "System.Runtime": "4.3.0" 88 | } 89 | }, 90 | "System.Linq.Expressions/4.3.0": { 91 | "dependencies": { 92 | "System.Reflection": "4.3.0", 93 | "System.Runtime": "4.3.0" 94 | } 95 | }, 96 | "System.Net.Primitives/4.3.0": { 97 | "dependencies": { 98 | "Microsoft.NETCore.Platforms": "1.1.0", 99 | "Microsoft.NETCore.Targets": "1.1.0", 100 | "System.Runtime": "4.3.0" 101 | } 102 | }, 103 | "System.ObjectModel/4.3.0": { 104 | "dependencies": { 105 | "System.Runtime": "4.3.0" 106 | } 107 | }, 108 | "System.Reflection/4.3.0": { 109 | "dependencies": { 110 | "Microsoft.NETCore.Platforms": "1.1.0", 111 | "Microsoft.NETCore.Targets": "1.1.0", 112 | "System.IO": "4.3.0", 113 | "System.Reflection.Primitives": "4.3.0", 114 | "System.Runtime": "4.3.0" 115 | } 116 | }, 117 | "System.Reflection.Extensions/4.3.0": { 118 | "dependencies": { 119 | "Microsoft.NETCore.Platforms": "1.1.0", 120 | "Microsoft.NETCore.Targets": "1.1.0", 121 | "System.Reflection": "4.3.0", 122 | "System.Runtime": "4.3.0" 123 | } 124 | }, 125 | "System.Reflection.Primitives/4.3.0": { 126 | "dependencies": { 127 | "Microsoft.NETCore.Platforms": "1.1.0", 128 | "Microsoft.NETCore.Targets": "1.1.0", 129 | "System.Runtime": "4.3.0" 130 | } 131 | }, 132 | "System.Resources.ResourceManager/4.3.0": { 133 | "dependencies": { 134 | "Microsoft.NETCore.Platforms": "1.1.0", 135 | "Microsoft.NETCore.Targets": "1.1.0", 136 | "System.Globalization": "4.3.0", 137 | "System.Reflection": "4.3.0", 138 | "System.Runtime": "4.3.0" 139 | } 140 | }, 141 | "System.Runtime/4.3.0": { 142 | "dependencies": { 143 | "Microsoft.NETCore.Platforms": "1.1.0", 144 | "Microsoft.NETCore.Targets": "1.1.0" 145 | } 146 | }, 147 | "System.Runtime.Extensions/4.3.0": { 148 | "dependencies": { 149 | "Microsoft.NETCore.Platforms": "1.1.0", 150 | "Microsoft.NETCore.Targets": "1.1.0", 151 | "System.Runtime": "4.3.0" 152 | } 153 | }, 154 | "System.Text.Encoding/4.3.0": { 155 | "dependencies": { 156 | "Microsoft.NETCore.Platforms": "1.1.0", 157 | "Microsoft.NETCore.Targets": "1.1.0", 158 | "System.Runtime": "4.3.0" 159 | } 160 | }, 161 | "System.Text.Encoding.Extensions/4.3.0": { 162 | "dependencies": { 163 | "Microsoft.NETCore.Platforms": "1.1.0", 164 | "Microsoft.NETCore.Targets": "1.1.0", 165 | "System.Runtime": "4.3.0", 166 | "System.Text.Encoding": "4.3.0" 167 | } 168 | }, 169 | "System.Text.RegularExpressions/4.3.0": { 170 | "dependencies": { 171 | "System.Runtime": "4.3.0" 172 | } 173 | }, 174 | "System.Threading/4.3.0": { 175 | "dependencies": { 176 | "System.Runtime": "4.3.0", 177 | "System.Threading.Tasks": "4.3.0" 178 | } 179 | }, 180 | "System.Threading.Tasks/4.3.0": { 181 | "dependencies": { 182 | "Microsoft.NETCore.Platforms": "1.1.0", 183 | "Microsoft.NETCore.Targets": "1.1.0", 184 | "System.Runtime": "4.3.0" 185 | } 186 | }, 187 | "System.Xml.ReaderWriter/4.3.0": { 188 | "dependencies": { 189 | "System.IO": "4.3.0", 190 | "System.Runtime": "4.3.0", 191 | "System.Text.Encoding": "4.3.0", 192 | "System.Threading.Tasks": "4.3.0" 193 | } 194 | }, 195 | "System.Xml.XDocument/4.3.0": { 196 | "dependencies": { 197 | "System.IO": "4.3.0", 198 | "System.Runtime": "4.3.0", 199 | "System.Xml.ReaderWriter": "4.3.0" 200 | } 201 | } 202 | } 203 | }, 204 | "libraries": { 205 | "Unity.Abstractions/3.3.1": { 206 | "type": "project", 207 | "serviceable": false, 208 | "sha512": "" 209 | }, 210 | "Microsoft.NETCore.Platforms/1.1.0": { 211 | "type": "package", 212 | "serviceable": true, 213 | "sha512": "sha512-d15KS6WIdb5TzAEQiNM7KxB5TYb7cgiRk/767t83xYicHpHoqekPHXLWOc6gyh/FDF77dj4oR1/qg2tnPRfM1g==", 214 | "path": "microsoft.netcore.platforms/1.1.0", 215 | "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" 216 | }, 217 | "Microsoft.NETCore.Targets/1.1.0": { 218 | "type": "package", 219 | "serviceable": true, 220 | "sha512": "sha512-ytLLWSzd1X4/wJDCh3AVJCpyMjlt1gM5oHvIb7MvVGzNgSflpyccYmuisFGU5Uc79JahYmVYwgGhc5ZBypTBDA==", 221 | "path": "microsoft.netcore.targets/1.1.0", 222 | "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" 223 | }, 224 | "NETStandard.Library/1.6.1": { 225 | "type": "package", 226 | "serviceable": true, 227 | "sha512": "sha512-A2VXIgOKsJH/+FYHDyqx+0blYlcWMpofnEubqvWgvIVETbuaFn7kQFWodMekYRQlTXX+T7MQC+wn7VqrnMzszg==", 228 | "path": "netstandard.library/1.6.1", 229 | "hashPath": "netstandard.library.1.6.1.nupkg.sha512" 230 | }, 231 | "System.Collections/4.3.0": { 232 | "type": "package", 233 | "serviceable": true, 234 | "sha512": "sha512-IBm+Q1J1tm1WL8i75kHNGMciYO++PKuUCG5t+mjcZ7bseyz553hk+eMzDCj7PA4KBxH231a/9WYb8lhrDv1iRw==", 235 | "path": "system.collections/4.3.0", 236 | "hashPath": "system.collections.4.3.0.nupkg.sha512" 237 | }, 238 | "System.Diagnostics.Debug/4.3.0": { 239 | "type": "package", 240 | "serviceable": true, 241 | "sha512": "sha512-n32WASxghwyuvm8kdm5sfQGWBGUV0YqGqcWIFHZlQ346GWNJkWNiZcZgXnpVfqhltZuGHq6oXoO45Dc90d/ezw==", 242 | "path": "system.diagnostics.debug/4.3.0", 243 | "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" 244 | }, 245 | "System.Diagnostics.Tools/4.3.0": { 246 | "type": "package", 247 | "serviceable": true, 248 | "sha512": "sha512-IdYK1XbL3dovlHJ0Rn1jOLURy9eS6rSmPNokaUgwGTrNqq4TJIUYeRLIULM3vwdTo9G4qF3wH4pn/cCi1FeQHg==", 249 | "path": "system.diagnostics.tools/4.3.0", 250 | "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" 251 | }, 252 | "System.Globalization/4.3.0": { 253 | "type": "package", 254 | "serviceable": true, 255 | "sha512": "sha512-5ay4bV2/N1RP5XY8xUjQ/qjcdwxkb4vlpuoafj74xrohY6sh6jkNWCWmfycZE4/5qlOxZdtF3wL+KLYdp+7irw==", 256 | "path": "system.globalization/4.3.0", 257 | "hashPath": "system.globalization.4.3.0.nupkg.sha512" 258 | }, 259 | "System.IO/4.3.0": { 260 | "type": "package", 261 | "serviceable": true, 262 | "sha512": "sha512-L5YORr8xPIUjmF7mvHMtxTePiHKxsTUckAACjt7fzhHYJPih4WaJwptI9ZyInkdRaOCVjVCoIogsLSR2uWkwsw==", 263 | "path": "system.io/4.3.0", 264 | "hashPath": "system.io.4.3.0.nupkg.sha512" 265 | }, 266 | "System.Linq/4.3.0": { 267 | "type": "package", 268 | "serviceable": true, 269 | "sha512": "sha512-LQhiK6Bsl3fMskpyJ32yh2H9N+m98F4JHiNB1wLQsb9Ct0WJg1ExstYA1jnNknj78fXZwjjnTfL4n+GbjY9LkA==", 270 | "path": "system.linq/4.3.0", 271 | "hashPath": "system.linq.4.3.0.nupkg.sha512" 272 | }, 273 | "System.Linq.Expressions/4.3.0": { 274 | "type": "package", 275 | "serviceable": true, 276 | "sha512": "sha512-nYIClsbYRMHfhD9KOHYrGn9P//jljwc71noboKNYfnS5bLklNr2MhpGMnSlDW7iETD5demPQCLYMXoGDY3Kjtw==", 277 | "path": "system.linq.expressions/4.3.0", 278 | "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" 279 | }, 280 | "System.Net.Primitives/4.3.0": { 281 | "type": "package", 282 | "serviceable": true, 283 | "sha512": "sha512-YfOFWRUd20IOJZ1W9rqr3YHNNI0jbKCYwAMk1IGpypwDSpuQwDJloE67T+4AH6ZqjUslI/SA67lvzlVYPadv5g==", 284 | "path": "system.net.primitives/4.3.0", 285 | "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" 286 | }, 287 | "System.ObjectModel/4.3.0": { 288 | "type": "package", 289 | "serviceable": true, 290 | "sha512": "sha512-Nskf2SYcbNQvAHWUgnZABh7dPKqHtSkeFaqzHGUAqHXmeDZmE2SwrxcCmlIBtsvk7yeSZEd975J7zcQ4Uewb/g==", 291 | "path": "system.objectmodel/4.3.0", 292 | "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" 293 | }, 294 | "System.Reflection/4.3.0": { 295 | "type": "package", 296 | "serviceable": true, 297 | "sha512": "sha512-qT7GlIYUEz3NmWBtF06oUbjQMrbtDcw4hCjhKDz3wjHbHMuVvkBKZztn64sJ1AwgtmWLmD7Bn7QHTLooiaXSPw==", 298 | "path": "system.reflection/4.3.0", 299 | "hashPath": "system.reflection.4.3.0.nupkg.sha512" 300 | }, 301 | "System.Reflection.Extensions/4.3.0": { 302 | "type": "package", 303 | "serviceable": true, 304 | "sha512": "sha512-YbRxNhNYsk4f6G+5/9Ne+v6sWczhWjARfaEGPzZcmdVuOKGt05DI1Z6TfGKZTLVqocGQjh+iQuiKem7jtSpu0g==", 305 | "path": "system.reflection.extensions/4.3.0", 306 | "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" 307 | }, 308 | "System.Reflection.Primitives/4.3.0": { 309 | "type": "package", 310 | "serviceable": true, 311 | "sha512": "sha512-ix3iL33E9DdpLwJa087WQTvan+QuEfwHQZqf+2hjb58Gn4Vi/qVaOCo7tNnb5+l8szXKywSSM0//ucUIyF870g==", 312 | "path": "system.reflection.primitives/4.3.0", 313 | "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" 314 | }, 315 | "System.Resources.ResourceManager/4.3.0": { 316 | "type": "package", 317 | "serviceable": true, 318 | "sha512": "sha512-zCYivSL6Sp67gMkcczNln8WYw7Y1dGa8CPVTs385VbB25g11Kk5xoO8TytK6Qb5HO8n0AHCNsp6Ltv7EEazh1Q==", 319 | "path": "system.resources.resourcemanager/4.3.0", 320 | "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" 321 | }, 322 | "System.Runtime/4.3.0": { 323 | "type": "package", 324 | "serviceable": true, 325 | "sha512": "sha512-KijrInhiP+YGs4ZKcT1sGdgrftjfH4gZrBRKJfKsTvvqFclaA6hGeWzXLU2XJ2nNy3P7htJ4g9UDE+KjLANTCQ==", 326 | "path": "system.runtime/4.3.0", 327 | "hashPath": "system.runtime.4.3.0.nupkg.sha512" 328 | }, 329 | "System.Runtime.Extensions/4.3.0": { 330 | "type": "package", 331 | "serviceable": true, 332 | "sha512": "sha512-FbMqvUhS2mHvUrBQdje6QnAf7SPmnx48CN9iuBJ18+E5TKA+Tn5eFxvkVIUZjkIkeepYm4Ap5Rq5BTnVG5jHnA==", 333 | "path": "system.runtime.extensions/4.3.0", 334 | "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" 335 | }, 336 | "System.Text.Encoding/4.3.0": { 337 | "type": "package", 338 | "serviceable": true, 339 | "sha512": "sha512-SzIbqxzENo10YtPeMhvqI0dfCqE4Q+Fud7YF7jEP4MuZ3Nza9w+QGOFQJ+hyg7WIDtRKsN0cnkodSW5//6kqVw==", 340 | "path": "system.text.encoding/4.3.0", 341 | "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" 342 | }, 343 | "System.Text.Encoding.Extensions/4.3.0": { 344 | "type": "package", 345 | "serviceable": true, 346 | "sha512": "sha512-Ne/tEJYVXxMYOLdpMZ4KFYTyT4GrWS7zM+enXSRFsCWHVnTizKgwaXgQ80JdrPJLtjoGdBvTOsnTyU0rSGf1wQ==", 347 | "path": "system.text.encoding.extensions/4.3.0", 348 | "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" 349 | }, 350 | "System.Text.RegularExpressions/4.3.0": { 351 | "type": "package", 352 | "serviceable": true, 353 | "sha512": "sha512-bP8xKEESq6EOKFvRYGUwPkLGtZre1Y3QQKLmY21WgNLTxDs8Aff0AeKEXZL0TgkL8SrIkE7lCnXFTi9MqdAHMg==", 354 | "path": "system.text.regularexpressions/4.3.0", 355 | "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" 356 | }, 357 | "System.Threading/4.3.0": { 358 | "type": "package", 359 | "serviceable": true, 360 | "sha512": "sha512-7VnBJCVkxFIES+qCjPN/sGN0RWI5xAE7/kfD2qfJPBMEoMeFzI74bb7CjL0C97TJ1uN35Ah85mM4acCPh0zyBA==", 361 | "path": "system.threading/4.3.0", 362 | "hashPath": "system.threading.4.3.0.nupkg.sha512" 363 | }, 364 | "System.Threading.Tasks/4.3.0": { 365 | "type": "package", 366 | "serviceable": true, 367 | "sha512": "sha512-9Mdk6qutu+3TRSWxzJaC9Sdm3BNYX34FJ2g2Oct/be/BT46JMGexURivTZbkQxL48W4RxvTtG0CZHMRnmbi+Dg==", 368 | "path": "system.threading.tasks/4.3.0", 369 | "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" 370 | }, 371 | "System.Xml.ReaderWriter/4.3.0": { 372 | "type": "package", 373 | "serviceable": true, 374 | "sha512": "sha512-ffATtFd2XaSXv3bdR0sYLUMgmUdoY3LvjE4DOJmdHyw6gn9gdZSCPZXdoI74eJ08cz1r7rLf8U7oROqB5xkQ4Q==", 375 | "path": "system.xml.readerwriter/4.3.0", 376 | "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" 377 | }, 378 | "System.Xml.XDocument/4.3.0": { 379 | "type": "package", 380 | "serviceable": true, 381 | "sha512": "sha512-Q7EOvbGqTkSj8Ot/6yyuQnGOqWAvCcPqaFUsRwKAa61ugnvakD+9tB3yTewut6HjV978Z0TEKwzCz6sAWS9G8g==", 382 | "path": "system.xml.xdocument/4.3.0", 383 | "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" 384 | } 385 | } 386 | } -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard1.0/Unity.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netstandard1.0/Unity.Abstractions.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard1.0/Unity.Abstractions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netstandard1.0/Unity.Abstractions.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard1.0/Unity.Container.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETStandard,Version=v1.0/", 4 | "signature": "9a0b6ac8bd918fe11bd7e956e15451b11d5d6174" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETStandard,Version=v1.0": {}, 9 | ".NETStandard,Version=v1.0/": { 10 | "Unity.Container/5.8.13": { 11 | "dependencies": { 12 | "NETStandard.Library": "1.6.1", 13 | "Unity.Abstractions": "3.3.1" 14 | }, 15 | "runtime": { 16 | "Unity.Container.dll": {} 17 | } 18 | }, 19 | "Microsoft.NETCore.Platforms/1.1.0": {}, 20 | "Microsoft.NETCore.Targets/1.1.0": {}, 21 | "NETStandard.Library/1.6.1": { 22 | "dependencies": { 23 | "Microsoft.NETCore.Platforms": "1.1.0", 24 | "System.Collections": "4.3.0", 25 | "System.Diagnostics.Debug": "4.3.0", 26 | "System.Diagnostics.Tools": "4.3.0", 27 | "System.Globalization": "4.3.0", 28 | "System.IO": "4.3.0", 29 | "System.Linq": "4.3.0", 30 | "System.Linq.Expressions": "4.3.0", 31 | "System.Net.Primitives": "4.3.0", 32 | "System.ObjectModel": "4.3.0", 33 | "System.Reflection": "4.3.0", 34 | "System.Reflection.Extensions": "4.3.0", 35 | "System.Reflection.Primitives": "4.3.0", 36 | "System.Resources.ResourceManager": "4.3.0", 37 | "System.Runtime": "4.3.0", 38 | "System.Runtime.Extensions": "4.3.0", 39 | "System.Text.Encoding": "4.3.0", 40 | "System.Text.Encoding.Extensions": "4.3.0", 41 | "System.Text.RegularExpressions": "4.3.0", 42 | "System.Threading": "4.3.0", 43 | "System.Threading.Tasks": "4.3.0", 44 | "System.Xml.ReaderWriter": "4.3.0", 45 | "System.Xml.XDocument": "4.3.0" 46 | } 47 | }, 48 | "System.Collections/4.3.0": { 49 | "dependencies": { 50 | "Microsoft.NETCore.Platforms": "1.1.0", 51 | "Microsoft.NETCore.Targets": "1.1.0", 52 | "System.Runtime": "4.3.0" 53 | } 54 | }, 55 | "System.Diagnostics.Debug/4.3.0": { 56 | "dependencies": { 57 | "Microsoft.NETCore.Platforms": "1.1.0", 58 | "Microsoft.NETCore.Targets": "1.1.0", 59 | "System.Runtime": "4.3.0" 60 | } 61 | }, 62 | "System.Diagnostics.Tools/4.3.0": { 63 | "dependencies": { 64 | "Microsoft.NETCore.Platforms": "1.1.0", 65 | "Microsoft.NETCore.Targets": "1.1.0", 66 | "System.Runtime": "4.3.0" 67 | } 68 | }, 69 | "System.Globalization/4.3.0": { 70 | "dependencies": { 71 | "Microsoft.NETCore.Platforms": "1.1.0", 72 | "Microsoft.NETCore.Targets": "1.1.0", 73 | "System.Runtime": "4.3.0" 74 | } 75 | }, 76 | "System.IO/4.3.0": { 77 | "dependencies": { 78 | "Microsoft.NETCore.Platforms": "1.1.0", 79 | "Microsoft.NETCore.Targets": "1.1.0", 80 | "System.Runtime": "4.3.0", 81 | "System.Text.Encoding": "4.3.0", 82 | "System.Threading.Tasks": "4.3.0" 83 | } 84 | }, 85 | "System.Linq/4.3.0": { 86 | "dependencies": { 87 | "System.Collections": "4.3.0", 88 | "System.Runtime": "4.3.0" 89 | } 90 | }, 91 | "System.Linq.Expressions/4.3.0": { 92 | "dependencies": { 93 | "System.Reflection": "4.3.0", 94 | "System.Runtime": "4.3.0" 95 | } 96 | }, 97 | "System.Net.Primitives/4.3.0": { 98 | "dependencies": { 99 | "Microsoft.NETCore.Platforms": "1.1.0", 100 | "Microsoft.NETCore.Targets": "1.1.0", 101 | "System.Runtime": "4.3.0" 102 | } 103 | }, 104 | "System.ObjectModel/4.3.0": { 105 | "dependencies": { 106 | "System.Runtime": "4.3.0" 107 | } 108 | }, 109 | "System.Reflection/4.3.0": { 110 | "dependencies": { 111 | "Microsoft.NETCore.Platforms": "1.1.0", 112 | "Microsoft.NETCore.Targets": "1.1.0", 113 | "System.IO": "4.3.0", 114 | "System.Reflection.Primitives": "4.3.0", 115 | "System.Runtime": "4.3.0" 116 | } 117 | }, 118 | "System.Reflection.Extensions/4.3.0": { 119 | "dependencies": { 120 | "Microsoft.NETCore.Platforms": "1.1.0", 121 | "Microsoft.NETCore.Targets": "1.1.0", 122 | "System.Reflection": "4.3.0", 123 | "System.Runtime": "4.3.0" 124 | } 125 | }, 126 | "System.Reflection.Primitives/4.3.0": { 127 | "dependencies": { 128 | "Microsoft.NETCore.Platforms": "1.1.0", 129 | "Microsoft.NETCore.Targets": "1.1.0", 130 | "System.Runtime": "4.3.0" 131 | } 132 | }, 133 | "System.Resources.ResourceManager/4.3.0": { 134 | "dependencies": { 135 | "Microsoft.NETCore.Platforms": "1.1.0", 136 | "Microsoft.NETCore.Targets": "1.1.0", 137 | "System.Globalization": "4.3.0", 138 | "System.Reflection": "4.3.0", 139 | "System.Runtime": "4.3.0" 140 | } 141 | }, 142 | "System.Runtime/4.3.0": { 143 | "dependencies": { 144 | "Microsoft.NETCore.Platforms": "1.1.0", 145 | "Microsoft.NETCore.Targets": "1.1.0" 146 | } 147 | }, 148 | "System.Runtime.Extensions/4.3.0": { 149 | "dependencies": { 150 | "Microsoft.NETCore.Platforms": "1.1.0", 151 | "Microsoft.NETCore.Targets": "1.1.0", 152 | "System.Runtime": "4.3.0" 153 | } 154 | }, 155 | "System.Text.Encoding/4.3.0": { 156 | "dependencies": { 157 | "Microsoft.NETCore.Platforms": "1.1.0", 158 | "Microsoft.NETCore.Targets": "1.1.0", 159 | "System.Runtime": "4.3.0" 160 | } 161 | }, 162 | "System.Text.Encoding.Extensions/4.3.0": { 163 | "dependencies": { 164 | "Microsoft.NETCore.Platforms": "1.1.0", 165 | "Microsoft.NETCore.Targets": "1.1.0", 166 | "System.Runtime": "4.3.0", 167 | "System.Text.Encoding": "4.3.0" 168 | } 169 | }, 170 | "System.Text.RegularExpressions/4.3.0": { 171 | "dependencies": { 172 | "System.Runtime": "4.3.0" 173 | } 174 | }, 175 | "System.Threading/4.3.0": { 176 | "dependencies": { 177 | "System.Runtime": "4.3.0", 178 | "System.Threading.Tasks": "4.3.0" 179 | } 180 | }, 181 | "System.Threading.Tasks/4.3.0": { 182 | "dependencies": { 183 | "Microsoft.NETCore.Platforms": "1.1.0", 184 | "Microsoft.NETCore.Targets": "1.1.0", 185 | "System.Runtime": "4.3.0" 186 | } 187 | }, 188 | "System.Xml.ReaderWriter/4.3.0": { 189 | "dependencies": { 190 | "System.IO": "4.3.0", 191 | "System.Runtime": "4.3.0", 192 | "System.Text.Encoding": "4.3.0", 193 | "System.Threading.Tasks": "4.3.0" 194 | } 195 | }, 196 | "System.Xml.XDocument/4.3.0": { 197 | "dependencies": { 198 | "System.IO": "4.3.0", 199 | "System.Runtime": "4.3.0", 200 | "System.Xml.ReaderWriter": "4.3.0" 201 | } 202 | }, 203 | "Unity.Abstractions/3.3.1": { 204 | "dependencies": { 205 | "NETStandard.Library": "1.6.1" 206 | }, 207 | "runtime": { 208 | "Unity.Abstractions.dll": {} 209 | } 210 | } 211 | } 212 | }, 213 | "libraries": { 214 | "Unity.Container/5.8.13": { 215 | "type": "project", 216 | "serviceable": false, 217 | "sha512": "" 218 | }, 219 | "Microsoft.NETCore.Platforms/1.1.0": { 220 | "type": "package", 221 | "serviceable": true, 222 | "sha512": "sha512-d15KS6WIdb5TzAEQiNM7KxB5TYb7cgiRk/767t83xYicHpHoqekPHXLWOc6gyh/FDF77dj4oR1/qg2tnPRfM1g==", 223 | "path": "microsoft.netcore.platforms/1.1.0", 224 | "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" 225 | }, 226 | "Microsoft.NETCore.Targets/1.1.0": { 227 | "type": "package", 228 | "serviceable": true, 229 | "sha512": "sha512-ytLLWSzd1X4/wJDCh3AVJCpyMjlt1gM5oHvIb7MvVGzNgSflpyccYmuisFGU5Uc79JahYmVYwgGhc5ZBypTBDA==", 230 | "path": "microsoft.netcore.targets/1.1.0", 231 | "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" 232 | }, 233 | "NETStandard.Library/1.6.1": { 234 | "type": "package", 235 | "serviceable": true, 236 | "sha512": "sha512-A2VXIgOKsJH/+FYHDyqx+0blYlcWMpofnEubqvWgvIVETbuaFn7kQFWodMekYRQlTXX+T7MQC+wn7VqrnMzszg==", 237 | "path": "netstandard.library/1.6.1", 238 | "hashPath": "netstandard.library.1.6.1.nupkg.sha512" 239 | }, 240 | "System.Collections/4.3.0": { 241 | "type": "package", 242 | "serviceable": true, 243 | "sha512": "sha512-IBm+Q1J1tm1WL8i75kHNGMciYO++PKuUCG5t+mjcZ7bseyz553hk+eMzDCj7PA4KBxH231a/9WYb8lhrDv1iRw==", 244 | "path": "system.collections/4.3.0", 245 | "hashPath": "system.collections.4.3.0.nupkg.sha512" 246 | }, 247 | "System.Diagnostics.Debug/4.3.0": { 248 | "type": "package", 249 | "serviceable": true, 250 | "sha512": "sha512-n32WASxghwyuvm8kdm5sfQGWBGUV0YqGqcWIFHZlQ346GWNJkWNiZcZgXnpVfqhltZuGHq6oXoO45Dc90d/ezw==", 251 | "path": "system.diagnostics.debug/4.3.0", 252 | "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" 253 | }, 254 | "System.Diagnostics.Tools/4.3.0": { 255 | "type": "package", 256 | "serviceable": true, 257 | "sha512": "sha512-IdYK1XbL3dovlHJ0Rn1jOLURy9eS6rSmPNokaUgwGTrNqq4TJIUYeRLIULM3vwdTo9G4qF3wH4pn/cCi1FeQHg==", 258 | "path": "system.diagnostics.tools/4.3.0", 259 | "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" 260 | }, 261 | "System.Globalization/4.3.0": { 262 | "type": "package", 263 | "serviceable": true, 264 | "sha512": "sha512-5ay4bV2/N1RP5XY8xUjQ/qjcdwxkb4vlpuoafj74xrohY6sh6jkNWCWmfycZE4/5qlOxZdtF3wL+KLYdp+7irw==", 265 | "path": "system.globalization/4.3.0", 266 | "hashPath": "system.globalization.4.3.0.nupkg.sha512" 267 | }, 268 | "System.IO/4.3.0": { 269 | "type": "package", 270 | "serviceable": true, 271 | "sha512": "sha512-L5YORr8xPIUjmF7mvHMtxTePiHKxsTUckAACjt7fzhHYJPih4WaJwptI9ZyInkdRaOCVjVCoIogsLSR2uWkwsw==", 272 | "path": "system.io/4.3.0", 273 | "hashPath": "system.io.4.3.0.nupkg.sha512" 274 | }, 275 | "System.Linq/4.3.0": { 276 | "type": "package", 277 | "serviceable": true, 278 | "sha512": "sha512-LQhiK6Bsl3fMskpyJ32yh2H9N+m98F4JHiNB1wLQsb9Ct0WJg1ExstYA1jnNknj78fXZwjjnTfL4n+GbjY9LkA==", 279 | "path": "system.linq/4.3.0", 280 | "hashPath": "system.linq.4.3.0.nupkg.sha512" 281 | }, 282 | "System.Linq.Expressions/4.3.0": { 283 | "type": "package", 284 | "serviceable": true, 285 | "sha512": "sha512-nYIClsbYRMHfhD9KOHYrGn9P//jljwc71noboKNYfnS5bLklNr2MhpGMnSlDW7iETD5demPQCLYMXoGDY3Kjtw==", 286 | "path": "system.linq.expressions/4.3.0", 287 | "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" 288 | }, 289 | "System.Net.Primitives/4.3.0": { 290 | "type": "package", 291 | "serviceable": true, 292 | "sha512": "sha512-YfOFWRUd20IOJZ1W9rqr3YHNNI0jbKCYwAMk1IGpypwDSpuQwDJloE67T+4AH6ZqjUslI/SA67lvzlVYPadv5g==", 293 | "path": "system.net.primitives/4.3.0", 294 | "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" 295 | }, 296 | "System.ObjectModel/4.3.0": { 297 | "type": "package", 298 | "serviceable": true, 299 | "sha512": "sha512-Nskf2SYcbNQvAHWUgnZABh7dPKqHtSkeFaqzHGUAqHXmeDZmE2SwrxcCmlIBtsvk7yeSZEd975J7zcQ4Uewb/g==", 300 | "path": "system.objectmodel/4.3.0", 301 | "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" 302 | }, 303 | "System.Reflection/4.3.0": { 304 | "type": "package", 305 | "serviceable": true, 306 | "sha512": "sha512-qT7GlIYUEz3NmWBtF06oUbjQMrbtDcw4hCjhKDz3wjHbHMuVvkBKZztn64sJ1AwgtmWLmD7Bn7QHTLooiaXSPw==", 307 | "path": "system.reflection/4.3.0", 308 | "hashPath": "system.reflection.4.3.0.nupkg.sha512" 309 | }, 310 | "System.Reflection.Extensions/4.3.0": { 311 | "type": "package", 312 | "serviceable": true, 313 | "sha512": "sha512-YbRxNhNYsk4f6G+5/9Ne+v6sWczhWjARfaEGPzZcmdVuOKGt05DI1Z6TfGKZTLVqocGQjh+iQuiKem7jtSpu0g==", 314 | "path": "system.reflection.extensions/4.3.0", 315 | "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" 316 | }, 317 | "System.Reflection.Primitives/4.3.0": { 318 | "type": "package", 319 | "serviceable": true, 320 | "sha512": "sha512-ix3iL33E9DdpLwJa087WQTvan+QuEfwHQZqf+2hjb58Gn4Vi/qVaOCo7tNnb5+l8szXKywSSM0//ucUIyF870g==", 321 | "path": "system.reflection.primitives/4.3.0", 322 | "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" 323 | }, 324 | "System.Resources.ResourceManager/4.3.0": { 325 | "type": "package", 326 | "serviceable": true, 327 | "sha512": "sha512-zCYivSL6Sp67gMkcczNln8WYw7Y1dGa8CPVTs385VbB25g11Kk5xoO8TytK6Qb5HO8n0AHCNsp6Ltv7EEazh1Q==", 328 | "path": "system.resources.resourcemanager/4.3.0", 329 | "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" 330 | }, 331 | "System.Runtime/4.3.0": { 332 | "type": "package", 333 | "serviceable": true, 334 | "sha512": "sha512-KijrInhiP+YGs4ZKcT1sGdgrftjfH4gZrBRKJfKsTvvqFclaA6hGeWzXLU2XJ2nNy3P7htJ4g9UDE+KjLANTCQ==", 335 | "path": "system.runtime/4.3.0", 336 | "hashPath": "system.runtime.4.3.0.nupkg.sha512" 337 | }, 338 | "System.Runtime.Extensions/4.3.0": { 339 | "type": "package", 340 | "serviceable": true, 341 | "sha512": "sha512-FbMqvUhS2mHvUrBQdje6QnAf7SPmnx48CN9iuBJ18+E5TKA+Tn5eFxvkVIUZjkIkeepYm4Ap5Rq5BTnVG5jHnA==", 342 | "path": "system.runtime.extensions/4.3.0", 343 | "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" 344 | }, 345 | "System.Text.Encoding/4.3.0": { 346 | "type": "package", 347 | "serviceable": true, 348 | "sha512": "sha512-SzIbqxzENo10YtPeMhvqI0dfCqE4Q+Fud7YF7jEP4MuZ3Nza9w+QGOFQJ+hyg7WIDtRKsN0cnkodSW5//6kqVw==", 349 | "path": "system.text.encoding/4.3.0", 350 | "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" 351 | }, 352 | "System.Text.Encoding.Extensions/4.3.0": { 353 | "type": "package", 354 | "serviceable": true, 355 | "sha512": "sha512-Ne/tEJYVXxMYOLdpMZ4KFYTyT4GrWS7zM+enXSRFsCWHVnTizKgwaXgQ80JdrPJLtjoGdBvTOsnTyU0rSGf1wQ==", 356 | "path": "system.text.encoding.extensions/4.3.0", 357 | "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" 358 | }, 359 | "System.Text.RegularExpressions/4.3.0": { 360 | "type": "package", 361 | "serviceable": true, 362 | "sha512": "sha512-bP8xKEESq6EOKFvRYGUwPkLGtZre1Y3QQKLmY21WgNLTxDs8Aff0AeKEXZL0TgkL8SrIkE7lCnXFTi9MqdAHMg==", 363 | "path": "system.text.regularexpressions/4.3.0", 364 | "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" 365 | }, 366 | "System.Threading/4.3.0": { 367 | "type": "package", 368 | "serviceable": true, 369 | "sha512": "sha512-7VnBJCVkxFIES+qCjPN/sGN0RWI5xAE7/kfD2qfJPBMEoMeFzI74bb7CjL0C97TJ1uN35Ah85mM4acCPh0zyBA==", 370 | "path": "system.threading/4.3.0", 371 | "hashPath": "system.threading.4.3.0.nupkg.sha512" 372 | }, 373 | "System.Threading.Tasks/4.3.0": { 374 | "type": "package", 375 | "serviceable": true, 376 | "sha512": "sha512-9Mdk6qutu+3TRSWxzJaC9Sdm3BNYX34FJ2g2Oct/be/BT46JMGexURivTZbkQxL48W4RxvTtG0CZHMRnmbi+Dg==", 377 | "path": "system.threading.tasks/4.3.0", 378 | "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" 379 | }, 380 | "System.Xml.ReaderWriter/4.3.0": { 381 | "type": "package", 382 | "serviceable": true, 383 | "sha512": "sha512-ffATtFd2XaSXv3bdR0sYLUMgmUdoY3LvjE4DOJmdHyw6gn9gdZSCPZXdoI74eJ08cz1r7rLf8U7oROqB5xkQ4Q==", 384 | "path": "system.xml.readerwriter/4.3.0", 385 | "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" 386 | }, 387 | "System.Xml.XDocument/4.3.0": { 388 | "type": "package", 389 | "serviceable": true, 390 | "sha512": "sha512-Q7EOvbGqTkSj8Ot/6yyuQnGOqWAvCcPqaFUsRwKAa61ugnvakD+9tB3yTewut6HjV978Z0TEKwzCz6sAWS9G8g==", 391 | "path": "system.xml.xdocument/4.3.0", 392 | "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" 393 | }, 394 | "Unity.Abstractions/3.3.1": { 395 | "type": "project", 396 | "serviceable": false, 397 | "sha512": "" 398 | } 399 | } 400 | } -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard1.0/Unity.Container.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netstandard1.0/Unity.Container.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard1.0/Unity.Container.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netstandard1.0/Unity.Container.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard1.0/Unity.ServiceLocation.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETStandard,Version=v1.0/", 4 | "signature": "38c0039ef413e73e1ecfe7e135a91109c408f871" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETStandard,Version=v1.0": {}, 9 | ".NETStandard,Version=v1.0/": { 10 | "Unity.ServiceLocation/2.1.2": { 11 | "dependencies": { 12 | "CommonServiceLocator": "2.0.4", 13 | "NETStandard.Library": "1.6.1", 14 | "Unity.Abstractions": "3.3.1" 15 | }, 16 | "runtime": { 17 | "Unity.ServiceLocation.dll": {} 18 | } 19 | }, 20 | "Microsoft.NETCore.Platforms/1.1.0": {}, 21 | "Microsoft.NETCore.Targets/1.1.0": {}, 22 | "NETStandard.Library/1.6.1": { 23 | "dependencies": { 24 | "Microsoft.NETCore.Platforms": "1.1.0", 25 | "System.Collections": "4.3.0", 26 | "System.Diagnostics.Debug": "4.3.0", 27 | "System.Diagnostics.Tools": "4.3.0", 28 | "System.Globalization": "4.3.0", 29 | "System.IO": "4.3.0", 30 | "System.Linq": "4.3.0", 31 | "System.Linq.Expressions": "4.3.0", 32 | "System.Net.Primitives": "4.3.0", 33 | "System.ObjectModel": "4.3.0", 34 | "System.Reflection": "4.3.0", 35 | "System.Reflection.Extensions": "4.3.0", 36 | "System.Reflection.Primitives": "4.3.0", 37 | "System.Resources.ResourceManager": "4.3.0", 38 | "System.Runtime": "4.3.0", 39 | "System.Runtime.Extensions": "4.3.0", 40 | "System.Text.Encoding": "4.3.0", 41 | "System.Text.Encoding.Extensions": "4.3.0", 42 | "System.Text.RegularExpressions": "4.3.0", 43 | "System.Threading": "4.3.0", 44 | "System.Threading.Tasks": "4.3.0", 45 | "System.Xml.ReaderWriter": "4.3.0", 46 | "System.Xml.XDocument": "4.3.0" 47 | } 48 | }, 49 | "System.Collections/4.3.0": { 50 | "dependencies": { 51 | "Microsoft.NETCore.Platforms": "1.1.0", 52 | "Microsoft.NETCore.Targets": "1.1.0", 53 | "System.Runtime": "4.3.0" 54 | } 55 | }, 56 | "System.ComponentModel/4.3.0": { 57 | "dependencies": { 58 | "System.Runtime": "4.3.0" 59 | } 60 | }, 61 | "System.Diagnostics.Debug/4.3.0": { 62 | "dependencies": { 63 | "Microsoft.NETCore.Platforms": "1.1.0", 64 | "Microsoft.NETCore.Targets": "1.1.0", 65 | "System.Runtime": "4.3.0" 66 | } 67 | }, 68 | "System.Diagnostics.Tools/4.3.0": { 69 | "dependencies": { 70 | "Microsoft.NETCore.Platforms": "1.1.0", 71 | "Microsoft.NETCore.Targets": "1.1.0", 72 | "System.Runtime": "4.3.0" 73 | } 74 | }, 75 | "System.Globalization/4.3.0": { 76 | "dependencies": { 77 | "Microsoft.NETCore.Platforms": "1.1.0", 78 | "Microsoft.NETCore.Targets": "1.1.0", 79 | "System.Runtime": "4.3.0" 80 | } 81 | }, 82 | "System.IO/4.3.0": { 83 | "dependencies": { 84 | "Microsoft.NETCore.Platforms": "1.1.0", 85 | "Microsoft.NETCore.Targets": "1.1.0", 86 | "System.Runtime": "4.3.0", 87 | "System.Text.Encoding": "4.3.0", 88 | "System.Threading.Tasks": "4.3.0" 89 | } 90 | }, 91 | "System.Linq/4.3.0": { 92 | "dependencies": { 93 | "System.Collections": "4.3.0", 94 | "System.Runtime": "4.3.0" 95 | } 96 | }, 97 | "System.Linq.Expressions/4.3.0": { 98 | "dependencies": { 99 | "System.Reflection": "4.3.0", 100 | "System.Runtime": "4.3.0" 101 | } 102 | }, 103 | "System.Net.Primitives/4.3.0": { 104 | "dependencies": { 105 | "Microsoft.NETCore.Platforms": "1.1.0", 106 | "Microsoft.NETCore.Targets": "1.1.0", 107 | "System.Runtime": "4.3.0" 108 | } 109 | }, 110 | "System.ObjectModel/4.3.0": { 111 | "dependencies": { 112 | "System.Runtime": "4.3.0" 113 | } 114 | }, 115 | "System.Reflection/4.3.0": { 116 | "dependencies": { 117 | "Microsoft.NETCore.Platforms": "1.1.0", 118 | "Microsoft.NETCore.Targets": "1.1.0", 119 | "System.IO": "4.3.0", 120 | "System.Reflection.Primitives": "4.3.0", 121 | "System.Runtime": "4.3.0" 122 | } 123 | }, 124 | "System.Reflection.Extensions/4.3.0": { 125 | "dependencies": { 126 | "Microsoft.NETCore.Platforms": "1.1.0", 127 | "Microsoft.NETCore.Targets": "1.1.0", 128 | "System.Reflection": "4.3.0", 129 | "System.Runtime": "4.3.0" 130 | } 131 | }, 132 | "System.Reflection.Primitives/4.3.0": { 133 | "dependencies": { 134 | "Microsoft.NETCore.Platforms": "1.1.0", 135 | "Microsoft.NETCore.Targets": "1.1.0", 136 | "System.Runtime": "4.3.0" 137 | } 138 | }, 139 | "System.Resources.ResourceManager/4.3.0": { 140 | "dependencies": { 141 | "Microsoft.NETCore.Platforms": "1.1.0", 142 | "Microsoft.NETCore.Targets": "1.1.0", 143 | "System.Globalization": "4.3.0", 144 | "System.Reflection": "4.3.0", 145 | "System.Runtime": "4.3.0" 146 | } 147 | }, 148 | "System.Runtime/4.3.0": { 149 | "dependencies": { 150 | "Microsoft.NETCore.Platforms": "1.1.0", 151 | "Microsoft.NETCore.Targets": "1.1.0" 152 | } 153 | }, 154 | "System.Runtime.Extensions/4.3.0": { 155 | "dependencies": { 156 | "Microsoft.NETCore.Platforms": "1.1.0", 157 | "Microsoft.NETCore.Targets": "1.1.0", 158 | "System.Runtime": "4.3.0" 159 | } 160 | }, 161 | "System.Text.Encoding/4.3.0": { 162 | "dependencies": { 163 | "Microsoft.NETCore.Platforms": "1.1.0", 164 | "Microsoft.NETCore.Targets": "1.1.0", 165 | "System.Runtime": "4.3.0" 166 | } 167 | }, 168 | "System.Text.Encoding.Extensions/4.3.0": { 169 | "dependencies": { 170 | "Microsoft.NETCore.Platforms": "1.1.0", 171 | "Microsoft.NETCore.Targets": "1.1.0", 172 | "System.Runtime": "4.3.0", 173 | "System.Text.Encoding": "4.3.0" 174 | } 175 | }, 176 | "System.Text.RegularExpressions/4.3.0": { 177 | "dependencies": { 178 | "System.Runtime": "4.3.0" 179 | } 180 | }, 181 | "System.Threading/4.3.0": { 182 | "dependencies": { 183 | "System.Runtime": "4.3.0", 184 | "System.Threading.Tasks": "4.3.0" 185 | } 186 | }, 187 | "System.Threading.Tasks/4.3.0": { 188 | "dependencies": { 189 | "Microsoft.NETCore.Platforms": "1.1.0", 190 | "Microsoft.NETCore.Targets": "1.1.0", 191 | "System.Runtime": "4.3.0" 192 | } 193 | }, 194 | "System.Xml.ReaderWriter/4.3.0": { 195 | "dependencies": { 196 | "System.IO": "4.3.0", 197 | "System.Runtime": "4.3.0", 198 | "System.Text.Encoding": "4.3.0", 199 | "System.Threading.Tasks": "4.3.0" 200 | } 201 | }, 202 | "System.Xml.XDocument/4.3.0": { 203 | "dependencies": { 204 | "System.IO": "4.3.0", 205 | "System.Runtime": "4.3.0", 206 | "System.Xml.ReaderWriter": "4.3.0" 207 | } 208 | }, 209 | "CommonServiceLocator/2.0.4": { 210 | "dependencies": { 211 | "NETStandard.Library": "1.6.1", 212 | "System.ComponentModel": "4.3.0" 213 | }, 214 | "runtime": { 215 | "CommonServiceLocator.dll": {} 216 | } 217 | }, 218 | "Unity.Abstractions/3.3.1": { 219 | "dependencies": { 220 | "NETStandard.Library": "1.6.1" 221 | }, 222 | "runtime": { 223 | "Unity.Abstractions.dll": {} 224 | } 225 | } 226 | } 227 | }, 228 | "libraries": { 229 | "Unity.ServiceLocation/2.1.2": { 230 | "type": "project", 231 | "serviceable": false, 232 | "sha512": "" 233 | }, 234 | "Microsoft.NETCore.Platforms/1.1.0": { 235 | "type": "package", 236 | "serviceable": true, 237 | "sha512": "sha512-d15KS6WIdb5TzAEQiNM7KxB5TYb7cgiRk/767t83xYicHpHoqekPHXLWOc6gyh/FDF77dj4oR1/qg2tnPRfM1g==", 238 | "path": "microsoft.netcore.platforms/1.1.0", 239 | "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" 240 | }, 241 | "Microsoft.NETCore.Targets/1.1.0": { 242 | "type": "package", 243 | "serviceable": true, 244 | "sha512": "sha512-ytLLWSzd1X4/wJDCh3AVJCpyMjlt1gM5oHvIb7MvVGzNgSflpyccYmuisFGU5Uc79JahYmVYwgGhc5ZBypTBDA==", 245 | "path": "microsoft.netcore.targets/1.1.0", 246 | "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" 247 | }, 248 | "NETStandard.Library/1.6.1": { 249 | "type": "package", 250 | "serviceable": true, 251 | "sha512": "sha512-A2VXIgOKsJH/+FYHDyqx+0blYlcWMpofnEubqvWgvIVETbuaFn7kQFWodMekYRQlTXX+T7MQC+wn7VqrnMzszg==", 252 | "path": "netstandard.library/1.6.1", 253 | "hashPath": "netstandard.library.1.6.1.nupkg.sha512" 254 | }, 255 | "System.Collections/4.3.0": { 256 | "type": "package", 257 | "serviceable": true, 258 | "sha512": "sha512-IBm+Q1J1tm1WL8i75kHNGMciYO++PKuUCG5t+mjcZ7bseyz553hk+eMzDCj7PA4KBxH231a/9WYb8lhrDv1iRw==", 259 | "path": "system.collections/4.3.0", 260 | "hashPath": "system.collections.4.3.0.nupkg.sha512" 261 | }, 262 | "System.ComponentModel/4.3.0": { 263 | "type": "package", 264 | "serviceable": true, 265 | "sha512": "sha512-vI932IM2wdu+hSFFKdgxPsm6CH7C+xvHWCGYIHQu2IJrPrqvsDpTctjAN50modDsc71m2qoHrLQgmU9Us9euSg==", 266 | "path": "system.componentmodel/4.3.0", 267 | "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" 268 | }, 269 | "System.Diagnostics.Debug/4.3.0": { 270 | "type": "package", 271 | "serviceable": true, 272 | "sha512": "sha512-n32WASxghwyuvm8kdm5sfQGWBGUV0YqGqcWIFHZlQ346GWNJkWNiZcZgXnpVfqhltZuGHq6oXoO45Dc90d/ezw==", 273 | "path": "system.diagnostics.debug/4.3.0", 274 | "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" 275 | }, 276 | "System.Diagnostics.Tools/4.3.0": { 277 | "type": "package", 278 | "serviceable": true, 279 | "sha512": "sha512-IdYK1XbL3dovlHJ0Rn1jOLURy9eS6rSmPNokaUgwGTrNqq4TJIUYeRLIULM3vwdTo9G4qF3wH4pn/cCi1FeQHg==", 280 | "path": "system.diagnostics.tools/4.3.0", 281 | "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" 282 | }, 283 | "System.Globalization/4.3.0": { 284 | "type": "package", 285 | "serviceable": true, 286 | "sha512": "sha512-5ay4bV2/N1RP5XY8xUjQ/qjcdwxkb4vlpuoafj74xrohY6sh6jkNWCWmfycZE4/5qlOxZdtF3wL+KLYdp+7irw==", 287 | "path": "system.globalization/4.3.0", 288 | "hashPath": "system.globalization.4.3.0.nupkg.sha512" 289 | }, 290 | "System.IO/4.3.0": { 291 | "type": "package", 292 | "serviceable": true, 293 | "sha512": "sha512-L5YORr8xPIUjmF7mvHMtxTePiHKxsTUckAACjt7fzhHYJPih4WaJwptI9ZyInkdRaOCVjVCoIogsLSR2uWkwsw==", 294 | "path": "system.io/4.3.0", 295 | "hashPath": "system.io.4.3.0.nupkg.sha512" 296 | }, 297 | "System.Linq/4.3.0": { 298 | "type": "package", 299 | "serviceable": true, 300 | "sha512": "sha512-LQhiK6Bsl3fMskpyJ32yh2H9N+m98F4JHiNB1wLQsb9Ct0WJg1ExstYA1jnNknj78fXZwjjnTfL4n+GbjY9LkA==", 301 | "path": "system.linq/4.3.0", 302 | "hashPath": "system.linq.4.3.0.nupkg.sha512" 303 | }, 304 | "System.Linq.Expressions/4.3.0": { 305 | "type": "package", 306 | "serviceable": true, 307 | "sha512": "sha512-nYIClsbYRMHfhD9KOHYrGn9P//jljwc71noboKNYfnS5bLklNr2MhpGMnSlDW7iETD5demPQCLYMXoGDY3Kjtw==", 308 | "path": "system.linq.expressions/4.3.0", 309 | "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" 310 | }, 311 | "System.Net.Primitives/4.3.0": { 312 | "type": "package", 313 | "serviceable": true, 314 | "sha512": "sha512-YfOFWRUd20IOJZ1W9rqr3YHNNI0jbKCYwAMk1IGpypwDSpuQwDJloE67T+4AH6ZqjUslI/SA67lvzlVYPadv5g==", 315 | "path": "system.net.primitives/4.3.0", 316 | "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" 317 | }, 318 | "System.ObjectModel/4.3.0": { 319 | "type": "package", 320 | "serviceable": true, 321 | "sha512": "sha512-Nskf2SYcbNQvAHWUgnZABh7dPKqHtSkeFaqzHGUAqHXmeDZmE2SwrxcCmlIBtsvk7yeSZEd975J7zcQ4Uewb/g==", 322 | "path": "system.objectmodel/4.3.0", 323 | "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" 324 | }, 325 | "System.Reflection/4.3.0": { 326 | "type": "package", 327 | "serviceable": true, 328 | "sha512": "sha512-qT7GlIYUEz3NmWBtF06oUbjQMrbtDcw4hCjhKDz3wjHbHMuVvkBKZztn64sJ1AwgtmWLmD7Bn7QHTLooiaXSPw==", 329 | "path": "system.reflection/4.3.0", 330 | "hashPath": "system.reflection.4.3.0.nupkg.sha512" 331 | }, 332 | "System.Reflection.Extensions/4.3.0": { 333 | "type": "package", 334 | "serviceable": true, 335 | "sha512": "sha512-YbRxNhNYsk4f6G+5/9Ne+v6sWczhWjARfaEGPzZcmdVuOKGt05DI1Z6TfGKZTLVqocGQjh+iQuiKem7jtSpu0g==", 336 | "path": "system.reflection.extensions/4.3.0", 337 | "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" 338 | }, 339 | "System.Reflection.Primitives/4.3.0": { 340 | "type": "package", 341 | "serviceable": true, 342 | "sha512": "sha512-ix3iL33E9DdpLwJa087WQTvan+QuEfwHQZqf+2hjb58Gn4Vi/qVaOCo7tNnb5+l8szXKywSSM0//ucUIyF870g==", 343 | "path": "system.reflection.primitives/4.3.0", 344 | "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" 345 | }, 346 | "System.Resources.ResourceManager/4.3.0": { 347 | "type": "package", 348 | "serviceable": true, 349 | "sha512": "sha512-zCYivSL6Sp67gMkcczNln8WYw7Y1dGa8CPVTs385VbB25g11Kk5xoO8TytK6Qb5HO8n0AHCNsp6Ltv7EEazh1Q==", 350 | "path": "system.resources.resourcemanager/4.3.0", 351 | "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" 352 | }, 353 | "System.Runtime/4.3.0": { 354 | "type": "package", 355 | "serviceable": true, 356 | "sha512": "sha512-KijrInhiP+YGs4ZKcT1sGdgrftjfH4gZrBRKJfKsTvvqFclaA6hGeWzXLU2XJ2nNy3P7htJ4g9UDE+KjLANTCQ==", 357 | "path": "system.runtime/4.3.0", 358 | "hashPath": "system.runtime.4.3.0.nupkg.sha512" 359 | }, 360 | "System.Runtime.Extensions/4.3.0": { 361 | "type": "package", 362 | "serviceable": true, 363 | "sha512": "sha512-FbMqvUhS2mHvUrBQdje6QnAf7SPmnx48CN9iuBJ18+E5TKA+Tn5eFxvkVIUZjkIkeepYm4Ap5Rq5BTnVG5jHnA==", 364 | "path": "system.runtime.extensions/4.3.0", 365 | "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" 366 | }, 367 | "System.Text.Encoding/4.3.0": { 368 | "type": "package", 369 | "serviceable": true, 370 | "sha512": "sha512-SzIbqxzENo10YtPeMhvqI0dfCqE4Q+Fud7YF7jEP4MuZ3Nza9w+QGOFQJ+hyg7WIDtRKsN0cnkodSW5//6kqVw==", 371 | "path": "system.text.encoding/4.3.0", 372 | "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" 373 | }, 374 | "System.Text.Encoding.Extensions/4.3.0": { 375 | "type": "package", 376 | "serviceable": true, 377 | "sha512": "sha512-Ne/tEJYVXxMYOLdpMZ4KFYTyT4GrWS7zM+enXSRFsCWHVnTizKgwaXgQ80JdrPJLtjoGdBvTOsnTyU0rSGf1wQ==", 378 | "path": "system.text.encoding.extensions/4.3.0", 379 | "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" 380 | }, 381 | "System.Text.RegularExpressions/4.3.0": { 382 | "type": "package", 383 | "serviceable": true, 384 | "sha512": "sha512-bP8xKEESq6EOKFvRYGUwPkLGtZre1Y3QQKLmY21WgNLTxDs8Aff0AeKEXZL0TgkL8SrIkE7lCnXFTi9MqdAHMg==", 385 | "path": "system.text.regularexpressions/4.3.0", 386 | "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" 387 | }, 388 | "System.Threading/4.3.0": { 389 | "type": "package", 390 | "serviceable": true, 391 | "sha512": "sha512-7VnBJCVkxFIES+qCjPN/sGN0RWI5xAE7/kfD2qfJPBMEoMeFzI74bb7CjL0C97TJ1uN35Ah85mM4acCPh0zyBA==", 392 | "path": "system.threading/4.3.0", 393 | "hashPath": "system.threading.4.3.0.nupkg.sha512" 394 | }, 395 | "System.Threading.Tasks/4.3.0": { 396 | "type": "package", 397 | "serviceable": true, 398 | "sha512": "sha512-9Mdk6qutu+3TRSWxzJaC9Sdm3BNYX34FJ2g2Oct/be/BT46JMGexURivTZbkQxL48W4RxvTtG0CZHMRnmbi+Dg==", 399 | "path": "system.threading.tasks/4.3.0", 400 | "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" 401 | }, 402 | "System.Xml.ReaderWriter/4.3.0": { 403 | "type": "package", 404 | "serviceable": true, 405 | "sha512": "sha512-ffATtFd2XaSXv3bdR0sYLUMgmUdoY3LvjE4DOJmdHyw6gn9gdZSCPZXdoI74eJ08cz1r7rLf8U7oROqB5xkQ4Q==", 406 | "path": "system.xml.readerwriter/4.3.0", 407 | "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" 408 | }, 409 | "System.Xml.XDocument/4.3.0": { 410 | "type": "package", 411 | "serviceable": true, 412 | "sha512": "sha512-Q7EOvbGqTkSj8Ot/6yyuQnGOqWAvCcPqaFUsRwKAa61ugnvakD+9tB3yTewut6HjV978Z0TEKwzCz6sAWS9G8g==", 413 | "path": "system.xml.xdocument/4.3.0", 414 | "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" 415 | }, 416 | "CommonServiceLocator/2.0.4": { 417 | "type": "project", 418 | "serviceable": false, 419 | "sha512": "" 420 | }, 421 | "Unity.Abstractions/3.3.1": { 422 | "type": "project", 423 | "serviceable": false, 424 | "sha512": "" 425 | } 426 | } 427 | } -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard1.0/Unity.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netstandard1.0/Unity.ServiceLocation.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard1.0/Unity.ServiceLocation.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netstandard1.0/Unity.ServiceLocation.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard2.0/CommonServiceLocator.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETStandard,Version=v2.0/", 4 | "signature": "cfe1dc2a80602aef150a12815387068463a61a0d" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETStandard,Version=v2.0": {}, 9 | ".NETStandard,Version=v2.0/": { 10 | "CommonServiceLocator/2.0.4": { 11 | "dependencies": { 12 | "NETStandard.Library": "2.0.3" 13 | }, 14 | "runtime": { 15 | "CommonServiceLocator.dll": {} 16 | } 17 | }, 18 | "Microsoft.NETCore.Platforms/1.1.0": {}, 19 | "NETStandard.Library/2.0.3": { 20 | "dependencies": { 21 | "Microsoft.NETCore.Platforms": "1.1.0" 22 | } 23 | } 24 | } 25 | }, 26 | "libraries": { 27 | "CommonServiceLocator/2.0.4": { 28 | "type": "project", 29 | "serviceable": false, 30 | "sha512": "" 31 | }, 32 | "Microsoft.NETCore.Platforms/1.1.0": { 33 | "type": "package", 34 | "serviceable": true, 35 | "sha512": "sha512-d15KS6WIdb5TzAEQiNM7KxB5TYb7cgiRk/767t83xYicHpHoqekPHXLWOc6gyh/FDF77dj4oR1/qg2tnPRfM1g==", 36 | "path": "microsoft.netcore.platforms/1.1.0", 37 | "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" 38 | }, 39 | "NETStandard.Library/2.0.3": { 40 | "type": "package", 41 | "serviceable": true, 42 | "sha512": "sha512-AiP+S1AUSbiuLtSiYV5eYiB48wu8Eo/bnMrFh0tdTWzWsmDc6KsNgsTuXMJLpjYWD8ocWvsKJmX1K/r6jbH4lQ==", 43 | "path": "netstandard.library/2.0.3", 44 | "hashPath": "netstandard.library.2.0.3.nupkg.sha512" 45 | } 46 | } 47 | } -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard2.0/CommonServiceLocator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netstandard2.0/CommonServiceLocator.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard2.0/CommonServiceLocator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netstandard2.0/CommonServiceLocator.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard2.0/Unity.Abstractions.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETStandard,Version=v2.0/", 4 | "signature": "cfe1dc2a80602aef150a12815387068463a61a0d" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETStandard,Version=v2.0": {}, 9 | ".NETStandard,Version=v2.0/": { 10 | "Unity.Abstractions/3.3.1": { 11 | "dependencies": { 12 | "NETStandard.Library": "2.0.3" 13 | }, 14 | "runtime": { 15 | "Unity.Abstractions.dll": {} 16 | } 17 | }, 18 | "Microsoft.NETCore.Platforms/1.1.0": {}, 19 | "NETStandard.Library/2.0.3": { 20 | "dependencies": { 21 | "Microsoft.NETCore.Platforms": "1.1.0" 22 | } 23 | } 24 | } 25 | }, 26 | "libraries": { 27 | "Unity.Abstractions/3.3.1": { 28 | "type": "project", 29 | "serviceable": false, 30 | "sha512": "" 31 | }, 32 | "Microsoft.NETCore.Platforms/1.1.0": { 33 | "type": "package", 34 | "serviceable": true, 35 | "sha512": "sha512-d15KS6WIdb5TzAEQiNM7KxB5TYb7cgiRk/767t83xYicHpHoqekPHXLWOc6gyh/FDF77dj4oR1/qg2tnPRfM1g==", 36 | "path": "microsoft.netcore.platforms/1.1.0", 37 | "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" 38 | }, 39 | "NETStandard.Library/2.0.3": { 40 | "type": "package", 41 | "serviceable": true, 42 | "sha512": "sha512-AiP+S1AUSbiuLtSiYV5eYiB48wu8Eo/bnMrFh0tdTWzWsmDc6KsNgsTuXMJLpjYWD8ocWvsKJmX1K/r6jbH4lQ==", 43 | "path": "netstandard.library/2.0.3", 44 | "hashPath": "netstandard.library.2.0.3.nupkg.sha512" 45 | } 46 | } 47 | } -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard2.0/Unity.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netstandard2.0/Unity.Abstractions.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard2.0/Unity.Abstractions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netstandard2.0/Unity.Abstractions.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard2.0/Unity.Configuration.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETStandard,Version=v2.0/", 4 | "signature": "5fae7356943ebaf5365df8cebc65cfdc9a6fa389" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETStandard,Version=v2.0": {}, 9 | ".NETStandard,Version=v2.0/": { 10 | "Unity.Configuration/5.2.5": { 11 | "dependencies": { 12 | "NETStandard.Library": "2.0.3", 13 | "System.Configuration.ConfigurationManager": "4.4.1", 14 | "Unity.Abstractions": "3.3.1" 15 | }, 16 | "runtime": { 17 | "Unity.Configuration.dll": {} 18 | } 19 | }, 20 | "Microsoft.NETCore.Platforms/1.1.0": {}, 21 | "NETStandard.Library/2.0.3": { 22 | "dependencies": { 23 | "Microsoft.NETCore.Platforms": "1.1.0" 24 | } 25 | }, 26 | "System.Configuration.ConfigurationManager/4.4.1": { 27 | "dependencies": { 28 | "System.Security.Cryptography.ProtectedData": "4.4.0" 29 | }, 30 | "runtime": { 31 | "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { 32 | "assemblyVersion": "4.0.0.0", 33 | "fileVersion": "4.6.25921.2" 34 | } 35 | } 36 | }, 37 | "System.Security.Cryptography.ProtectedData/4.4.0": { 38 | "runtime": { 39 | "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { 40 | "assemblyVersion": "4.0.2.0", 41 | "fileVersion": "4.6.25519.3" 42 | } 43 | } 44 | }, 45 | "Unity.Abstractions/3.3.1": { 46 | "runtime": { 47 | "Unity.Abstractions.dll": {} 48 | } 49 | } 50 | } 51 | }, 52 | "libraries": { 53 | "Unity.Configuration/5.2.5": { 54 | "type": "project", 55 | "serviceable": false, 56 | "sha512": "" 57 | }, 58 | "Microsoft.NETCore.Platforms/1.1.0": { 59 | "type": "package", 60 | "serviceable": true, 61 | "sha512": "sha512-d15KS6WIdb5TzAEQiNM7KxB5TYb7cgiRk/767t83xYicHpHoqekPHXLWOc6gyh/FDF77dj4oR1/qg2tnPRfM1g==", 62 | "path": "microsoft.netcore.platforms/1.1.0", 63 | "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" 64 | }, 65 | "NETStandard.Library/2.0.3": { 66 | "type": "package", 67 | "serviceable": true, 68 | "sha512": "sha512-AiP+S1AUSbiuLtSiYV5eYiB48wu8Eo/bnMrFh0tdTWzWsmDc6KsNgsTuXMJLpjYWD8ocWvsKJmX1K/r6jbH4lQ==", 69 | "path": "netstandard.library/2.0.3", 70 | "hashPath": "netstandard.library.2.0.3.nupkg.sha512" 71 | }, 72 | "System.Configuration.ConfigurationManager/4.4.1": { 73 | "type": "package", 74 | "serviceable": true, 75 | "sha512": "sha512-LoSjM/kLDpyLyoGsmwS5oVMRzHf/0XHkRpr3QZu/HuAv6Sfk919usTMLqD9N9VK3S4Q2+bd3tKJ0ko4MYFfq4Q==", 76 | "path": "system.configuration.configurationmanager/4.4.1", 77 | "hashPath": "system.configuration.configurationmanager.4.4.1.nupkg.sha512" 78 | }, 79 | "System.Security.Cryptography.ProtectedData/4.4.0": { 80 | "type": "package", 81 | "serviceable": true, 82 | "sha512": "sha512-WwEexvBd+17yfY7fcS+fBGl+HADEfCJuKeDJqBT7D6j6vKwYvfLyGuq2y/MmrKORC6mbYwth7kjinO1mPhTL3g==", 83 | "path": "system.security.cryptography.protecteddata/4.4.0", 84 | "hashPath": "system.security.cryptography.protecteddata.4.4.0.nupkg.sha512" 85 | }, 86 | "Unity.Abstractions/3.3.1": { 87 | "type": "project", 88 | "serviceable": false, 89 | "sha512": "" 90 | } 91 | } 92 | } -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard2.0/Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netstandard2.0/Unity.Configuration.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard2.0/Unity.Configuration.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netstandard2.0/Unity.Configuration.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard2.0/Unity.Container.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETStandard,Version=v2.0/", 4 | "signature": "cfe1dc2a80602aef150a12815387068463a61a0d" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETStandard,Version=v2.0": {}, 9 | ".NETStandard,Version=v2.0/": { 10 | "Unity.Container/5.8.13": { 11 | "dependencies": { 12 | "NETStandard.Library": "2.0.3", 13 | "Unity.Abstractions": "3.3.1" 14 | }, 15 | "runtime": { 16 | "Unity.Container.dll": {} 17 | } 18 | }, 19 | "Microsoft.NETCore.Platforms/1.1.0": {}, 20 | "NETStandard.Library/2.0.3": { 21 | "dependencies": { 22 | "Microsoft.NETCore.Platforms": "1.1.0" 23 | } 24 | }, 25 | "Unity.Abstractions/3.3.1": { 26 | "runtime": { 27 | "Unity.Abstractions.dll": {} 28 | } 29 | } 30 | } 31 | }, 32 | "libraries": { 33 | "Unity.Container/5.8.13": { 34 | "type": "project", 35 | "serviceable": false, 36 | "sha512": "" 37 | }, 38 | "Microsoft.NETCore.Platforms/1.1.0": { 39 | "type": "package", 40 | "serviceable": true, 41 | "sha512": "sha512-d15KS6WIdb5TzAEQiNM7KxB5TYb7cgiRk/767t83xYicHpHoqekPHXLWOc6gyh/FDF77dj4oR1/qg2tnPRfM1g==", 42 | "path": "microsoft.netcore.platforms/1.1.0", 43 | "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" 44 | }, 45 | "NETStandard.Library/2.0.3": { 46 | "type": "package", 47 | "serviceable": true, 48 | "sha512": "sha512-AiP+S1AUSbiuLtSiYV5eYiB48wu8Eo/bnMrFh0tdTWzWsmDc6KsNgsTuXMJLpjYWD8ocWvsKJmX1K/r6jbH4lQ==", 49 | "path": "netstandard.library/2.0.3", 50 | "hashPath": "netstandard.library.2.0.3.nupkg.sha512" 51 | }, 52 | "Unity.Abstractions/3.3.1": { 53 | "type": "project", 54 | "serviceable": false, 55 | "sha512": "" 56 | } 57 | } 58 | } -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard2.0/Unity.Container.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netstandard2.0/Unity.Container.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard2.0/Unity.Container.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netstandard2.0/Unity.Container.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard2.0/Unity.Interception.Configuration.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETStandard,Version=v2.0/", 4 | "signature": "10f8e7a5d66e5a69f9f8b6b08ff0e462c677ea14" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETStandard,Version=v2.0": {}, 9 | ".NETStandard,Version=v2.0/": { 10 | "Unity.Interception.Configuration/5.1.7": { 11 | "dependencies": { 12 | "NETStandard.Library": "2.0.3", 13 | "Unity.Abstractions": "3.3.1", 14 | "Unity.Configuration": "5.2.5", 15 | "Unity.Interception": "5.5.5" 16 | }, 17 | "runtime": { 18 | "Unity.Interception.Configuration.dll": {} 19 | } 20 | }, 21 | "Microsoft.NETCore.Platforms/1.1.0": {}, 22 | "Microsoft.NETCore.Targets/1.1.0": {}, 23 | "NETStandard.Library/2.0.3": { 24 | "dependencies": { 25 | "Microsoft.NETCore.Platforms": "1.1.0" 26 | } 27 | }, 28 | "System.Configuration.ConfigurationManager/4.4.1": { 29 | "dependencies": { 30 | "System.Security.Cryptography.ProtectedData": "4.4.0" 31 | }, 32 | "runtime": { 33 | "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { 34 | "assemblyVersion": "4.0.0.0", 35 | "fileVersion": "4.6.25921.2" 36 | } 37 | } 38 | }, 39 | "System.IO/4.3.0": { 40 | "dependencies": { 41 | "Microsoft.NETCore.Platforms": "1.1.0", 42 | "Microsoft.NETCore.Targets": "1.1.0", 43 | "System.Runtime": "4.3.0", 44 | "System.Text.Encoding": "4.3.0", 45 | "System.Threading.Tasks": "4.3.0" 46 | } 47 | }, 48 | "System.Reflection/4.3.0": { 49 | "dependencies": { 50 | "Microsoft.NETCore.Platforms": "1.1.0", 51 | "Microsoft.NETCore.Targets": "1.1.0", 52 | "System.IO": "4.3.0", 53 | "System.Reflection.Primitives": "4.3.0", 54 | "System.Runtime": "4.3.0" 55 | } 56 | }, 57 | "System.Reflection.Emit/4.3.0": { 58 | "dependencies": { 59 | "System.IO": "4.3.0", 60 | "System.Reflection": "4.3.0", 61 | "System.Reflection.Emit.ILGeneration": "4.3.0", 62 | "System.Reflection.Primitives": "4.3.0", 63 | "System.Runtime": "4.3.0" 64 | }, 65 | "runtime": { 66 | "lib/netstandard1.3/System.Reflection.Emit.dll": { 67 | "assemblyVersion": "4.0.2.0", 68 | "fileVersion": "4.6.24705.1" 69 | } 70 | } 71 | }, 72 | "System.Reflection.Emit.ILGeneration/4.3.0": { 73 | "dependencies": { 74 | "System.Reflection": "4.3.0", 75 | "System.Reflection.Primitives": "4.3.0", 76 | "System.Runtime": "4.3.0" 77 | }, 78 | "runtime": { 79 | "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": { 80 | "assemblyVersion": "4.0.2.0", 81 | "fileVersion": "4.6.24705.1" 82 | } 83 | } 84 | }, 85 | "System.Reflection.Primitives/4.3.0": { 86 | "dependencies": { 87 | "Microsoft.NETCore.Platforms": "1.1.0", 88 | "Microsoft.NETCore.Targets": "1.1.0", 89 | "System.Runtime": "4.3.0" 90 | } 91 | }, 92 | "System.Runtime/4.3.0": { 93 | "dependencies": { 94 | "Microsoft.NETCore.Platforms": "1.1.0", 95 | "Microsoft.NETCore.Targets": "1.1.0" 96 | } 97 | }, 98 | "System.Security.Cryptography.ProtectedData/4.4.0": { 99 | "runtime": { 100 | "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { 101 | "assemblyVersion": "4.0.2.0", 102 | "fileVersion": "4.6.25519.3" 103 | } 104 | } 105 | }, 106 | "System.Text.Encoding/4.3.0": { 107 | "dependencies": { 108 | "Microsoft.NETCore.Platforms": "1.1.0", 109 | "Microsoft.NETCore.Targets": "1.1.0", 110 | "System.Runtime": "4.3.0" 111 | } 112 | }, 113 | "System.Threading.Tasks/4.3.0": { 114 | "dependencies": { 115 | "Microsoft.NETCore.Platforms": "1.1.0", 116 | "Microsoft.NETCore.Targets": "1.1.0", 117 | "System.Runtime": "4.3.0" 118 | } 119 | }, 120 | "Unity.Abstractions/3.3.1": { 121 | "runtime": { 122 | "Unity.Abstractions.dll": {} 123 | } 124 | }, 125 | "Unity.Configuration/5.2.5": { 126 | "dependencies": { 127 | "System.Configuration.ConfigurationManager": "4.4.1", 128 | "Unity.Abstractions": "3.3.1" 129 | }, 130 | "runtime": { 131 | "Unity.Configuration.dll": {} 132 | } 133 | }, 134 | "Unity.Interception/5.5.5": { 135 | "dependencies": { 136 | "System.Reflection.Emit": "4.3.0", 137 | "Unity.Abstractions": "3.3.1" 138 | }, 139 | "runtime": { 140 | "Unity.Interception.dll": {} 141 | } 142 | } 143 | } 144 | }, 145 | "libraries": { 146 | "Unity.Interception.Configuration/5.1.7": { 147 | "type": "project", 148 | "serviceable": false, 149 | "sha512": "" 150 | }, 151 | "Microsoft.NETCore.Platforms/1.1.0": { 152 | "type": "package", 153 | "serviceable": true, 154 | "sha512": "sha512-d15KS6WIdb5TzAEQiNM7KxB5TYb7cgiRk/767t83xYicHpHoqekPHXLWOc6gyh/FDF77dj4oR1/qg2tnPRfM1g==", 155 | "path": "microsoft.netcore.platforms/1.1.0", 156 | "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" 157 | }, 158 | "Microsoft.NETCore.Targets/1.1.0": { 159 | "type": "package", 160 | "serviceable": true, 161 | "sha512": "sha512-ytLLWSzd1X4/wJDCh3AVJCpyMjlt1gM5oHvIb7MvVGzNgSflpyccYmuisFGU5Uc79JahYmVYwgGhc5ZBypTBDA==", 162 | "path": "microsoft.netcore.targets/1.1.0", 163 | "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" 164 | }, 165 | "NETStandard.Library/2.0.3": { 166 | "type": "package", 167 | "serviceable": true, 168 | "sha512": "sha512-AiP+S1AUSbiuLtSiYV5eYiB48wu8Eo/bnMrFh0tdTWzWsmDc6KsNgsTuXMJLpjYWD8ocWvsKJmX1K/r6jbH4lQ==", 169 | "path": "netstandard.library/2.0.3", 170 | "hashPath": "netstandard.library.2.0.3.nupkg.sha512" 171 | }, 172 | "System.Configuration.ConfigurationManager/4.4.1": { 173 | "type": "package", 174 | "serviceable": true, 175 | "sha512": "sha512-LoSjM/kLDpyLyoGsmwS5oVMRzHf/0XHkRpr3QZu/HuAv6Sfk919usTMLqD9N9VK3S4Q2+bd3tKJ0ko4MYFfq4Q==", 176 | "path": "system.configuration.configurationmanager/4.4.1", 177 | "hashPath": "system.configuration.configurationmanager.4.4.1.nupkg.sha512" 178 | }, 179 | "System.IO/4.3.0": { 180 | "type": "package", 181 | "serviceable": true, 182 | "sha512": "sha512-L5YORr8xPIUjmF7mvHMtxTePiHKxsTUckAACjt7fzhHYJPih4WaJwptI9ZyInkdRaOCVjVCoIogsLSR2uWkwsw==", 183 | "path": "system.io/4.3.0", 184 | "hashPath": "system.io.4.3.0.nupkg.sha512" 185 | }, 186 | "System.Reflection/4.3.0": { 187 | "type": "package", 188 | "serviceable": true, 189 | "sha512": "sha512-qT7GlIYUEz3NmWBtF06oUbjQMrbtDcw4hCjhKDz3wjHbHMuVvkBKZztn64sJ1AwgtmWLmD7Bn7QHTLooiaXSPw==", 190 | "path": "system.reflection/4.3.0", 191 | "hashPath": "system.reflection.4.3.0.nupkg.sha512" 192 | }, 193 | "System.Reflection.Emit/4.3.0": { 194 | "type": "package", 195 | "serviceable": true, 196 | "sha512": "sha512-rbk1mShyEO0tWEBacr2yVM/ur5NCaii6IhYEaslZwF7f7JO2BZ+lVX6Mo8klzy7fT2T5eishZrv3F4Lvw5AzWg==", 197 | "path": "system.reflection.emit/4.3.0", 198 | "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" 199 | }, 200 | "System.Reflection.Emit.ILGeneration/4.3.0": { 201 | "type": "package", 202 | "serviceable": true, 203 | "sha512": "sha512-6G4nJb+/mmQSngUQGK/4xlVWYKgAyQPiMP9QAEG/ZKCY41FNcFixPC719nEe4pCvU4fTigTyUQpR1KSIbReYHw==", 204 | "path": "system.reflection.emit.ilgeneration/4.3.0", 205 | "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" 206 | }, 207 | "System.Reflection.Primitives/4.3.0": { 208 | "type": "package", 209 | "serviceable": true, 210 | "sha512": "sha512-ix3iL33E9DdpLwJa087WQTvan+QuEfwHQZqf+2hjb58Gn4Vi/qVaOCo7tNnb5+l8szXKywSSM0//ucUIyF870g==", 211 | "path": "system.reflection.primitives/4.3.0", 212 | "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" 213 | }, 214 | "System.Runtime/4.3.0": { 215 | "type": "package", 216 | "serviceable": true, 217 | "sha512": "sha512-KijrInhiP+YGs4ZKcT1sGdgrftjfH4gZrBRKJfKsTvvqFclaA6hGeWzXLU2XJ2nNy3P7htJ4g9UDE+KjLANTCQ==", 218 | "path": "system.runtime/4.3.0", 219 | "hashPath": "system.runtime.4.3.0.nupkg.sha512" 220 | }, 221 | "System.Security.Cryptography.ProtectedData/4.4.0": { 222 | "type": "package", 223 | "serviceable": true, 224 | "sha512": "sha512-WwEexvBd+17yfY7fcS+fBGl+HADEfCJuKeDJqBT7D6j6vKwYvfLyGuq2y/MmrKORC6mbYwth7kjinO1mPhTL3g==", 225 | "path": "system.security.cryptography.protecteddata/4.4.0", 226 | "hashPath": "system.security.cryptography.protecteddata.4.4.0.nupkg.sha512" 227 | }, 228 | "System.Text.Encoding/4.3.0": { 229 | "type": "package", 230 | "serviceable": true, 231 | "sha512": "sha512-SzIbqxzENo10YtPeMhvqI0dfCqE4Q+Fud7YF7jEP4MuZ3Nza9w+QGOFQJ+hyg7WIDtRKsN0cnkodSW5//6kqVw==", 232 | "path": "system.text.encoding/4.3.0", 233 | "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" 234 | }, 235 | "System.Threading.Tasks/4.3.0": { 236 | "type": "package", 237 | "serviceable": true, 238 | "sha512": "sha512-9Mdk6qutu+3TRSWxzJaC9Sdm3BNYX34FJ2g2Oct/be/BT46JMGexURivTZbkQxL48W4RxvTtG0CZHMRnmbi+Dg==", 239 | "path": "system.threading.tasks/4.3.0", 240 | "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" 241 | }, 242 | "Unity.Abstractions/3.3.1": { 243 | "type": "project", 244 | "serviceable": false, 245 | "sha512": "" 246 | }, 247 | "Unity.Configuration/5.2.5": { 248 | "type": "project", 249 | "serviceable": false, 250 | "sha512": "" 251 | }, 252 | "Unity.Interception/5.5.5": { 253 | "type": "project", 254 | "serviceable": false, 255 | "sha512": "" 256 | } 257 | } 258 | } -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard2.0/Unity.Interception.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netstandard2.0/Unity.Interception.Configuration.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard2.0/Unity.Interception.Configuration.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netstandard2.0/Unity.Interception.Configuration.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard2.0/Unity.Interception.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETStandard,Version=v2.0/", 4 | "signature": "12eb4cbf9d7159a0bea0e00c8297cf4404420a17" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETStandard,Version=v2.0": {}, 9 | ".NETStandard,Version=v2.0/": { 10 | "Unity.Interception/5.5.5": { 11 | "dependencies": { 12 | "NETStandard.Library": "2.0.3", 13 | "System.Reflection.Emit": "4.3.0", 14 | "Unity.Abstractions": "3.3.1" 15 | }, 16 | "runtime": { 17 | "Unity.Interception.dll": {} 18 | } 19 | }, 20 | "Microsoft.NETCore.Platforms/1.1.0": {}, 21 | "Microsoft.NETCore.Targets/1.1.0": {}, 22 | "NETStandard.Library/2.0.3": { 23 | "dependencies": { 24 | "Microsoft.NETCore.Platforms": "1.1.0" 25 | } 26 | }, 27 | "System.IO/4.3.0": { 28 | "dependencies": { 29 | "Microsoft.NETCore.Platforms": "1.1.0", 30 | "Microsoft.NETCore.Targets": "1.1.0", 31 | "System.Runtime": "4.3.0", 32 | "System.Text.Encoding": "4.3.0", 33 | "System.Threading.Tasks": "4.3.0" 34 | } 35 | }, 36 | "System.Reflection/4.3.0": { 37 | "dependencies": { 38 | "Microsoft.NETCore.Platforms": "1.1.0", 39 | "Microsoft.NETCore.Targets": "1.1.0", 40 | "System.IO": "4.3.0", 41 | "System.Reflection.Primitives": "4.3.0", 42 | "System.Runtime": "4.3.0" 43 | } 44 | }, 45 | "System.Reflection.Emit/4.3.0": { 46 | "dependencies": { 47 | "System.IO": "4.3.0", 48 | "System.Reflection": "4.3.0", 49 | "System.Reflection.Emit.ILGeneration": "4.3.0", 50 | "System.Reflection.Primitives": "4.3.0", 51 | "System.Runtime": "4.3.0" 52 | }, 53 | "runtime": { 54 | "lib/netstandard1.3/System.Reflection.Emit.dll": { 55 | "assemblyVersion": "4.0.2.0", 56 | "fileVersion": "4.6.24705.1" 57 | } 58 | } 59 | }, 60 | "System.Reflection.Emit.ILGeneration/4.3.0": { 61 | "dependencies": { 62 | "System.Reflection": "4.3.0", 63 | "System.Reflection.Primitives": "4.3.0", 64 | "System.Runtime": "4.3.0" 65 | }, 66 | "runtime": { 67 | "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": { 68 | "assemblyVersion": "4.0.2.0", 69 | "fileVersion": "4.6.24705.1" 70 | } 71 | } 72 | }, 73 | "System.Reflection.Primitives/4.3.0": { 74 | "dependencies": { 75 | "Microsoft.NETCore.Platforms": "1.1.0", 76 | "Microsoft.NETCore.Targets": "1.1.0", 77 | "System.Runtime": "4.3.0" 78 | } 79 | }, 80 | "System.Runtime/4.3.0": { 81 | "dependencies": { 82 | "Microsoft.NETCore.Platforms": "1.1.0", 83 | "Microsoft.NETCore.Targets": "1.1.0" 84 | } 85 | }, 86 | "System.Text.Encoding/4.3.0": { 87 | "dependencies": { 88 | "Microsoft.NETCore.Platforms": "1.1.0", 89 | "Microsoft.NETCore.Targets": "1.1.0", 90 | "System.Runtime": "4.3.0" 91 | } 92 | }, 93 | "System.Threading.Tasks/4.3.0": { 94 | "dependencies": { 95 | "Microsoft.NETCore.Platforms": "1.1.0", 96 | "Microsoft.NETCore.Targets": "1.1.0", 97 | "System.Runtime": "4.3.0" 98 | } 99 | }, 100 | "Unity.Abstractions/3.3.1": { 101 | "runtime": { 102 | "Unity.Abstractions.dll": {} 103 | } 104 | } 105 | } 106 | }, 107 | "libraries": { 108 | "Unity.Interception/5.5.5": { 109 | "type": "project", 110 | "serviceable": false, 111 | "sha512": "" 112 | }, 113 | "Microsoft.NETCore.Platforms/1.1.0": { 114 | "type": "package", 115 | "serviceable": true, 116 | "sha512": "sha512-d15KS6WIdb5TzAEQiNM7KxB5TYb7cgiRk/767t83xYicHpHoqekPHXLWOc6gyh/FDF77dj4oR1/qg2tnPRfM1g==", 117 | "path": "microsoft.netcore.platforms/1.1.0", 118 | "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" 119 | }, 120 | "Microsoft.NETCore.Targets/1.1.0": { 121 | "type": "package", 122 | "serviceable": true, 123 | "sha512": "sha512-ytLLWSzd1X4/wJDCh3AVJCpyMjlt1gM5oHvIb7MvVGzNgSflpyccYmuisFGU5Uc79JahYmVYwgGhc5ZBypTBDA==", 124 | "path": "microsoft.netcore.targets/1.1.0", 125 | "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" 126 | }, 127 | "NETStandard.Library/2.0.3": { 128 | "type": "package", 129 | "serviceable": true, 130 | "sha512": "sha512-AiP+S1AUSbiuLtSiYV5eYiB48wu8Eo/bnMrFh0tdTWzWsmDc6KsNgsTuXMJLpjYWD8ocWvsKJmX1K/r6jbH4lQ==", 131 | "path": "netstandard.library/2.0.3", 132 | "hashPath": "netstandard.library.2.0.3.nupkg.sha512" 133 | }, 134 | "System.IO/4.3.0": { 135 | "type": "package", 136 | "serviceable": true, 137 | "sha512": "sha512-L5YORr8xPIUjmF7mvHMtxTePiHKxsTUckAACjt7fzhHYJPih4WaJwptI9ZyInkdRaOCVjVCoIogsLSR2uWkwsw==", 138 | "path": "system.io/4.3.0", 139 | "hashPath": "system.io.4.3.0.nupkg.sha512" 140 | }, 141 | "System.Reflection/4.3.0": { 142 | "type": "package", 143 | "serviceable": true, 144 | "sha512": "sha512-qT7GlIYUEz3NmWBtF06oUbjQMrbtDcw4hCjhKDz3wjHbHMuVvkBKZztn64sJ1AwgtmWLmD7Bn7QHTLooiaXSPw==", 145 | "path": "system.reflection/4.3.0", 146 | "hashPath": "system.reflection.4.3.0.nupkg.sha512" 147 | }, 148 | "System.Reflection.Emit/4.3.0": { 149 | "type": "package", 150 | "serviceable": true, 151 | "sha512": "sha512-rbk1mShyEO0tWEBacr2yVM/ur5NCaii6IhYEaslZwF7f7JO2BZ+lVX6Mo8klzy7fT2T5eishZrv3F4Lvw5AzWg==", 152 | "path": "system.reflection.emit/4.3.0", 153 | "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" 154 | }, 155 | "System.Reflection.Emit.ILGeneration/4.3.0": { 156 | "type": "package", 157 | "serviceable": true, 158 | "sha512": "sha512-6G4nJb+/mmQSngUQGK/4xlVWYKgAyQPiMP9QAEG/ZKCY41FNcFixPC719nEe4pCvU4fTigTyUQpR1KSIbReYHw==", 159 | "path": "system.reflection.emit.ilgeneration/4.3.0", 160 | "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" 161 | }, 162 | "System.Reflection.Primitives/4.3.0": { 163 | "type": "package", 164 | "serviceable": true, 165 | "sha512": "sha512-ix3iL33E9DdpLwJa087WQTvan+QuEfwHQZqf+2hjb58Gn4Vi/qVaOCo7tNnb5+l8szXKywSSM0//ucUIyF870g==", 166 | "path": "system.reflection.primitives/4.3.0", 167 | "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" 168 | }, 169 | "System.Runtime/4.3.0": { 170 | "type": "package", 171 | "serviceable": true, 172 | "sha512": "sha512-KijrInhiP+YGs4ZKcT1sGdgrftjfH4gZrBRKJfKsTvvqFclaA6hGeWzXLU2XJ2nNy3P7htJ4g9UDE+KjLANTCQ==", 173 | "path": "system.runtime/4.3.0", 174 | "hashPath": "system.runtime.4.3.0.nupkg.sha512" 175 | }, 176 | "System.Text.Encoding/4.3.0": { 177 | "type": "package", 178 | "serviceable": true, 179 | "sha512": "sha512-SzIbqxzENo10YtPeMhvqI0dfCqE4Q+Fud7YF7jEP4MuZ3Nza9w+QGOFQJ+hyg7WIDtRKsN0cnkodSW5//6kqVw==", 180 | "path": "system.text.encoding/4.3.0", 181 | "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" 182 | }, 183 | "System.Threading.Tasks/4.3.0": { 184 | "type": "package", 185 | "serviceable": true, 186 | "sha512": "sha512-9Mdk6qutu+3TRSWxzJaC9Sdm3BNYX34FJ2g2Oct/be/BT46JMGexURivTZbkQxL48W4RxvTtG0CZHMRnmbi+Dg==", 187 | "path": "system.threading.tasks/4.3.0", 188 | "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" 189 | }, 190 | "Unity.Abstractions/3.3.1": { 191 | "type": "project", 192 | "serviceable": false, 193 | "sha512": "" 194 | } 195 | } 196 | } -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard2.0/Unity.Interception.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netstandard2.0/Unity.Interception.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard2.0/Unity.Interception.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netstandard2.0/Unity.Interception.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard2.0/Unity.RegistrationByConvention.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETStandard,Version=v2.0/", 4 | "signature": "cfe1dc2a80602aef150a12815387068463a61a0d" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETStandard,Version=v2.0": {}, 9 | ".NETStandard,Version=v2.0/": { 10 | "Unity.RegistrationByConvention/2.1.9": { 11 | "dependencies": { 12 | "NETStandard.Library": "2.0.3", 13 | "Unity.Abstractions": "3.3.1" 14 | }, 15 | "runtime": { 16 | "Unity.RegistrationByConvention.dll": {} 17 | } 18 | }, 19 | "Microsoft.NETCore.Platforms/1.1.0": {}, 20 | "NETStandard.Library/2.0.3": { 21 | "dependencies": { 22 | "Microsoft.NETCore.Platforms": "1.1.0" 23 | } 24 | }, 25 | "Unity.Abstractions/3.3.1": { 26 | "runtime": { 27 | "Unity.Abstractions.dll": {} 28 | } 29 | } 30 | } 31 | }, 32 | "libraries": { 33 | "Unity.RegistrationByConvention/2.1.9": { 34 | "type": "project", 35 | "serviceable": false, 36 | "sha512": "" 37 | }, 38 | "Microsoft.NETCore.Platforms/1.1.0": { 39 | "type": "package", 40 | "serviceable": true, 41 | "sha512": "sha512-d15KS6WIdb5TzAEQiNM7KxB5TYb7cgiRk/767t83xYicHpHoqekPHXLWOc6gyh/FDF77dj4oR1/qg2tnPRfM1g==", 42 | "path": "microsoft.netcore.platforms/1.1.0", 43 | "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" 44 | }, 45 | "NETStandard.Library/2.0.3": { 46 | "type": "package", 47 | "serviceable": true, 48 | "sha512": "sha512-AiP+S1AUSbiuLtSiYV5eYiB48wu8Eo/bnMrFh0tdTWzWsmDc6KsNgsTuXMJLpjYWD8ocWvsKJmX1K/r6jbH4lQ==", 49 | "path": "netstandard.library/2.0.3", 50 | "hashPath": "netstandard.library.2.0.3.nupkg.sha512" 51 | }, 52 | "Unity.Abstractions/3.3.1": { 53 | "type": "project", 54 | "serviceable": false, 55 | "sha512": "" 56 | } 57 | } 58 | } -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard2.0/Unity.RegistrationByConvention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netstandard2.0/Unity.RegistrationByConvention.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard2.0/Unity.RegistrationByConvention.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netstandard2.0/Unity.RegistrationByConvention.pdb -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard2.0/Unity.ServiceLocation.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETStandard,Version=v2.0/", 4 | "signature": "cfe1dc2a80602aef150a12815387068463a61a0d" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETStandard,Version=v2.0": {}, 9 | ".NETStandard,Version=v2.0/": { 10 | "Unity.ServiceLocation/2.1.2": { 11 | "dependencies": { 12 | "CommonServiceLocator": "2.0.4", 13 | "NETStandard.Library": "2.0.3", 14 | "Unity.Abstractions": "3.3.1" 15 | }, 16 | "runtime": { 17 | "Unity.ServiceLocation.dll": {} 18 | } 19 | }, 20 | "Microsoft.NETCore.Platforms/1.1.0": {}, 21 | "NETStandard.Library/2.0.3": { 22 | "dependencies": { 23 | "Microsoft.NETCore.Platforms": "1.1.0" 24 | } 25 | }, 26 | "CommonServiceLocator/2.0.4": { 27 | "runtime": { 28 | "CommonServiceLocator.dll": {} 29 | } 30 | }, 31 | "Unity.Abstractions/3.3.1": { 32 | "runtime": { 33 | "Unity.Abstractions.dll": {} 34 | } 35 | } 36 | } 37 | }, 38 | "libraries": { 39 | "Unity.ServiceLocation/2.1.2": { 40 | "type": "project", 41 | "serviceable": false, 42 | "sha512": "" 43 | }, 44 | "Microsoft.NETCore.Platforms/1.1.0": { 45 | "type": "package", 46 | "serviceable": true, 47 | "sha512": "sha512-d15KS6WIdb5TzAEQiNM7KxB5TYb7cgiRk/767t83xYicHpHoqekPHXLWOc6gyh/FDF77dj4oR1/qg2tnPRfM1g==", 48 | "path": "microsoft.netcore.platforms/1.1.0", 49 | "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" 50 | }, 51 | "NETStandard.Library/2.0.3": { 52 | "type": "package", 53 | "serviceable": true, 54 | "sha512": "sha512-AiP+S1AUSbiuLtSiYV5eYiB48wu8Eo/bnMrFh0tdTWzWsmDc6KsNgsTuXMJLpjYWD8ocWvsKJmX1K/r6jbH4lQ==", 55 | "path": "netstandard.library/2.0.3", 56 | "hashPath": "netstandard.library.2.0.3.nupkg.sha512" 57 | }, 58 | "CommonServiceLocator/2.0.4": { 59 | "type": "project", 60 | "serviceable": false, 61 | "sha512": "" 62 | }, 63 | "Unity.Abstractions/3.3.1": { 64 | "type": "project", 65 | "serviceable": false, 66 | "sha512": "" 67 | } 68 | } 69 | } -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard2.0/Unity.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netstandard2.0/Unity.ServiceLocation.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.13/lib/netstandard2.0/Unity.ServiceLocation.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.5.8.13/lib/netstandard2.0/Unity.ServiceLocation.pdb -------------------------------------------------------------------------------- /packages/Unity.Abstractions.3.3.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.Abstractions.3.3.1/.signature.p7s -------------------------------------------------------------------------------- /packages/Unity.Abstractions.3.3.1/Unity.Abstractions.3.3.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.Abstractions.3.3.1/Unity.Abstractions.3.3.1.nupkg -------------------------------------------------------------------------------- /packages/Unity.Abstractions.3.3.1/lib/net40/Unity.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.Abstractions.3.3.1/lib/net40/Unity.Abstractions.dll -------------------------------------------------------------------------------- /packages/Unity.Abstractions.3.3.1/lib/net45/Unity.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.Abstractions.3.3.1/lib/net45/Unity.Abstractions.dll -------------------------------------------------------------------------------- /packages/Unity.Abstractions.3.3.1/lib/net46/Unity.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.Abstractions.3.3.1/lib/net46/Unity.Abstractions.dll -------------------------------------------------------------------------------- /packages/Unity.Abstractions.3.3.1/lib/net47/Unity.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.Abstractions.3.3.1/lib/net47/Unity.Abstractions.dll -------------------------------------------------------------------------------- /packages/Unity.Abstractions.3.3.1/lib/netcoreapp1.0/Unity.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.Abstractions.3.3.1/lib/netcoreapp1.0/Unity.Abstractions.dll -------------------------------------------------------------------------------- /packages/Unity.Abstractions.3.3.1/lib/netcoreapp2.0/Unity.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.Abstractions.3.3.1/lib/netcoreapp2.0/Unity.Abstractions.dll -------------------------------------------------------------------------------- /packages/Unity.Abstractions.3.3.1/lib/netstandard1.0/Unity.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.Abstractions.3.3.1/lib/netstandard1.0/Unity.Abstractions.dll -------------------------------------------------------------------------------- /packages/Unity.Abstractions.3.3.1/lib/netstandard2.0/Unity.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.Abstractions.3.3.1/lib/netstandard2.0/Unity.Abstractions.dll -------------------------------------------------------------------------------- /packages/Unity.Configuration.5.2.5/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.Configuration.5.2.5/.signature.p7s -------------------------------------------------------------------------------- /packages/Unity.Configuration.5.2.5/Unity.Configuration.5.2.5.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.Configuration.5.2.5/Unity.Configuration.5.2.5.nupkg -------------------------------------------------------------------------------- /packages/Unity.Configuration.5.2.5/lib/net40/Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.Configuration.5.2.5/lib/net40/Unity.Configuration.dll -------------------------------------------------------------------------------- /packages/Unity.Configuration.5.2.5/lib/net45/Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.Configuration.5.2.5/lib/net45/Unity.Configuration.dll -------------------------------------------------------------------------------- /packages/Unity.Configuration.5.2.5/lib/net46/Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.Configuration.5.2.5/lib/net46/Unity.Configuration.dll -------------------------------------------------------------------------------- /packages/Unity.Configuration.5.2.5/lib/net47/Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.Configuration.5.2.5/lib/net47/Unity.Configuration.dll -------------------------------------------------------------------------------- /packages/Unity.Configuration.5.2.5/lib/netcoreapp2.0/Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.Configuration.5.2.5/lib/netcoreapp2.0/Unity.Configuration.dll -------------------------------------------------------------------------------- /packages/Unity.Configuration.5.2.5/lib/netstandard2.0/Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayblevel/IOC-Unity/976259e7ff7c25a6b67749555de7e4137a43f937/packages/Unity.Configuration.5.2.5/lib/netstandard2.0/Unity.Configuration.dll --------------------------------------------------------------------------------