├── .gitignore ├── AssemblyDiscovery ├── Contract │ ├── Contract.csproj │ ├── IProductsDeleter.cs │ ├── IProductsReader.cs │ ├── IProductsWriter.cs │ └── Product.cs ├── MyHost │ ├── Controllers │ │ ├── ProductsController.cs │ │ └── ProductsUsingLoaderController.cs │ ├── MyHost.csproj │ ├── MyHost.csproj.user │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── UseTableStorageAssemblySelector.cs │ └── appsettings.json ├── Plugins │ ├── PluginTester │ │ ├── PluginTester.csproj │ │ ├── Program.cs │ │ └── appsettings.json │ ├── ProductsDeleterPlugin │ │ ├── ProductsDeleterPlugin.csproj │ │ ├── TableStorageProductsDeleter.cs │ │ └── TableStorageProductsDeleterBootstrapper.cs │ ├── ProductsReaderPlugin │ │ ├── ProductsReaderPlugin.csproj │ │ ├── TableStorageProductsReader.cs │ │ └── TableStorageProductsReaderBootstrapper.cs │ ├── ProductsWriterPlugin │ │ ├── ProductsWriterPlugin.csproj │ │ ├── TableStorageProductsWriter.cs │ │ └── TableStorageProductsWriterBootstrapper.cs │ └── TableStorageConnector │ │ ├── EntityAdapter.cs │ │ ├── TableStorageConfig.cs │ │ ├── TableStorageConnector.cs │ │ └── TableStorageConnector.csproj └── build.cake ├── AvaloniaAppWithPlugin ├── .gitignore ├── AppHost │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppHost.csproj │ ├── AppServiceLocator.cs │ ├── Assets │ │ └── avalonia-logo.ico │ ├── AvaloniaServiceCollectionExtensions.cs │ ├── Infrastructure │ │ └── AvaloniaPluginResultConverter.cs │ ├── Program.cs │ ├── ViewLocator.cs │ ├── ViewModelLocator.cs │ ├── ViewModels │ │ └── MainWindowViewModel.cs │ ├── Views │ │ ├── MainWindow.xaml │ │ └── MainWindow.xaml.cs │ └── nuget.config ├── Components │ ├── Assets │ │ ├── bonjour.png │ │ ├── hallo.png │ │ └── hello.png │ ├── BonjourToutLeMondeComponent.cs │ ├── BonjourToutLeMondeComponentView.xaml │ ├── BonjourToutLeMondeComponentView.xaml.cs │ ├── Components.csproj │ ├── HalloWereldComponent.cs │ ├── HalloWereldComponentView.xaml │ ├── HalloWereldComponentView.xaml.cs │ ├── HelloWorldComponent.cs │ ├── HelloWorldComponentView.xaml │ └── HelloWorldComponentView.xaml.cs ├── Contract │ ├── ComponentInput.cs │ ├── Contract.csproj │ └── IAppComponent.cs ├── README.md ├── Shared │ ├── NotifyBase.cs │ ├── RelayCommand.cs │ ├── Shared.csproj │ └── ViewModelBase.cs ├── avalonia-app-plugins.gif ├── avalonia-macOs.gif ├── avalonia-ubuntu.gif └── build.cake ├── AzureFunctionWithPlugin ├── Contract │ ├── Contract.csproj │ └── IHelloPlugin.cs ├── Plugin.Function │ ├── Infrastructure │ │ ├── FunctionPluginLoaderOptions.cs │ │ └── PluginServerOptions.cs │ ├── Plugin.Function.csproj │ ├── PluginFunction.cs │ ├── PluginFunctionStartup.cs │ ├── host.json │ └── local.settings.json ├── PluginServer │ ├── Plugin.Server.csproj │ ├── Plugins │ │ ├── Bonjour.Plugin │ │ │ ├── Bonjour.Plugin.deps.json │ │ │ ├── Bonjour.Plugin.dll │ │ │ ├── Bonjour.Plugin.pdb │ │ │ ├── Contract.dll │ │ │ ├── Contract.pdb │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ │ ├── Prise.Infrastructure.dll │ │ │ ├── Prise.Plugin.dll │ │ │ └── Prise.Plugin.pdb │ │ ├── Hallo.Plugin │ │ │ ├── Contract.dll │ │ │ ├── Contract.pdb │ │ │ ├── Hallo.Plugin.deps.json │ │ │ ├── Hallo.Plugin.dll │ │ │ ├── Hallo.Plugin.pdb │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ │ ├── Prise.Infrastructure.dll │ │ │ ├── Prise.Plugin.dll │ │ │ └── Prise.Plugin.pdb │ │ └── Hello.Plugin │ │ │ ├── Contract.dll │ │ │ ├── Contract.pdb │ │ │ ├── Hello.Plugin.deps.json │ │ │ ├── Hello.Plugin.dll │ │ │ ├── Hello.Plugin.pdb │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ │ ├── Prise.Infrastructure.dll │ │ │ ├── Prise.Plugin.dll │ │ │ └── Prise.Plugin.pdb │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ └── appsettings.json ├── Plugins │ ├── Bonjour.Plugin │ │ ├── Bonjour.Plugin.csproj │ │ └── Bonjour.cs │ ├── Hallo.Plugin │ │ ├── Hallo.Plugin.csproj │ │ └── Hallo.cs │ └── Hello.Plugin │ │ ├── Hello.Plugin.csproj │ │ └── Hello.cs ├── ReadMe.md └── build.cake ├── ComplexPlugin ├── AppHost │ ├── AppHost.csproj │ ├── AppHost.csproj.user │ ├── Controllers │ │ ├── DiscoveryController.cs │ │ ├── EagerCalculationController.cs │ │ ├── LazyCalculationController.cs │ │ ├── MultipleCalculationController.cs │ │ ├── MultipleLazyCalculationController.cs │ │ └── ServiceCalculationController.cs │ ├── Custom │ │ ├── AppHostFrameworkProvider.cs │ │ ├── ContextPluginAssemblyNameProvider.cs │ │ └── ContextPluginPathProvider.cs │ ├── ICommandLineArguments.cs │ ├── Models │ │ ├── CalculationRequestModel.cs │ │ ├── CalculationRequestMultiModel.cs │ │ └── CalculationResponseModel.cs │ ├── Program.cs │ ├── Program.netcore2.cs │ ├── Program.netcore3.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Services │ │ └── ICalculationService.cs │ ├── Startup.cs │ ├── Startup.netcore2.cs │ ├── Startup.netcore3.cs │ └── appsettings.json ├── Contract │ ├── CalculationContext.cs │ ├── CalculationResult.cs │ ├── ComplexCalculationContext.cs │ ├── ComplexCalculationResult.cs │ ├── Contract.csproj │ └── ICalculationPlugin.cs ├── DomainForPluginC │ ├── DomainForPluginC.csproj │ ├── IDiscount.cs │ └── IDiscountService.cs ├── Plugins │ ├── PluginA │ │ ├── AdditionCalculationPlugin.cs │ │ ├── PluginA.csproj │ │ └── ZAdditionPlusOneCalculationPlugin.cs │ ├── PluginB │ │ ├── PluginB.csproj │ │ └── SubtractionCalculationPlugin.cs │ └── PluginC │ │ ├── Calculations │ │ └── ICanCalculate.cs │ │ ├── DivideOrMultiplyCalculationBootstrapper.cs │ │ ├── DivideOrMultiplyCalculationPlugin.cs │ │ └── PluginC.csproj ├── ReadMe.md ├── Tests │ ├── AppHostWebApplicationFactory.cs │ ├── AppHostWebApplicationFactory.netcore2.cs │ ├── AppHostWebApplicationFactory.netcore3.cs │ ├── DiscoTests.cs │ ├── EagerLoadingTests.cs │ ├── LazyLoadingTests.cs │ ├── LazyServiceCalculationTests.cs │ ├── MultipleLazyTests.cs │ ├── MultipleTests.cs │ ├── PluginTestBase.cs │ ├── SadPathTests.cs │ ├── ServiceCalculationTests.cs │ └── Tests.csproj └── build.cake ├── LICENSE ├── MVCPlugins ├── Contract │ ├── Contract.csproj │ ├── IMVCFeature.cs │ └── MVCFeatureDescriptionAttribute.cs ├── MyHost │ ├── Controllers │ │ └── HomeController.cs │ ├── Models │ │ ├── ErrorViewModel.cs │ │ └── HomeViewModel.cs │ ├── MyHost.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.json │ └── wwwroot │ │ ├── css │ │ └── site.css │ │ ├── favicon.ico │ │ ├── js │ │ └── site.js │ │ └── lib │ │ ├── bootstrap │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── jquery-validation-unobtrusive │ │ ├── LICENSE.txt │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map ├── MyHost2 │ ├── Controllers │ │ └── ValuesController.cs │ ├── Models │ │ ├── ErrorViewModel.cs │ │ └── HomeViewModel.cs │ ├── MyHost2.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.json │ └── wwwroot │ │ ├── css │ │ └── site.css │ │ ├── favicon.ico │ │ ├── js │ │ └── site.js │ │ └── lib │ │ ├── bootstrap │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── jquery-validation-unobtrusive │ │ ├── LICENSE.txt │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map ├── Plugins │ ├── OrdersAPIControllerPlugin │ │ ├── Models │ │ │ ├── Order.cs │ │ │ └── OrderTableEntity.cs │ │ ├── OrdersAPIController.cs │ │ ├── OrdersAPIControllerBootstrapper.cs │ │ ├── OrdersAPIControllerPlugin.csproj │ │ ├── OrdersAPIFeature.cs │ │ ├── OrdersConfig.cs │ │ └── TableStorageProvider.cs │ ├── ProductsAPIControllerPlugin │ │ ├── Models │ │ │ └── Product.cs │ │ ├── ProductsAPIController.cs │ │ ├── ProductsAPIControllerBootstrapper.cs │ │ ├── ProductsAPIControllerPlugin.csproj │ │ ├── ProductsAPIFeature.cs │ │ └── ProductsDbContext.cs │ ├── TwitterWidgetPlugin │ │ ├── TwitterWidgetController.cs │ │ ├── TwitterWidgetFeature.cs │ │ ├── TwitterWidgetPlugin.csproj │ │ └── Views │ │ │ └── TwitterWidget │ │ │ └── Index.cshtml │ └── WeatherWidgetPlugin │ │ ├── Views │ │ └── WeatherWidget │ │ │ └── Index.cshtml │ │ ├── WeatherWidgetController.cs │ │ ├── WeatherWidgetFeature.cs │ │ └── WeatherWidgetPlugin.csproj ├── asp-net3-mvc-plugins.gif └── build.cake ├── MicroserviceWithPlugins ├── Contract │ ├── Contract.csproj │ ├── IProductsRepository.cs │ └── Product.cs ├── MyHost │ ├── Controllers │ │ ├── ProductsController.cs │ │ └── ProductsUsingLoaderController.cs │ ├── Infrastructure │ │ ├── AppHostFrameworkProvider.cs │ │ ├── HttpClientPluginSelector.cs │ │ ├── ICommandLineArguments.cs │ │ ├── PluginLoadOptionsBuilderExtensions.cs │ │ ├── TenantAwarePluginMiddleware.cs │ │ ├── TenantConfig.cs │ │ ├── TenantPluginAssemblyNameProvider.cs │ │ ├── TenantPluginDependencyPathProvider.cs │ │ ├── TenantPluginNetworkLoadOptions.cs │ │ └── TenantPluginPathProvider.cs │ ├── MyHost.csproj │ ├── MyHost.csproj.user │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ └── appsettings.json ├── MyHost2 │ ├── MyHost2.csproj │ ├── MyHost2.csproj.user │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ └── appsettings.json ├── MyProductsAPI │ ├── Controllers │ │ └── ProductsController.cs │ ├── MyProductsAPI.csproj │ ├── MyProductsAPI.csproj.user │ ├── ProductsRepository.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ └── appsettings.json ├── PluginServer │ ├── Plugin.Server.csproj │ ├── Plugins │ │ ├── CosmosDbPlugin │ │ │ ├── Contract.dll │ │ │ ├── Contract.pdb │ │ │ ├── Cosmos.CRTCompat.dll │ │ │ ├── CosmosDbPlugin.deps.json │ │ │ ├── CosmosDbPlugin.dll │ │ │ ├── CosmosDbPlugin.pdb │ │ │ ├── DnsClient.dll │ │ │ ├── Microsoft.Azure.Cosmos.Client.dll │ │ │ ├── Microsoft.Azure.Cosmos.Core.dll │ │ │ ├── Microsoft.Azure.Cosmos.Direct.dll │ │ │ ├── Microsoft.Azure.Cosmos.Serialization.HybridRow.dll │ │ │ ├── Microsoft.Azure.Cosmos.ServiceInterop.dll │ │ │ ├── Microsoft.Azure.DocumentDB.Core.dll │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Configuration.Binder.dll │ │ │ ├── Microsoft.Extensions.Configuration.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ ├── MongoDB.Bson.dll │ │ │ ├── MongoDB.Driver.Core.dll │ │ │ ├── MongoDB.Driver.dll │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── Prise.Infrastructure.dll │ │ │ ├── Prise.Infrastructure.pdb │ │ │ ├── Prise.Plugin.dll │ │ │ ├── Prise.Plugin.pdb │ │ │ ├── SharpCompress.dll │ │ │ ├── System.Configuration.ConfigurationManager.dll │ │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ │ ├── System.Security.Permissions.dll │ │ │ ├── System.ServiceModel.Primitives.dll │ │ │ ├── System.ServiceModel.dll │ │ │ └── runtimes │ │ │ │ ├── unix │ │ │ │ └── lib │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── System.Private.ServiceModel.dll │ │ │ │ ├── win-x64 │ │ │ │ └── native │ │ │ │ │ ├── Cosmos.CRTCompat.dll │ │ │ │ │ └── Microsoft.Azure.Cosmos.ServiceInterop.dll │ │ │ │ └── win │ │ │ │ ├── lib │ │ │ │ └── netstandard2.0 │ │ │ │ │ ├── System.Private.ServiceModel.dll │ │ │ │ │ └── System.Security.Cryptography.ProtectedData.dll │ │ │ │ └── native │ │ │ │ ├── DocumentDB.Spatial.Sql.dll │ │ │ │ └── Microsoft.Azure.Documents.ServiceInterop.dll │ │ ├── HttpPlugin │ │ │ ├── Contract.dll │ │ │ ├── Contract.pdb │ │ │ ├── HttpPlugin.deps.json │ │ │ ├── HttpPlugin.dll │ │ │ ├── HttpPlugin.pdb │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Configuration.Binder.dll │ │ │ ├── Microsoft.Extensions.Configuration.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ ├── Microsoft.Extensions.Http.dll │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Logging.dll │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── Prise.Plugin.dll │ │ │ ├── Prise.Plugin.pdb │ │ │ └── System.Runtime.CompilerServices.Unsafe.dll │ │ ├── OldSQLPlugin │ │ │ ├── Contract.dll │ │ │ ├── Contract.pdb │ │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ │ ├── Microsoft.Extensions.Caching.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Caching.Memory.dll │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Configuration.Binder.dll │ │ │ ├── Microsoft.Extensions.Configuration.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Logging.dll │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ ├── OldSQLPlugin.deps.json │ │ │ ├── OldSQLPlugin.dll │ │ │ ├── OldSQLPlugin.pdb │ │ │ ├── Prise.Infrastructure.dll │ │ │ ├── Prise.Infrastructure.pdb │ │ │ ├── Remotion.Linq.dll │ │ │ ├── System.Data.SqlClient.dll │ │ │ ├── System.Interactive.Async.dll │ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ │ ├── System.Text.Encoding.CodePages.dll │ │ │ └── runtimes │ │ │ │ ├── unix │ │ │ │ └── lib │ │ │ │ │ └── netcoreapp2.1 │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ ├── win-arm64 │ │ │ │ └── native │ │ │ │ │ └── sni.dll │ │ │ │ ├── win-x64 │ │ │ │ └── native │ │ │ │ │ └── sni.dll │ │ │ │ ├── win-x86 │ │ │ │ └── native │ │ │ │ │ └── sni.dll │ │ │ │ └── win │ │ │ │ └── lib │ │ │ │ ├── netcoreapp2.0 │ │ │ │ └── System.Text.Encoding.CodePages.dll │ │ │ │ └── netcoreapp2.1 │ │ │ │ └── System.Data.SqlClient.dll │ │ ├── SQLPlugin │ │ │ ├── Contract.dll │ │ │ ├── Contract.pdb │ │ │ ├── Microsoft.CSharp.dll │ │ │ ├── Microsoft.Data.SqlClient.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ │ ├── Microsoft.Extensions.Caching.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Caching.Memory.dll │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Configuration.Binder.dll │ │ │ ├── Microsoft.Extensions.Configuration.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Logging.dll │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ ├── Microsoft.Identity.Client.dll │ │ │ ├── Microsoft.Win32.Registry.dll │ │ │ ├── Prise.Infrastructure.dll │ │ │ ├── Prise.Infrastructure.pdb │ │ │ ├── Prise.Plugin.dll │ │ │ ├── Prise.Plugin.pdb │ │ │ ├── SQLPlugin.deps.json │ │ │ ├── SQLPlugin.dll │ │ │ ├── SQLPlugin.pdb │ │ │ ├── System.AppContext.dll │ │ │ ├── System.Buffers.dll │ │ │ ├── System.Collections.Concurrent.dll │ │ │ ├── System.Collections.Immutable.dll │ │ │ ├── System.Collections.NonGeneric.dll │ │ │ ├── System.Collections.Specialized.dll │ │ │ ├── System.ComponentModel.Annotations.dll │ │ │ ├── System.ComponentModel.Primitives.dll │ │ │ ├── System.ComponentModel.TypeConverter.dll │ │ │ ├── System.ComponentModel.dll │ │ │ ├── System.Configuration.ConfigurationManager.dll │ │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ │ ├── System.Dynamic.Runtime.dll │ │ │ ├── System.IO.Compression.ZipFile.dll │ │ │ ├── System.IO.FileSystem.Primitives.dll │ │ │ ├── System.Linq.Expressions.dll │ │ │ ├── System.Linq.dll │ │ │ ├── System.Memory.dll │ │ │ ├── System.Numerics.Vectors.dll │ │ │ ├── System.ObjectModel.dll │ │ │ ├── System.Private.DataContractSerialization.dll │ │ │ ├── System.Reflection.Emit.ILGeneration.dll │ │ │ ├── System.Reflection.Emit.Lightweight.dll │ │ │ ├── System.Reflection.Emit.dll │ │ │ ├── System.Reflection.TypeExtensions.dll │ │ │ ├── System.Runtime.Caching.dll │ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ │ ├── System.Runtime.InteropServices.RuntimeInformation.dll │ │ │ ├── System.Runtime.Numerics.dll │ │ │ ├── System.Runtime.Serialization.Formatters.dll │ │ │ ├── System.Runtime.Serialization.Json.dll │ │ │ ├── System.Runtime.Serialization.Primitives.dll │ │ │ ├── System.Security.AccessControl.dll │ │ │ ├── System.Security.Cryptography.OpenSsl.dll │ │ │ ├── System.Security.Cryptography.Primitives.dll │ │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ │ ├── System.Security.Permissions.dll │ │ │ ├── System.Security.Principal.Windows.dll │ │ │ ├── System.Text.Encoding.CodePages.dll │ │ │ ├── System.Text.RegularExpressions.dll │ │ │ ├── System.Threading.Tasks.Extensions.dll │ │ │ ├── System.Threading.dll │ │ │ ├── System.Xml.ReaderWriter.dll │ │ │ ├── System.Xml.XDocument.dll │ │ │ ├── System.Xml.XmlDocument.dll │ │ │ ├── System.Xml.XmlSerializer.dll │ │ │ ├── refs │ │ │ │ ├── Microsoft.CSharp.dll │ │ │ │ ├── Microsoft.Data.SqlClient.dll │ │ │ │ ├── Microsoft.VisualBasic.Core.dll │ │ │ │ ├── Microsoft.VisualBasic.dll │ │ │ │ ├── Microsoft.Win32.Primitives.dll │ │ │ │ ├── System.AppContext.dll │ │ │ │ ├── System.Buffers.dll │ │ │ │ ├── System.Collections.Concurrent.dll │ │ │ │ ├── System.Collections.Immutable.dll │ │ │ │ ├── System.Collections.NonGeneric.dll │ │ │ │ ├── System.Collections.Specialized.dll │ │ │ │ ├── System.Collections.dll │ │ │ │ ├── System.ComponentModel.Annotations.dll │ │ │ │ ├── System.ComponentModel.Composition.dll │ │ │ │ ├── System.ComponentModel.DataAnnotations.dll │ │ │ │ ├── System.ComponentModel.EventBasedAsync.dll │ │ │ │ ├── System.ComponentModel.Primitives.dll │ │ │ │ ├── System.ComponentModel.TypeConverter.dll │ │ │ │ ├── System.ComponentModel.dll │ │ │ │ ├── System.Configuration.dll │ │ │ │ ├── System.Console.dll │ │ │ │ ├── System.Core.dll │ │ │ │ ├── System.Data.Common.dll │ │ │ │ ├── System.Data.DataSetExtensions.dll │ │ │ │ ├── System.Data.dll │ │ │ │ ├── System.Diagnostics.Contracts.dll │ │ │ │ ├── System.Diagnostics.Debug.dll │ │ │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ │ │ ├── System.Diagnostics.FileVersionInfo.dll │ │ │ │ ├── System.Diagnostics.Process.dll │ │ │ │ ├── System.Diagnostics.StackTrace.dll │ │ │ │ ├── System.Diagnostics.TextWriterTraceListener.dll │ │ │ │ ├── System.Diagnostics.Tools.dll │ │ │ │ ├── System.Diagnostics.TraceSource.dll │ │ │ │ ├── System.Diagnostics.Tracing.dll │ │ │ │ ├── System.Drawing.Primitives.dll │ │ │ │ ├── System.Drawing.dll │ │ │ │ ├── System.Dynamic.Runtime.dll │ │ │ │ ├── System.Globalization.Calendars.dll │ │ │ │ ├── System.Globalization.Extensions.dll │ │ │ │ ├── System.Globalization.dll │ │ │ │ ├── System.IO.Compression.Brotli.dll │ │ │ │ ├── System.IO.Compression.FileSystem.dll │ │ │ │ ├── System.IO.Compression.ZipFile.dll │ │ │ │ ├── System.IO.Compression.dll │ │ │ │ ├── System.IO.FileSystem.DriveInfo.dll │ │ │ │ ├── System.IO.FileSystem.Primitives.dll │ │ │ │ ├── System.IO.FileSystem.Watcher.dll │ │ │ │ ├── System.IO.FileSystem.dll │ │ │ │ ├── System.IO.IsolatedStorage.dll │ │ │ │ ├── System.IO.MemoryMappedFiles.dll │ │ │ │ ├── System.IO.Pipes.dll │ │ │ │ ├── System.IO.UnmanagedMemoryStream.dll │ │ │ │ ├── System.IO.dll │ │ │ │ ├── System.Linq.Expressions.dll │ │ │ │ ├── System.Linq.Parallel.dll │ │ │ │ ├── System.Linq.Queryable.dll │ │ │ │ ├── System.Linq.dll │ │ │ │ ├── System.Memory.dll │ │ │ │ ├── System.Net.Http.dll │ │ │ │ ├── System.Net.HttpListener.dll │ │ │ │ ├── System.Net.Mail.dll │ │ │ │ ├── System.Net.NameResolution.dll │ │ │ │ ├── System.Net.NetworkInformation.dll │ │ │ │ ├── System.Net.Ping.dll │ │ │ │ ├── System.Net.Primitives.dll │ │ │ │ ├── System.Net.Requests.dll │ │ │ │ ├── System.Net.Security.dll │ │ │ │ ├── System.Net.ServicePoint.dll │ │ │ │ ├── System.Net.Sockets.dll │ │ │ │ ├── System.Net.WebClient.dll │ │ │ │ ├── System.Net.WebHeaderCollection.dll │ │ │ │ ├── System.Net.WebProxy.dll │ │ │ │ ├── System.Net.WebSockets.Client.dll │ │ │ │ ├── System.Net.WebSockets.dll │ │ │ │ ├── System.Net.dll │ │ │ │ ├── System.Numerics.Vectors.dll │ │ │ │ ├── System.Numerics.dll │ │ │ │ ├── System.ObjectModel.dll │ │ │ │ ├── System.Reflection.DispatchProxy.dll │ │ │ │ ├── System.Reflection.Emit.ILGeneration.dll │ │ │ │ ├── System.Reflection.Emit.Lightweight.dll │ │ │ │ ├── System.Reflection.Emit.dll │ │ │ │ ├── System.Reflection.Extensions.dll │ │ │ │ ├── System.Reflection.Metadata.dll │ │ │ │ ├── System.Reflection.Primitives.dll │ │ │ │ ├── System.Reflection.TypeExtensions.dll │ │ │ │ ├── System.Reflection.dll │ │ │ │ ├── System.Resources.Reader.dll │ │ │ │ ├── System.Resources.ResourceManager.dll │ │ │ │ ├── System.Resources.Writer.dll │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ │ │ ├── System.Runtime.CompilerServices.VisualC.dll │ │ │ │ ├── System.Runtime.Extensions.dll │ │ │ │ ├── System.Runtime.Handles.dll │ │ │ │ ├── System.Runtime.InteropServices.RuntimeInformation.dll │ │ │ │ ├── System.Runtime.InteropServices.WindowsRuntime.dll │ │ │ │ ├── System.Runtime.InteropServices.dll │ │ │ │ ├── System.Runtime.Intrinsics.dll │ │ │ │ ├── System.Runtime.Loader.dll │ │ │ │ ├── System.Runtime.Numerics.dll │ │ │ │ ├── System.Runtime.Serialization.Formatters.dll │ │ │ │ ├── System.Runtime.Serialization.Json.dll │ │ │ │ ├── System.Runtime.Serialization.Primitives.dll │ │ │ │ ├── System.Runtime.Serialization.Xml.dll │ │ │ │ ├── System.Runtime.Serialization.dll │ │ │ │ ├── System.Runtime.dll │ │ │ │ ├── System.Security.Claims.dll │ │ │ │ ├── System.Security.Cryptography.Algorithms.dll │ │ │ │ ├── System.Security.Cryptography.Csp.dll │ │ │ │ ├── System.Security.Cryptography.Encoding.dll │ │ │ │ ├── System.Security.Cryptography.Primitives.dll │ │ │ │ ├── System.Security.Cryptography.X509Certificates.dll │ │ │ │ ├── System.Security.Principal.dll │ │ │ │ ├── System.Security.SecureString.dll │ │ │ │ ├── System.Security.dll │ │ │ │ ├── System.ServiceModel.Web.dll │ │ │ │ ├── System.ServiceProcess.dll │ │ │ │ ├── System.Text.Encoding.CodePages.dll │ │ │ │ ├── System.Text.Encoding.Extensions.dll │ │ │ │ ├── System.Text.Encoding.dll │ │ │ │ ├── System.Text.Encodings.Web.dll │ │ │ │ ├── System.Text.Json.dll │ │ │ │ ├── System.Text.RegularExpressions.dll │ │ │ │ ├── System.Threading.Channels.dll │ │ │ │ ├── System.Threading.Overlapped.dll │ │ │ │ ├── System.Threading.Tasks.Dataflow.dll │ │ │ │ ├── System.Threading.Tasks.Extensions.dll │ │ │ │ ├── System.Threading.Tasks.Parallel.dll │ │ │ │ ├── System.Threading.Tasks.dll │ │ │ │ ├── System.Threading.Thread.dll │ │ │ │ ├── System.Threading.ThreadPool.dll │ │ │ │ ├── System.Threading.Timer.dll │ │ │ │ ├── System.Threading.dll │ │ │ │ ├── System.Transactions.Local.dll │ │ │ │ ├── System.Transactions.dll │ │ │ │ ├── System.ValueTuple.dll │ │ │ │ ├── System.Web.HttpUtility.dll │ │ │ │ ├── System.Web.dll │ │ │ │ ├── System.Windows.dll │ │ │ │ ├── System.Xml.Linq.dll │ │ │ │ ├── System.Xml.ReaderWriter.dll │ │ │ │ ├── System.Xml.Serialization.dll │ │ │ │ ├── System.Xml.XDocument.dll │ │ │ │ ├── System.Xml.XPath.XDocument.dll │ │ │ │ ├── System.Xml.XPath.dll │ │ │ │ ├── System.Xml.XmlDocument.dll │ │ │ │ ├── System.Xml.XmlSerializer.dll │ │ │ │ ├── System.Xml.dll │ │ │ │ ├── System.dll │ │ │ │ ├── WindowsBase.dll │ │ │ │ ├── mscorlib.dll │ │ │ │ └── netstandard.dll │ │ │ └── runtimes │ │ │ │ ├── unix │ │ │ │ └── lib │ │ │ │ │ ├── netcoreapp2.0 │ │ │ │ │ └── System.Runtime.Caching.dll │ │ │ │ │ └── netcoreapp2.1 │ │ │ │ │ └── Microsoft.Data.SqlClient.dll │ │ │ │ ├── win-arm64 │ │ │ │ └── native │ │ │ │ │ └── sni.dll │ │ │ │ ├── win-x64 │ │ │ │ ├── native │ │ │ │ │ └── sni.dll │ │ │ │ └── sni.dll │ │ │ │ ├── win-x86 │ │ │ │ └── native │ │ │ │ │ └── sni.dll │ │ │ │ └── win │ │ │ │ └── lib │ │ │ │ ├── netcoreapp2.0 │ │ │ │ └── System.Runtime.Caching.dll │ │ │ │ ├── netcoreapp2.1 │ │ │ │ └── Microsoft.Data.SqlClient.dll │ │ │ │ └── netstandard2.0 │ │ │ │ └── System.Security.Cryptography.ProtectedData.dll │ │ ├── TableStoragePlugin │ │ │ ├── Contract.dll │ │ │ ├── Contract.pdb │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Configuration.Binder.dll │ │ │ ├── Microsoft.Extensions.Configuration.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ ├── Microsoft.WindowsAzure.Storage.dll │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── Prise.Infrastructure.dll │ │ │ ├── Prise.Infrastructure.pdb │ │ │ ├── Prise.Plugin.dll │ │ │ ├── Prise.Plugin.pdb │ │ │ ├── TableStoragePlugin.deps.json │ │ │ ├── TableStoragePlugin.dll │ │ │ └── TableStoragePlugin.pdb │ │ └── placeholder.txt │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ └── appsettings.json ├── Plugins │ ├── CosmosDbPlugin │ │ ├── CosmosDbBootstrapper.cs │ │ ├── CosmosDbConfig.cs │ │ ├── CosmosDbPlugin.csproj │ │ ├── CosmosDbProductsRepository.cs │ │ ├── CosmosDbRepositoryBase.cs │ │ └── ProductCosmosDbDocument.cs │ ├── HttpPlugin │ │ ├── HttpOptions.cs │ │ ├── HttpPlugin.csproj │ │ ├── HttpPluginBootstrapper.cs │ │ ├── HttpRepositoryBase.cs │ │ ├── MyProductsRepository.cs │ │ ├── SWAPIFilmsResponse.cs │ │ └── SWAPIRepository.cs │ ├── OldSQLPlugin │ │ ├── Configuration │ │ │ └── SQLPluginConfig.cs │ │ ├── OldSQLPlugin.csproj │ │ ├── ProductsDbContext.cs │ │ ├── SqlPluginBootstrapper.cs │ │ └── SqlProductsRepository.cs │ ├── SQLPlugin │ │ ├── Configuration │ │ │ └── SQLPluginConfig.cs │ │ ├── ProductsDbContext.cs │ │ ├── Properties │ │ │ └── PublishProfiles │ │ │ │ ├── FolderProfile.pubxml │ │ │ │ └── FolderProfile.pubxml.user │ │ ├── SQLPlugin.csproj │ │ ├── SQLPlugin.csproj.user │ │ ├── SqlPluginBootstrapper.cs │ │ └── SqlProductsRepository.cs │ └── TableStoragePlugin │ │ ├── ProductTableEntity.cs │ │ ├── TableStorageBootstrapper.cs │ │ ├── TableStorageConfig.cs │ │ ├── TableStoragePlugin.csproj │ │ ├── TableStorageProductsRepository.cs │ │ └── TableStorageProviderBase.cs ├── Tests │ ├── MyHost2WebApplicationFactory.cs │ ├── MyHostWebApplicationFactory.cs │ ├── PluginTestBase.cs │ ├── ProductsTests.cs │ ├── Tests.csproj │ ├── Tests.csproj.user │ └── UseLocalCommandLineArguments.cs └── build.cake ├── MultiTenantMicroservice ├── Contract │ ├── Contract.csproj │ ├── IProductsRepository.cs │ └── Product.cs ├── Plugins │ ├── OldSQLPlugin │ │ ├── Configuration │ │ │ └── SQLPluginConfig.cs │ │ ├── Contract.dll │ │ ├── OldSQLPlugin.csproj │ │ ├── ProductsDbContext.cs │ │ ├── SqlPluginBootstrapper.cs │ │ └── SqlProductsRepository.cs │ ├── SQLPlugin │ │ ├── Configuration │ │ │ └── SQLPluginConfig.cs │ │ ├── ProductsDbContext.cs │ │ ├── Properties │ │ │ └── PublishProfiles │ │ │ │ ├── FolderProfile.pubxml │ │ │ │ └── FolderProfile.pubxml.user │ │ ├── SQLPlugin.csproj │ │ ├── SQLPlugin.csproj.user │ │ ├── SqlPluginBootstrapper.cs │ │ └── SqlProductsRepository.cs │ └── TableStoragePlugin │ │ ├── ProductTableEntity.cs │ │ ├── TableStorageBootstrapper.cs │ │ ├── TableStorageConfig.cs │ │ ├── TableStoragePlugin.csproj │ │ ├── TableStorageProductsRepository.cs │ │ └── TableStorageProviderBase.cs ├── Products.API │ ├── Controllers │ │ └── ProductsController.cs │ ├── Infrastructure │ │ ├── TenantConfig.cs │ │ └── TenantPluginProvider.cs │ ├── Products.API.csproj │ ├── Products.API.csproj.user │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ └── appsettings.json └── build.cake ├── MultiTenantMicroserviceWithDiscovery ├── Contract │ ├── Contract.csproj │ ├── IProductsRepository.cs │ └── Product.cs ├── Plugins │ ├── OldSQLPlugin │ │ ├── Configuration │ │ │ └── SQLPluginConfig.cs │ │ ├── Contract.dll │ │ ├── OldSQLPlugin.csproj │ │ ├── ProductsDbContext.cs │ │ ├── SqlPluginBootstrapper.cs │ │ └── SqlProductsRepository.cs │ ├── SQLPlugin │ │ ├── Configuration │ │ │ └── SQLPluginConfig.cs │ │ ├── ProductsDbContext.cs │ │ ├── SQLPlugin.csproj │ │ ├── SqlPluginBootstrapper.cs │ │ └── SqlProductsRepository.cs │ └── TableStoragePlugin │ │ ├── ProductTableEntity.cs │ │ ├── TableStorageBootstrapper.cs │ │ ├── TableStorageConfig.cs │ │ ├── TableStoragePlugin.csproj │ │ ├── TableStorageProductsRepository.cs │ │ └── TableStorageProviderBase.cs ├── Products.API │ ├── Controllers │ │ └── ProductsController.cs │ ├── Infrastructure │ │ ├── TenantAssemblySelector.cs │ │ └── TenantConfig.cs │ ├── Products.API.csproj │ ├── Products.API.csproj.user │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ └── appsettings.json └── build.cake ├── PluginFromNetwork ├── Contract │ ├── Contract.csproj │ └── IHelloPlugin.cs ├── MyHost │ ├── Controllers │ │ ├── HelloController.cs │ │ └── LazyHelloController.cs │ ├── LanguageBasedAssemblyNameProvider.cs │ ├── LanguageBasedPluginLoadOptions.cs │ ├── MyHost.csproj │ ├── MyHost.csproj.user │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ └── appsettings.json ├── PluginServer │ ├── Plugin.Server.csproj │ ├── Plugins │ │ ├── Bonjour.Plugin │ │ │ ├── Bonjour.Plugin.deps.json │ │ │ ├── Bonjour.Plugin.dll │ │ │ ├── Bonjour.Plugin.pdb │ │ │ ├── Contract.dll │ │ │ ├── Contract.pdb │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ │ ├── Prise.Infrastructure.dll │ │ │ ├── Prise.Plugin.dll │ │ │ └── Prise.Plugin.pdb │ │ ├── Hallo.Plugin │ │ │ ├── Contract.dll │ │ │ ├── Contract.pdb │ │ │ ├── Hallo.Plugin.deps.json │ │ │ ├── Hallo.Plugin.dll │ │ │ ├── Hallo.Plugin.pdb │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ │ ├── Prise.Infrastructure.dll │ │ │ ├── Prise.Plugin.dll │ │ │ └── Prise.Plugin.pdb │ │ └── Hello.Plugin │ │ │ ├── Contract.dll │ │ │ ├── Contract.pdb │ │ │ ├── Hello.Plugin.deps.json │ │ │ ├── Hello.Plugin.dll │ │ │ ├── Hello.Plugin.pdb │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ │ ├── Prise.Infrastructure.dll │ │ │ ├── Prise.Plugin.dll │ │ │ └── Prise.Plugin.pdb │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ └── appsettings.json ├── Plugins │ ├── Bonjour.Plugin │ │ ├── Bonjour.Plugin.csproj │ │ └── Bonjour.cs │ ├── Hallo.Plugin │ │ ├── Hallo.Plugin.csproj │ │ └── Hallo.cs │ └── Hello.Plugin │ │ ├── Hello.Plugin.csproj │ │ └── Hello.cs ├── README.md └── build.cake ├── PluginWithAsyncContract ├── Contract │ ├── Contract.csproj │ ├── HelloDictionary.cs │ └── IHelloWorldPlugin.cs ├── HelloWorldPlugin │ ├── Dictionary.cs │ ├── Dictionary.json │ ├── HelloWorldPlugin.cs │ ├── HelloWorldPlugin.csproj │ └── Languages.json ├── MyHost │ ├── Controllers │ │ └── HelloController.cs │ ├── MyHost.csproj │ ├── MyHost.csproj.user │ ├── Plugins │ │ ├── Contract.dll │ │ ├── Contract.pdb │ │ ├── Dictionary.json │ │ ├── HelloWorldPlugin.deps.json │ │ ├── HelloWorldPlugin.dll │ │ ├── HelloWorldPlugin.pdb │ │ ├── Languages.json │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ ├── Newtonsoft.Json.dll │ │ └── Prise.Plugin.dll │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ └── appsettings.json ├── README.md └── build.cake ├── PluginWithDependencies ├── Contract │ ├── Contract.csproj │ └── IHelloPlugin.cs ├── MyHost │ ├── Controllers │ │ ├── HelloController.cs │ │ └── LazyHelloController.cs │ ├── LanguageBasedAssemblyNameProvider.cs │ ├── LanguageBasedPluginPathProvider.cs │ ├── MyHost.csproj │ ├── MyHost.csproj.user │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ └── appsettings.json ├── Plugins │ ├── Bonjour.Plugin │ │ ├── Bonjour.Plugin.csproj │ │ └── Bonjour.cs │ ├── Hallo.Plugin │ │ ├── Hallo.Plugin.csproj │ │ └── Hallo.cs │ ├── Hello.Plugin │ │ ├── Hello.Plugin.csproj │ │ └── Hello.cs │ ├── Random.Domain │ │ ├── Random.Domain.csproj │ │ └── RandomService.cs │ └── Random.Plugin │ │ ├── Random.Plugin.csproj │ │ ├── RandomPlugin.cs │ │ └── RandomPluginBootstrapper.cs ├── README.md └── build.cake ├── PluginWithExternalServices ├── Contract │ ├── Contract.csproj │ └── IHelloPlugin.cs ├── ExternalServices │ ├── ExternalServices.csproj │ └── IExternalService.cs ├── MyHost │ ├── AcceptHeaderLanguageService.cs │ ├── Controllers │ │ ├── HelloController.cs │ │ └── LazyHelloController.cs │ ├── Models │ │ └── LanguageInfo.cs │ ├── MyHost.csproj │ ├── MyHost.csproj.user │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.json │ ├── dictionary.json │ └── languages.json ├── Plugins │ ├── Language.Domain │ │ ├── DictionaryService.cs │ │ └── Language.Domain.csproj │ └── LanguageBased.Plugin │ │ ├── ExternalServiceBridge.cs │ │ ├── LanguageBased.Plugin.csproj │ │ ├── LanguageBasedPlugin.cs │ │ └── LanguageBasedPluginBootstrapper.cs ├── README.md └── build.cake ├── PluginWithSharedDependencies ├── Contract │ ├── Contract.csproj │ ├── IHelloPlugin.cs │ └── ISharedLanguageService.cs ├── MyHost │ ├── AcceptHeaderLanguageService.cs │ ├── Controllers │ │ ├── HelloController.cs │ │ └── LazyHelloController.cs │ ├── MyHost.csproj │ ├── MyHost.csproj.user │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ └── appsettings.json ├── Plugins │ ├── Language.Domain │ │ ├── Language.Domain.csproj │ │ └── LanguageService.cs │ └── LanguageBased.Plugin │ │ ├── LanguageBased.Plugin.csproj │ │ ├── LanguageBasedPlugin.cs │ │ ├── LanguageBasedPluginBootstrapper.cs │ │ └── SharedLanguageServiceBridge.cs ├── README.md └── build.cake ├── Prise.Examples.sln ├── ProxyExample ├── ProxyApp │ ├── ICalculator.cs │ ├── Lib │ │ └── ProxyLib.dll │ ├── Program.cs │ └── ProxyApp.csproj └── ProxyLib │ ├── Calculator.cs │ └── ProxyLib.csproj ├── README.md ├── SimplePlugin ├── Contract │ ├── Contract.csproj │ └── IHelloWorldPlugin.cs ├── HelloWorldPlugin │ ├── HelloWorldPlugin.cs │ └── HelloWorldPlugin.csproj ├── MyHost │ ├── Controllers │ │ └── HelloController.cs │ ├── MyHost.csproj │ ├── MyHost.csproj.user │ ├── Plugins │ │ ├── Contract.dll │ │ ├── Contract.pdb │ │ ├── HelloWorldPlugin.deps.json │ │ ├── HelloWorldPlugin.dll │ │ ├── HelloWorldPlugin.pdb │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ └── Prise.Plugin.dll │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ └── appsettings.json ├── README.md └── build.cake ├── build.cake └── commands.json /.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | publish 4 | appsettings.Development.json 5 | .vs 6 | .vscode 7 | *.user 8 | *.pubxml 9 | tools 10 | .DS_Store 11 | -------------------------------------------------------------------------------- /AssemblyDiscovery/Contract/Contract.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netstandard2.0 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /AssemblyDiscovery/Contract/IProductsDeleter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using System.Threading.Tasks; 5 | 6 | namespace Contract 7 | { 8 | public interface IProductsDeleter 9 | { 10 | Task Delete(int productId); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /AssemblyDiscovery/Contract/IProductsReader.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Threading.Tasks; 4 | 5 | namespace Contract 6 | { 7 | public interface IProductsReader 8 | { 9 | Task Get(int productId); 10 | Task> All(); 11 | Task> Search(string term); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /AssemblyDiscovery/Contract/IProductsWriter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using System.Threading.Tasks; 5 | 6 | namespace Contract 7 | { 8 | public interface IProductsWriter 9 | { 10 | Task Create(Product product); 11 | Task Update(Product product); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /AssemblyDiscovery/Contract/Product.cs: -------------------------------------------------------------------------------- 1 | namespace Contract 2 | { 3 | public class Product 4 | { 5 | public int Id { get; set; } 6 | public string Name { get; set; } 7 | public string SKU { get; set; } 8 | public string Description { get; set; } 9 | public decimal PriceExlVAT { get; set; } 10 | } 11 | } -------------------------------------------------------------------------------- /AssemblyDiscovery/MyHost/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*", 10 | "TableStoragePlugin": { 11 | "StorageAccount": "", 12 | "StorageKey": "", 13 | "TableName": "" 14 | } 15 | } -------------------------------------------------------------------------------- /AssemblyDiscovery/Plugins/TableStorageConnector/TableStorageConfig.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace TableStorageConnector 6 | { 7 | public class TableStorageConfig 8 | { 9 | public string StorageAccount { get; set; } 10 | public string StorageKey { get; set; } 11 | public string TableName { get; set; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /AvaloniaAppWithPlugin/.gitignore: -------------------------------------------------------------------------------- 1 | AppHost/Plugins -------------------------------------------------------------------------------- /AvaloniaAppWithPlugin/AppHost/Assets/avalonia-logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AvaloniaAppWithPlugin/AppHost/Assets/avalonia-logo.ico -------------------------------------------------------------------------------- /AvaloniaAppWithPlugin/AppHost/ViewModelLocator.cs: -------------------------------------------------------------------------------- 1 | using AppHost.ViewModels; 2 | using Avalonia.Controls; 3 | 4 | namespace AppHost 5 | { 6 | public static class ViewModelLocator 7 | { 8 | public static Shared.ViewModelBase MainViewModel 9 | { 10 | get 11 | { 12 | return AppServiceLocator.GetService(); 13 | } 14 | } 15 | } 16 | } -------------------------------------------------------------------------------- /AvaloniaAppWithPlugin/AppHost/nuget.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /AvaloniaAppWithPlugin/Components/Assets/bonjour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AvaloniaAppWithPlugin/Components/Assets/bonjour.png -------------------------------------------------------------------------------- /AvaloniaAppWithPlugin/Components/Assets/hallo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AvaloniaAppWithPlugin/Components/Assets/hallo.png -------------------------------------------------------------------------------- /AvaloniaAppWithPlugin/Components/Assets/hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AvaloniaAppWithPlugin/Components/Assets/hello.png -------------------------------------------------------------------------------- /AvaloniaAppWithPlugin/Contract/ComponentInput.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | 4 | namespace Contract 5 | { 6 | [Serializable] 7 | public class ComponentInput 8 | { 9 | public string Text { get; set; } 10 | public List Children { get; set; } 11 | } 12 | } -------------------------------------------------------------------------------- /AvaloniaAppWithPlugin/Contract/Contract.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netstandard2.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /AvaloniaAppWithPlugin/Contract/IAppComponent.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Avalonia.Controls; 3 | 4 | namespace Contract 5 | { 6 | public interface IAppComponent 7 | { 8 | string GetName(); 9 | UserControl Load(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /AvaloniaAppWithPlugin/Shared/Shared.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netstandard2.0 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /AvaloniaAppWithPlugin/Shared/ViewModelBase.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Shared 4 | { 5 | [Serializable] 6 | public abstract class ViewModelBase : NotifyBase 7 | { 8 | 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /AvaloniaAppWithPlugin/avalonia-app-plugins.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AvaloniaAppWithPlugin/avalonia-app-plugins.gif -------------------------------------------------------------------------------- /AvaloniaAppWithPlugin/avalonia-macOs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AvaloniaAppWithPlugin/avalonia-macOs.gif -------------------------------------------------------------------------------- /AvaloniaAppWithPlugin/avalonia-ubuntu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AvaloniaAppWithPlugin/avalonia-ubuntu.gif -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/Contract/Contract.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netstandard2.0 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/Contract/IHelloPlugin.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Threading.Tasks; 3 | 4 | namespace Contract 5 | { 6 | public interface IHelloPlugin 7 | { 8 | Task SayHello(string input); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/Plugin.Function/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/Plugin.Function/local.settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "IsEncrypted": false, 3 | "Values": { 4 | "FUNCTIONS_WORKER_RUNTIME": "dotnet", 5 | "PluginServerUrl": "https://localhost:5003/Plugins" 6 | } 7 | } -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/PluginServer/Plugin.Server.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp3.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/PluginServer/Plugins/Bonjour.Plugin/Bonjour.Plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AzureFunctionWithPlugin/PluginServer/Plugins/Bonjour.Plugin/Bonjour.Plugin.dll -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/PluginServer/Plugins/Bonjour.Plugin/Bonjour.Plugin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AzureFunctionWithPlugin/PluginServer/Plugins/Bonjour.Plugin/Bonjour.Plugin.pdb -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/PluginServer/Plugins/Bonjour.Plugin/Contract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AzureFunctionWithPlugin/PluginServer/Plugins/Bonjour.Plugin/Contract.dll -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/PluginServer/Plugins/Bonjour.Plugin/Contract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AzureFunctionWithPlugin/PluginServer/Plugins/Bonjour.Plugin/Contract.pdb -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/PluginServer/Plugins/Bonjour.Plugin/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AzureFunctionWithPlugin/PluginServer/Plugins/Bonjour.Plugin/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/PluginServer/Plugins/Bonjour.Plugin/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AzureFunctionWithPlugin/PluginServer/Plugins/Bonjour.Plugin/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/PluginServer/Plugins/Bonjour.Plugin/Microsoft.Extensions.FileSystemGlobbing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AzureFunctionWithPlugin/PluginServer/Plugins/Bonjour.Plugin/Microsoft.Extensions.FileSystemGlobbing.dll -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/PluginServer/Plugins/Bonjour.Plugin/Prise.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AzureFunctionWithPlugin/PluginServer/Plugins/Bonjour.Plugin/Prise.Infrastructure.dll -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/PluginServer/Plugins/Bonjour.Plugin/Prise.Plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AzureFunctionWithPlugin/PluginServer/Plugins/Bonjour.Plugin/Prise.Plugin.dll -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/PluginServer/Plugins/Bonjour.Plugin/Prise.Plugin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AzureFunctionWithPlugin/PluginServer/Plugins/Bonjour.Plugin/Prise.Plugin.pdb -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/PluginServer/Plugins/Hallo.Plugin/Contract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AzureFunctionWithPlugin/PluginServer/Plugins/Hallo.Plugin/Contract.dll -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/PluginServer/Plugins/Hallo.Plugin/Contract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AzureFunctionWithPlugin/PluginServer/Plugins/Hallo.Plugin/Contract.pdb -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/PluginServer/Plugins/Hallo.Plugin/Hallo.Plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AzureFunctionWithPlugin/PluginServer/Plugins/Hallo.Plugin/Hallo.Plugin.dll -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/PluginServer/Plugins/Hallo.Plugin/Hallo.Plugin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AzureFunctionWithPlugin/PluginServer/Plugins/Hallo.Plugin/Hallo.Plugin.pdb -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/PluginServer/Plugins/Hallo.Plugin/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AzureFunctionWithPlugin/PluginServer/Plugins/Hallo.Plugin/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/PluginServer/Plugins/Hallo.Plugin/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AzureFunctionWithPlugin/PluginServer/Plugins/Hallo.Plugin/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/PluginServer/Plugins/Hallo.Plugin/Microsoft.Extensions.FileSystemGlobbing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AzureFunctionWithPlugin/PluginServer/Plugins/Hallo.Plugin/Microsoft.Extensions.FileSystemGlobbing.dll -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/PluginServer/Plugins/Hallo.Plugin/Prise.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AzureFunctionWithPlugin/PluginServer/Plugins/Hallo.Plugin/Prise.Infrastructure.dll -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/PluginServer/Plugins/Hallo.Plugin/Prise.Plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AzureFunctionWithPlugin/PluginServer/Plugins/Hallo.Plugin/Prise.Plugin.dll -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/PluginServer/Plugins/Hallo.Plugin/Prise.Plugin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AzureFunctionWithPlugin/PluginServer/Plugins/Hallo.Plugin/Prise.Plugin.pdb -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/PluginServer/Plugins/Hello.Plugin/Contract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AzureFunctionWithPlugin/PluginServer/Plugins/Hello.Plugin/Contract.dll -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/PluginServer/Plugins/Hello.Plugin/Contract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AzureFunctionWithPlugin/PluginServer/Plugins/Hello.Plugin/Contract.pdb -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/PluginServer/Plugins/Hello.Plugin/Hello.Plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AzureFunctionWithPlugin/PluginServer/Plugins/Hello.Plugin/Hello.Plugin.dll -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/PluginServer/Plugins/Hello.Plugin/Hello.Plugin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AzureFunctionWithPlugin/PluginServer/Plugins/Hello.Plugin/Hello.Plugin.pdb -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/PluginServer/Plugins/Hello.Plugin/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AzureFunctionWithPlugin/PluginServer/Plugins/Hello.Plugin/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/PluginServer/Plugins/Hello.Plugin/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AzureFunctionWithPlugin/PluginServer/Plugins/Hello.Plugin/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/PluginServer/Plugins/Hello.Plugin/Microsoft.Extensions.FileSystemGlobbing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AzureFunctionWithPlugin/PluginServer/Plugins/Hello.Plugin/Microsoft.Extensions.FileSystemGlobbing.dll -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/PluginServer/Plugins/Hello.Plugin/Prise.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AzureFunctionWithPlugin/PluginServer/Plugins/Hello.Plugin/Prise.Infrastructure.dll -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/PluginServer/Plugins/Hello.Plugin/Prise.Plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AzureFunctionWithPlugin/PluginServer/Plugins/Hello.Plugin/Prise.Plugin.dll -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/PluginServer/Plugins/Hello.Plugin/Prise.Plugin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/AzureFunctionWithPlugin/PluginServer/Plugins/Hello.Plugin/Prise.Plugin.pdb -------------------------------------------------------------------------------- /AzureFunctionWithPlugin/PluginServer/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /ComplexPlugin/AppHost/Models/CalculationRequestModel.cs: -------------------------------------------------------------------------------- 1 | namespace AppHost.Models 2 | { 3 | public class CalculationRequestModel 4 | { 5 | public decimal A { get; set; } 6 | public decimal B { get; set; } 7 | } 8 | } -------------------------------------------------------------------------------- /ComplexPlugin/AppHost/Models/CalculationRequestMultiModel.cs: -------------------------------------------------------------------------------- 1 | namespace AppHost.Models 2 | { 3 | public class CalculationRequestMultiModel 4 | { 5 | public CalculationRequestModel[] Calculations{get;set;} 6 | } 7 | } -------------------------------------------------------------------------------- /ComplexPlugin/AppHost/Models/CalculationResponseModel.cs: -------------------------------------------------------------------------------- 1 | namespace AppHost.Models 2 | { 3 | public class CalculationResponseModel 4 | { 5 | public decimal Result {get;set;} 6 | } 7 | } -------------------------------------------------------------------------------- /ComplexPlugin/AppHost/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /ComplexPlugin/Contract/CalculationContext.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Contract 4 | { 5 | // Plugin Parameter types are not required to be serializable, Newtonsoft JSON takes care of this 6 | public class CalculationContext 7 | { 8 | public decimal A { get; set; } 9 | public decimal B { get; set; } 10 | } 11 | } -------------------------------------------------------------------------------- /ComplexPlugin/Contract/CalculationResult.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Contract 4 | { 5 | public class CalculationResult 6 | { 7 | public decimal Result { get; set; } 8 | } 9 | } -------------------------------------------------------------------------------- /ComplexPlugin/Contract/ComplexCalculationContext.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Contract 4 | { 5 | // Plugin Parameter types are not required to be serializable, Newtonsoft JSON takes care of this 6 | public class ComplexCalculationContext 7 | { 8 | public CalculationContext[] Calculations { get; set; } 9 | } 10 | } -------------------------------------------------------------------------------- /ComplexPlugin/Contract/ComplexCalculationResult.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Contract 4 | { 5 | public class ComplexCalculationResult 6 | { 7 | public CalculationResult[] Results { get; set; } 8 | } 9 | } -------------------------------------------------------------------------------- /ComplexPlugin/Contract/Contract.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netstandard2.0 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ComplexPlugin/DomainForPluginC/DomainForPluginC.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netstandard2.0 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ComplexPlugin/Plugins/PluginA/PluginA.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | netstandard2.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /ComplexPlugin/Plugins/PluginB/PluginB.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | netstandard2.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /MVCPlugins/Contract/Contract.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | netstandard2.0 4 | 5 | 6 | -------------------------------------------------------------------------------- /MVCPlugins/Contract/IMVCFeature.cs: -------------------------------------------------------------------------------- 1 | namespace Contract 2 | { 3 | public interface IMVCFeature 4 | { 5 | // This is just a marker interface to indicate that the implemenation of this this plugin assembly contains API Controllers 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /MVCPlugins/MyHost/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- 1 | namespace MyHost.Models 2 | { 3 | public class ErrorViewModel 4 | { 5 | public string RequestId { get; set; } 6 | 7 | public bool ShowRequestId => !string.IsNullOrEmpty(RequestId); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /MVCPlugins/MyHost/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Privacy Policy"; 3 | } 4 |

@ViewData["Title"]

5 | 6 |

Use this page to detail your site's privacy policy.

7 | -------------------------------------------------------------------------------- /MVCPlugins/MyHost/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /MVCPlugins/MyHost/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using MyHost 2 | @using MyHost.Models 3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 4 | -------------------------------------------------------------------------------- /MVCPlugins/MyHost/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /MVCPlugins/MyHost/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*", 10 | "ConnectionStrings": { 11 | "Products": "" 12 | }, 13 | "Orders": { 14 | "StorageAccount": "", 15 | "StorageKey": "", 16 | "TableName": "" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /MVCPlugins/MyHost/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MVCPlugins/MyHost/wwwroot/favicon.ico -------------------------------------------------------------------------------- /MVCPlugins/MyHost/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification 2 | // for details on configuring this project to bundle and minify static web assets. 3 | 4 | // Write your JavaScript code. 5 | -------------------------------------------------------------------------------- /MVCPlugins/MyHost2/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- 1 | namespace MyHost2.Models 2 | { 3 | public class ErrorViewModel 4 | { 5 | public string RequestId { get; set; } 6 | 7 | public bool ShowRequestId => !string.IsNullOrEmpty(RequestId); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /MVCPlugins/MyHost2/Models/HomeViewModel.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace MyHost2.Models 4 | { 5 | public class Feature 6 | { 7 | public string Name { get; set; } 8 | public bool IsEnabled { get; set; } 9 | } 10 | 11 | public class HomeViewModel 12 | { 13 | public IEnumerable Features { get; set; } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /MVCPlugins/MyHost2/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Privacy Policy"; 3 | } 4 |

@ViewData["Title"]

5 | 6 |

Use this page to detail your site's privacy policy.

7 | -------------------------------------------------------------------------------- /MVCPlugins/MyHost2/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /MVCPlugins/MyHost2/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using MyHost2 2 | @using MyHost2.Models 3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 4 | -------------------------------------------------------------------------------- /MVCPlugins/MyHost2/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /MVCPlugins/MyHost2/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Warning" 5 | } 6 | }, 7 | "AllowedHosts": "*", 8 | "ConnectionStrings": { 9 | "Products": "Server=localhost;Initial Catalog=DellDb;Integrated Security=True;" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /MVCPlugins/MyHost2/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MVCPlugins/MyHost2/wwwroot/favicon.ico -------------------------------------------------------------------------------- /MVCPlugins/MyHost2/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification 2 | // for details on configuring this project to bundle and minify static web assets. 3 | 4 | // Write your JavaScript code. 5 | -------------------------------------------------------------------------------- /MVCPlugins/Plugins/OrdersAPIControllerPlugin/Models/Order.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OrdersControllerPlugin.Models 6 | { 7 | public class Order 8 | { 9 | public int Id { get; set; } 10 | public double Price { get; set; } 11 | public double PriceIncVAT { get; set; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /MVCPlugins/Plugins/OrdersAPIControllerPlugin/OrdersConfig.cs: -------------------------------------------------------------------------------- 1 | namespace OrdersAPIControllerPlugin 2 | { 3 | public class OrdersConfig 4 | { 5 | public string StorageAccount { get; set; } 6 | public string StorageKey { get; set; } 7 | public string TableName { get; set; } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /MVCPlugins/Plugins/ProductsAPIControllerPlugin/Models/Product.cs: -------------------------------------------------------------------------------- 1 | namespace ProductsAPIControllerPlugin.Models 2 | { 3 | public class Product 4 | { 5 | public int Id { get; set; } 6 | public string Name { get; set; } 7 | public string SKU { get; set; } 8 | public string Description { get; set; } 9 | public decimal PriceExlVAT { get; set; } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /MVCPlugins/Plugins/TwitterWidgetPlugin/TwitterWidgetController.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Mvc; 2 | 3 | namespace TwitterWidgetPlugin 4 | { 5 | [Route("twitter")] 6 | // The name of the Views folder must be TwitterWidget 7 | public class TwitterWidgetController : Controller 8 | { 9 | public IActionResult Index() 10 | { 11 | return View("Index"); 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /MVCPlugins/Plugins/TwitterWidgetPlugin/Views/TwitterWidget/Index.cshtml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /MVCPlugins/Plugins/WeatherWidgetPlugin/WeatherWidgetController.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Mvc; 2 | 3 | namespace POTUSTwitterPlugin 4 | { 5 | [Route("weather")] 6 | // The name of the Views folder must be WeatherWidget 7 | public class WeatherWidgetController : Controller 8 | { 9 | public IActionResult Index() 10 | { 11 | return View("Index"); 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /MVCPlugins/asp-net3-mvc-plugins.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MVCPlugins/asp-net3-mvc-plugins.gif -------------------------------------------------------------------------------- /MicroserviceWithPlugins/Contract/Contract.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netstandard2.0 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /MicroserviceWithPlugins/Contract/Product.cs: -------------------------------------------------------------------------------- 1 | namespace Contract 2 | { 3 | public class Product 4 | { 5 | public int Id { get; set; } 6 | public string Name { get; set; } 7 | public string SKU { get; set; } 8 | public string Description { get; set; } 9 | public decimal PriceExlVAT { get; set; } 10 | } 11 | } -------------------------------------------------------------------------------- /MicroserviceWithPlugins/MyProductsAPI/MyProductsAPI.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp3.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /MicroserviceWithPlugins/MyProductsAPI/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugin.Server.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp3.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Contract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Contract.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Contract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Contract.pdb -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Cosmos.CRTCompat.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Cosmos.CRTCompat.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/CosmosDbPlugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/CosmosDbPlugin.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/CosmosDbPlugin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/CosmosDbPlugin.pdb -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/DnsClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/DnsClient.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Microsoft.Azure.Cosmos.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Microsoft.Azure.Cosmos.Client.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Microsoft.Azure.Cosmos.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Microsoft.Azure.Cosmos.Core.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Microsoft.Azure.Cosmos.Direct.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Microsoft.Azure.Cosmos.Direct.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Microsoft.Azure.Cosmos.Serialization.HybridRow.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Microsoft.Azure.Cosmos.Serialization.HybridRow.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Microsoft.Azure.Cosmos.ServiceInterop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Microsoft.Azure.Cosmos.ServiceInterop.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Microsoft.Azure.DocumentDB.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Microsoft.Azure.DocumentDB.Core.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Microsoft.Extensions.Configuration.Binder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Microsoft.Extensions.Configuration.Binder.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/MongoDB.Bson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/MongoDB.Bson.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/MongoDB.Driver.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/MongoDB.Driver.Core.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/MongoDB.Driver.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/MongoDB.Driver.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Prise.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Prise.Infrastructure.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Prise.Infrastructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Prise.Infrastructure.pdb -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Prise.Plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Prise.Plugin.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Prise.Plugin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/Prise.Plugin.pdb -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/SharpCompress.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/SharpCompress.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/System.Security.Permissions.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/System.ServiceModel.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/System.ServiceModel.Primitives.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/System.ServiceModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/System.ServiceModel.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/runtimes/win-x64/native/Cosmos.CRTCompat.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/runtimes/win-x64/native/Cosmos.CRTCompat.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/runtimes/win-x64/native/Microsoft.Azure.Cosmos.ServiceInterop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/runtimes/win-x64/native/Microsoft.Azure.Cosmos.ServiceInterop.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/runtimes/win/lib/netstandard2.0/System.Private.ServiceModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/runtimes/win/lib/netstandard2.0/System.Private.ServiceModel.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/runtimes/win/native/DocumentDB.Spatial.Sql.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/runtimes/win/native/DocumentDB.Spatial.Sql.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/runtimes/win/native/Microsoft.Azure.Documents.ServiceInterop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/CosmosDbPlugin/runtimes/win/native/Microsoft.Azure.Documents.ServiceInterop.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/Contract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/Contract.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/Contract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/Contract.pdb -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/HttpPlugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/HttpPlugin.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/HttpPlugin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/HttpPlugin.pdb -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/Microsoft.Extensions.Configuration.Binder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/Microsoft.Extensions.Configuration.Binder.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/Microsoft.Extensions.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/Microsoft.Extensions.Http.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/Prise.Plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/Prise.Plugin.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/Prise.Plugin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/Prise.Plugin.pdb -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/HttpPlugin/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Contract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Contract.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Contract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Contract.pdb -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Microsoft.Extensions.Caching.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Microsoft.Extensions.Caching.Abstractions.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Microsoft.Extensions.Caching.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Microsoft.Extensions.Caching.Memory.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Microsoft.Extensions.Configuration.Binder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Microsoft.Extensions.Configuration.Binder.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/OldSQLPlugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/OldSQLPlugin.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/OldSQLPlugin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/OldSQLPlugin.pdb -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Prise.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Prise.Infrastructure.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Prise.Infrastructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Prise.Infrastructure.pdb -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Remotion.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/Remotion.Linq.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/System.Interactive.Async.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/System.Interactive.Async.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/System.Text.Encoding.CodePages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/System.Text.Encoding.CodePages.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/runtimes/win-x86/native/sni.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/OldSQLPlugin/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Contract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Contract.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Contract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Contract.pdb -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.CSharp.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.Extensions.Caching.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.Extensions.Caching.Abstractions.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.Extensions.Caching.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.Extensions.Caching.Memory.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.Extensions.Configuration.Binder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.Extensions.Configuration.Binder.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Prise.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Prise.Infrastructure.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Prise.Infrastructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Prise.Infrastructure.pdb -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Prise.Plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Prise.Plugin.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Prise.Plugin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/Prise.Plugin.pdb -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/SQLPlugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/SQLPlugin.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/SQLPlugin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/SQLPlugin.pdb -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.AppContext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.AppContext.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Buffers.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Collections.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Collections.Concurrent.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Collections.NonGeneric.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Collections.NonGeneric.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Collections.Specialized.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Collections.Specialized.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.ComponentModel.Annotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.ComponentModel.Annotations.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.ComponentModel.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.ComponentModel.Primitives.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.ComponentModel.TypeConverter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.ComponentModel.TypeConverter.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.ComponentModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.ComponentModel.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Dynamic.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Dynamic.Runtime.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.IO.Compression.ZipFile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.IO.Compression.ZipFile.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.IO.FileSystem.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.IO.FileSystem.Primitives.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Linq.Expressions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Linq.Expressions.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Linq.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Memory.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.ObjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.ObjectModel.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Private.DataContractSerialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Private.DataContractSerialization.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Reflection.Emit.ILGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Reflection.Emit.ILGeneration.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Reflection.Emit.Lightweight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Reflection.Emit.Lightweight.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Reflection.Emit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Reflection.Emit.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Reflection.TypeExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Reflection.TypeExtensions.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Runtime.InteropServices.RuntimeInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Runtime.InteropServices.RuntimeInformation.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Runtime.Numerics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Runtime.Numerics.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Runtime.Serialization.Formatters.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Runtime.Serialization.Formatters.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Runtime.Serialization.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Runtime.Serialization.Json.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Runtime.Serialization.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Runtime.Serialization.Primitives.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Security.Cryptography.OpenSsl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Security.Cryptography.OpenSsl.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Security.Permissions.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Text.Encoding.CodePages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Text.Encoding.CodePages.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Text.RegularExpressions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Text.RegularExpressions.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Threading.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Xml.ReaderWriter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Xml.ReaderWriter.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Xml.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Xml.XDocument.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Xml.XmlDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Xml.XmlDocument.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Xml.XmlSerializer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/System.Xml.XmlSerializer.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/Microsoft.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/Microsoft.CSharp.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/Microsoft.VisualBasic.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/Microsoft.VisualBasic.Core.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/Microsoft.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/Microsoft.VisualBasic.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/Microsoft.Win32.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/Microsoft.Win32.Primitives.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.AppContext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.AppContext.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Buffers.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Collections.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Collections.Concurrent.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Collections.NonGeneric.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Collections.NonGeneric.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Collections.Specialized.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Collections.Specialized.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Collections.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.ComponentModel.Annotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.ComponentModel.Annotations.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.ComponentModel.Composition.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.ComponentModel.Composition.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.ComponentModel.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.ComponentModel.DataAnnotations.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.ComponentModel.EventBasedAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.ComponentModel.EventBasedAsync.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.ComponentModel.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.ComponentModel.Primitives.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.ComponentModel.TypeConverter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.ComponentModel.TypeConverter.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.ComponentModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.ComponentModel.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Configuration.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Console.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Core.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Data.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Data.Common.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Data.DataSetExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Data.DataSetExtensions.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Data.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Diagnostics.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Diagnostics.Contracts.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Diagnostics.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Diagnostics.Debug.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Diagnostics.FileVersionInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Diagnostics.FileVersionInfo.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Diagnostics.Process.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Diagnostics.Process.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Diagnostics.StackTrace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Diagnostics.StackTrace.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Diagnostics.TextWriterTraceListener.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Diagnostics.TextWriterTraceListener.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Diagnostics.Tools.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Diagnostics.Tools.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Diagnostics.TraceSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Diagnostics.TraceSource.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Diagnostics.Tracing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Diagnostics.Tracing.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Drawing.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Drawing.Primitives.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Drawing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Drawing.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Dynamic.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Dynamic.Runtime.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Globalization.Calendars.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Globalization.Calendars.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Globalization.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Globalization.Extensions.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Globalization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Globalization.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.IO.Compression.Brotli.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.IO.Compression.Brotli.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.IO.Compression.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.IO.Compression.FileSystem.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.IO.Compression.ZipFile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.IO.Compression.ZipFile.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.IO.Compression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.IO.Compression.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.IO.FileSystem.DriveInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.IO.FileSystem.DriveInfo.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.IO.FileSystem.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.IO.FileSystem.Primitives.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.IO.FileSystem.Watcher.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.IO.FileSystem.Watcher.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.IO.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.IO.FileSystem.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.IO.IsolatedStorage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.IO.IsolatedStorage.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.IO.MemoryMappedFiles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.IO.MemoryMappedFiles.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.IO.Pipes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.IO.Pipes.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.IO.UnmanagedMemoryStream.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.IO.UnmanagedMemoryStream.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.IO.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Linq.Expressions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Linq.Expressions.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Linq.Parallel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Linq.Parallel.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Linq.Queryable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Linq.Queryable.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Linq.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Memory.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.Http.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.HttpListener.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.HttpListener.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.Mail.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.Mail.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.NameResolution.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.NameResolution.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.NetworkInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.NetworkInformation.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.Ping.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.Ping.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.Primitives.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.Requests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.Requests.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.Security.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.ServicePoint.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.ServicePoint.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.Sockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.Sockets.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.WebClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.WebClient.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.WebHeaderCollection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.WebHeaderCollection.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.WebProxy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.WebProxy.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.WebSockets.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.WebSockets.Client.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.WebSockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.WebSockets.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Net.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Numerics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Numerics.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.ObjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.ObjectModel.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Reflection.DispatchProxy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Reflection.DispatchProxy.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Reflection.Emit.ILGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Reflection.Emit.ILGeneration.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Reflection.Emit.Lightweight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Reflection.Emit.Lightweight.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Reflection.Emit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Reflection.Emit.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Reflection.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Reflection.Extensions.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Reflection.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Reflection.Primitives.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Reflection.TypeExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Reflection.TypeExtensions.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Reflection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Reflection.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Resources.Reader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Resources.Reader.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Resources.ResourceManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Resources.ResourceManager.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Resources.Writer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Resources.Writer.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Runtime.CompilerServices.VisualC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Runtime.CompilerServices.VisualC.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Runtime.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Runtime.Extensions.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Runtime.Handles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Runtime.Handles.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Runtime.InteropServices.RuntimeInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Runtime.InteropServices.RuntimeInformation.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Runtime.InteropServices.WindowsRuntime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Runtime.InteropServices.WindowsRuntime.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Runtime.InteropServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Runtime.InteropServices.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Runtime.Intrinsics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Runtime.Intrinsics.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Runtime.Loader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Runtime.Loader.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Runtime.Numerics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Runtime.Numerics.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Runtime.Serialization.Formatters.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Runtime.Serialization.Formatters.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Runtime.Serialization.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Runtime.Serialization.Json.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Runtime.Serialization.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Runtime.Serialization.Primitives.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Runtime.Serialization.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Runtime.Serialization.Xml.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Runtime.Serialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Runtime.Serialization.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Runtime.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Security.Claims.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Security.Claims.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Security.Cryptography.Csp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Security.Cryptography.Csp.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Security.Principal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Security.Principal.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Security.SecureString.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Security.SecureString.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Security.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.ServiceModel.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.ServiceModel.Web.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.ServiceProcess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.ServiceProcess.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Text.Encoding.CodePages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Text.Encoding.CodePages.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Text.Encoding.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Text.Encoding.Extensions.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Text.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Text.Encoding.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Text.Encodings.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Text.Encodings.Web.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Text.Json.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Text.RegularExpressions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Text.RegularExpressions.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Threading.Channels.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Threading.Channels.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Threading.Overlapped.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Threading.Overlapped.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Threading.Tasks.Dataflow.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Threading.Tasks.Dataflow.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Threading.Tasks.Parallel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Threading.Tasks.Parallel.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Threading.Thread.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Threading.Thread.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Threading.ThreadPool.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Threading.ThreadPool.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Threading.Timer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Threading.Timer.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Threading.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Transactions.Local.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Transactions.Local.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Transactions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Transactions.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.ValueTuple.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Web.HttpUtility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Web.HttpUtility.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Web.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Windows.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Xml.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Xml.Linq.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Xml.ReaderWriter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Xml.ReaderWriter.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Xml.Serialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Xml.Serialization.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Xml.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Xml.XDocument.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Xml.XPath.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Xml.XPath.XDocument.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Xml.XPath.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Xml.XPath.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Xml.XmlDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Xml.XmlDocument.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Xml.XmlSerializer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Xml.XmlSerializer.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.Xml.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/System.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/WindowsBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/WindowsBase.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/mscorlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/mscorlib.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/netstandard.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/refs/netstandard.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/runtimes/win-x64/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/runtimes/win-x64/sni.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/runtimes/win-x86/native/sni.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/SQLPlugin/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/TableStoragePlugin/Contract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/TableStoragePlugin/Contract.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/TableStoragePlugin/Contract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/TableStoragePlugin/Contract.pdb -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/TableStoragePlugin/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/TableStoragePlugin/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/TableStoragePlugin/Microsoft.Extensions.Configuration.Binder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/TableStoragePlugin/Microsoft.Extensions.Configuration.Binder.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/TableStoragePlugin/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/TableStoragePlugin/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/TableStoragePlugin/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/TableStoragePlugin/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/TableStoragePlugin/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/TableStoragePlugin/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/TableStoragePlugin/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/TableStoragePlugin/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/TableStoragePlugin/Microsoft.WindowsAzure.Storage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/TableStoragePlugin/Microsoft.WindowsAzure.Storage.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/TableStoragePlugin/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/TableStoragePlugin/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/TableStoragePlugin/Prise.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/TableStoragePlugin/Prise.Infrastructure.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/TableStoragePlugin/Prise.Infrastructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/TableStoragePlugin/Prise.Infrastructure.pdb -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/TableStoragePlugin/Prise.Plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/TableStoragePlugin/Prise.Plugin.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/TableStoragePlugin/Prise.Plugin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/TableStoragePlugin/Prise.Plugin.pdb -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/TableStoragePlugin/TableStoragePlugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/TableStoragePlugin/TableStoragePlugin.dll -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/TableStoragePlugin/TableStoragePlugin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/TableStoragePlugin/TableStoragePlugin.pdb -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/Plugins/placeholder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MicroserviceWithPlugins/PluginServer/Plugins/placeholder.txt -------------------------------------------------------------------------------- /MicroserviceWithPlugins/PluginServer/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /MicroserviceWithPlugins/Plugins/CosmosDbPlugin/CosmosDbConfig.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace CosmosDbPlugin 6 | { 7 | public class CosmosDbConfig 8 | { 9 | public string Account { get; set; } 10 | public string Key { get; set; } 11 | public string Database { get; set; } 12 | public string Container { get; set; } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /MicroserviceWithPlugins/Plugins/HttpPlugin/HttpOptions.cs: -------------------------------------------------------------------------------- 1 | namespace HttpPlugin 2 | { 3 | public class HttpConfig 4 | { 5 | public string MyProductsUrl { get; set; } 6 | public string SWAPIUrl { get; set; } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /MicroserviceWithPlugins/Plugins/OldSQLPlugin/Configuration/SQLPluginConfig.cs: -------------------------------------------------------------------------------- 1 | namespace OldSQLPlugin.Configuration 2 | { 3 | public class SQLPluginConfig 4 | { 5 | public string ConnectionString { get; set; } 6 | } 7 | } -------------------------------------------------------------------------------- /MicroserviceWithPlugins/Plugins/OldSQLPlugin/ProductsDbContext.cs: -------------------------------------------------------------------------------- 1 | using Contract; 2 | using Microsoft.EntityFrameworkCore; 3 | using System; 4 | 5 | namespace OldSQLPlugin 6 | { 7 | public class ProductsDbContext : DbContext 8 | { 9 | public virtual DbSet Products { get; set; } 10 | 11 | public ProductsDbContext(DbContextOptions options) : base(options) 12 | { 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /MicroserviceWithPlugins/Plugins/SQLPlugin/Configuration/SQLPluginConfig.cs: -------------------------------------------------------------------------------- 1 | namespace SQLPlugin.Configuration 2 | { 3 | public class SQLPluginConfig 4 | { 5 | public string ConnectionString { get; set; } 6 | } 7 | } -------------------------------------------------------------------------------- /MicroserviceWithPlugins/Plugins/SQLPlugin/ProductsDbContext.cs: -------------------------------------------------------------------------------- 1 | using Contract; 2 | using Microsoft.EntityFrameworkCore; 3 | namespace SQLPlugin 4 | { 5 | public class ProductsDbContext : DbContext 6 | { 7 | public virtual DbSet Products { get; set; } 8 | 9 | public ProductsDbContext(DbContextOptions options) : base(options) 10 | { 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /MicroserviceWithPlugins/Plugins/SQLPlugin/Properties/PublishProfiles/FolderProfile.pubxml.user: -------------------------------------------------------------------------------- 1 |  2 | 5 | 6 | -------------------------------------------------------------------------------- /MicroserviceWithPlugins/Plugins/SQLPlugin/SQLPlugin.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | <_LastSelectedProfileId>C:\src\Prise\examples\MicroserviceWithPlugins\SQLPlugin\Properties\PublishProfiles\FolderProfile.pubxml 5 | 6 | -------------------------------------------------------------------------------- /MicroserviceWithPlugins/Plugins/TableStoragePlugin/TableStorageConfig.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace TableStoragePlugin 6 | { 7 | public class TableStorageConfig 8 | { 9 | public string StorageAccount { get; set; } 10 | public string StorageKey { get; set; } 11 | public string TableName { get; set; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /MicroserviceWithPlugins/Tests/Tests.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | netcoreapp2.1 5 | 6 | -------------------------------------------------------------------------------- /MicroserviceWithPlugins/Tests/UseLocalCommandLineArguments.cs: -------------------------------------------------------------------------------- 1 | using MyHost.Infrastructure; 2 | 3 | namespace Tests 4 | { 5 | public class UseLocalCommandLineArguments : ICommandLineArguments 6 | { 7 | public bool UseNetwork 8 | { 9 | get 10 | { 11 | return false; 12 | } 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /MultiTenantMicroservice/Contract/Contract.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netstandard2.0 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /MultiTenantMicroservice/Contract/Product.cs: -------------------------------------------------------------------------------- 1 | namespace Contract 2 | { 3 | public class Product 4 | { 5 | public int Id { get; set; } 6 | public string Name { get; set; } 7 | public string SKU { get; set; } 8 | public string Description { get; set; } 9 | public decimal PriceExlVAT { get; set; } 10 | } 11 | } -------------------------------------------------------------------------------- /MultiTenantMicroservice/Plugins/OldSQLPlugin/Configuration/SQLPluginConfig.cs: -------------------------------------------------------------------------------- 1 | namespace OldSQLPlugin.Configuration 2 | { 3 | public class SQLPluginConfig 4 | { 5 | public string ConnectionString { get; set; } 6 | } 7 | } -------------------------------------------------------------------------------- /MultiTenantMicroservice/Plugins/OldSQLPlugin/Contract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MultiTenantMicroservice/Plugins/OldSQLPlugin/Contract.dll -------------------------------------------------------------------------------- /MultiTenantMicroservice/Plugins/OldSQLPlugin/ProductsDbContext.cs: -------------------------------------------------------------------------------- 1 | using Contract; 2 | using Microsoft.EntityFrameworkCore; 3 | using System; 4 | 5 | namespace OldSQLPlugin 6 | { 7 | public class ProductsDbContext : DbContext 8 | { 9 | public virtual DbSet Products { get; set; } 10 | 11 | public ProductsDbContext(DbContextOptions options) : base(options) 12 | { 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /MultiTenantMicroservice/Plugins/SQLPlugin/Configuration/SQLPluginConfig.cs: -------------------------------------------------------------------------------- 1 | namespace SQLPlugin.Configuration 2 | { 3 | public class SQLPluginConfig 4 | { 5 | public string ConnectionString { get; set; } 6 | } 7 | } -------------------------------------------------------------------------------- /MultiTenantMicroservice/Plugins/SQLPlugin/ProductsDbContext.cs: -------------------------------------------------------------------------------- 1 | using Contract; 2 | using Microsoft.EntityFrameworkCore; 3 | namespace SQLPlugin 4 | { 5 | public class ProductsDbContext : DbContext 6 | { 7 | public virtual DbSet Products { get; set; } 8 | 9 | public ProductsDbContext(DbContextOptions options) : base(options) 10 | { 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /MultiTenantMicroservice/Plugins/SQLPlugin/Properties/PublishProfiles/FolderProfile.pubxml.user: -------------------------------------------------------------------------------- 1 |  2 | 5 | 6 | -------------------------------------------------------------------------------- /MultiTenantMicroservice/Plugins/SQLPlugin/SQLPlugin.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | <_LastSelectedProfileId>C:\src\Prise\examples\MicroserviceWithPlugins\SQLPlugin\Properties\PublishProfiles\FolderProfile.pubxml 5 | 6 | -------------------------------------------------------------------------------- /MultiTenantMicroservice/Plugins/TableStoragePlugin/TableStorageConfig.cs: -------------------------------------------------------------------------------- 1 | namespace TableStoragePlugin 2 | { 3 | public class TableStorageConfig 4 | { 5 | public string StorageAccount { get; set; } 6 | public string StorageKey { get; set; } 7 | public string TableName { get; set; } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /MultiTenantMicroserviceWithDiscovery/Contract/Contract.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netstandard2.0 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /MultiTenantMicroserviceWithDiscovery/Contract/Product.cs: -------------------------------------------------------------------------------- 1 | namespace Contract 2 | { 3 | public class Product 4 | { 5 | public int Id { get; set; } 6 | public string Name { get; set; } 7 | public string SKU { get; set; } 8 | public string Description { get; set; } 9 | public decimal PriceExlVAT { get; set; } 10 | } 11 | } -------------------------------------------------------------------------------- /MultiTenantMicroserviceWithDiscovery/Plugins/OldSQLPlugin/Configuration/SQLPluginConfig.cs: -------------------------------------------------------------------------------- 1 | namespace OldSQLPlugin.Configuration 2 | { 3 | public class SQLPluginConfig 4 | { 5 | public string ConnectionString { get; set; } 6 | } 7 | } -------------------------------------------------------------------------------- /MultiTenantMicroserviceWithDiscovery/Plugins/OldSQLPlugin/Contract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/MultiTenantMicroserviceWithDiscovery/Plugins/OldSQLPlugin/Contract.dll -------------------------------------------------------------------------------- /MultiTenantMicroserviceWithDiscovery/Plugins/SQLPlugin/Configuration/SQLPluginConfig.cs: -------------------------------------------------------------------------------- 1 | namespace SQLPlugin.Configuration 2 | { 3 | public class SQLPluginConfig 4 | { 5 | public string ConnectionString { get; set; } 6 | } 7 | } -------------------------------------------------------------------------------- /MultiTenantMicroserviceWithDiscovery/Plugins/SQLPlugin/ProductsDbContext.cs: -------------------------------------------------------------------------------- 1 | using Contract; 2 | using Microsoft.EntityFrameworkCore; 3 | namespace SQLPlugin 4 | { 5 | public class ProductsDbContext : DbContext 6 | { 7 | public virtual DbSet Products { get; set; } 8 | 9 | public ProductsDbContext(DbContextOptions options) : base(options) 10 | { 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /MultiTenantMicroserviceWithDiscovery/Plugins/TableStoragePlugin/TableStorageConfig.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace TableStoragePlugin 6 | { 7 | public class TableStorageConfig 8 | { 9 | public string StorageAccount { get; set; } 10 | public string StorageKey { get; set; } 11 | public string TableName { get; set; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /PluginFromNetwork/Contract/Contract.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netstandard2.0 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /PluginFromNetwork/Contract/IHelloPlugin.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Contract 4 | { 5 | public interface IHelloPlugin 6 | { 7 | string SayHello(string input); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /PluginFromNetwork/MyHost/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*", 10 | "PluginServerUrl": "https://localhost:5003/Plugins" 11 | } -------------------------------------------------------------------------------- /PluginFromNetwork/PluginServer/Plugin.Server.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp3.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /PluginFromNetwork/PluginServer/Plugins/Bonjour.Plugin/Bonjour.Plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginFromNetwork/PluginServer/Plugins/Bonjour.Plugin/Bonjour.Plugin.dll -------------------------------------------------------------------------------- /PluginFromNetwork/PluginServer/Plugins/Bonjour.Plugin/Bonjour.Plugin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginFromNetwork/PluginServer/Plugins/Bonjour.Plugin/Bonjour.Plugin.pdb -------------------------------------------------------------------------------- /PluginFromNetwork/PluginServer/Plugins/Bonjour.Plugin/Contract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginFromNetwork/PluginServer/Plugins/Bonjour.Plugin/Contract.dll -------------------------------------------------------------------------------- /PluginFromNetwork/PluginServer/Plugins/Bonjour.Plugin/Contract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginFromNetwork/PluginServer/Plugins/Bonjour.Plugin/Contract.pdb -------------------------------------------------------------------------------- /PluginFromNetwork/PluginServer/Plugins/Bonjour.Plugin/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginFromNetwork/PluginServer/Plugins/Bonjour.Plugin/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /PluginFromNetwork/PluginServer/Plugins/Bonjour.Plugin/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginFromNetwork/PluginServer/Plugins/Bonjour.Plugin/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /PluginFromNetwork/PluginServer/Plugins/Bonjour.Plugin/Microsoft.Extensions.FileSystemGlobbing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginFromNetwork/PluginServer/Plugins/Bonjour.Plugin/Microsoft.Extensions.FileSystemGlobbing.dll -------------------------------------------------------------------------------- /PluginFromNetwork/PluginServer/Plugins/Bonjour.Plugin/Prise.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginFromNetwork/PluginServer/Plugins/Bonjour.Plugin/Prise.Infrastructure.dll -------------------------------------------------------------------------------- /PluginFromNetwork/PluginServer/Plugins/Bonjour.Plugin/Prise.Plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginFromNetwork/PluginServer/Plugins/Bonjour.Plugin/Prise.Plugin.dll -------------------------------------------------------------------------------- /PluginFromNetwork/PluginServer/Plugins/Bonjour.Plugin/Prise.Plugin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginFromNetwork/PluginServer/Plugins/Bonjour.Plugin/Prise.Plugin.pdb -------------------------------------------------------------------------------- /PluginFromNetwork/PluginServer/Plugins/Hallo.Plugin/Contract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginFromNetwork/PluginServer/Plugins/Hallo.Plugin/Contract.dll -------------------------------------------------------------------------------- /PluginFromNetwork/PluginServer/Plugins/Hallo.Plugin/Contract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginFromNetwork/PluginServer/Plugins/Hallo.Plugin/Contract.pdb -------------------------------------------------------------------------------- /PluginFromNetwork/PluginServer/Plugins/Hallo.Plugin/Hallo.Plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginFromNetwork/PluginServer/Plugins/Hallo.Plugin/Hallo.Plugin.dll -------------------------------------------------------------------------------- /PluginFromNetwork/PluginServer/Plugins/Hallo.Plugin/Hallo.Plugin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginFromNetwork/PluginServer/Plugins/Hallo.Plugin/Hallo.Plugin.pdb -------------------------------------------------------------------------------- /PluginFromNetwork/PluginServer/Plugins/Hallo.Plugin/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginFromNetwork/PluginServer/Plugins/Hallo.Plugin/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /PluginFromNetwork/PluginServer/Plugins/Hallo.Plugin/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginFromNetwork/PluginServer/Plugins/Hallo.Plugin/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /PluginFromNetwork/PluginServer/Plugins/Hallo.Plugin/Microsoft.Extensions.FileSystemGlobbing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginFromNetwork/PluginServer/Plugins/Hallo.Plugin/Microsoft.Extensions.FileSystemGlobbing.dll -------------------------------------------------------------------------------- /PluginFromNetwork/PluginServer/Plugins/Hallo.Plugin/Prise.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginFromNetwork/PluginServer/Plugins/Hallo.Plugin/Prise.Infrastructure.dll -------------------------------------------------------------------------------- /PluginFromNetwork/PluginServer/Plugins/Hallo.Plugin/Prise.Plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginFromNetwork/PluginServer/Plugins/Hallo.Plugin/Prise.Plugin.dll -------------------------------------------------------------------------------- /PluginFromNetwork/PluginServer/Plugins/Hallo.Plugin/Prise.Plugin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginFromNetwork/PluginServer/Plugins/Hallo.Plugin/Prise.Plugin.pdb -------------------------------------------------------------------------------- /PluginFromNetwork/PluginServer/Plugins/Hello.Plugin/Contract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginFromNetwork/PluginServer/Plugins/Hello.Plugin/Contract.dll -------------------------------------------------------------------------------- /PluginFromNetwork/PluginServer/Plugins/Hello.Plugin/Contract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginFromNetwork/PluginServer/Plugins/Hello.Plugin/Contract.pdb -------------------------------------------------------------------------------- /PluginFromNetwork/PluginServer/Plugins/Hello.Plugin/Hello.Plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginFromNetwork/PluginServer/Plugins/Hello.Plugin/Hello.Plugin.dll -------------------------------------------------------------------------------- /PluginFromNetwork/PluginServer/Plugins/Hello.Plugin/Hello.Plugin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginFromNetwork/PluginServer/Plugins/Hello.Plugin/Hello.Plugin.pdb -------------------------------------------------------------------------------- /PluginFromNetwork/PluginServer/Plugins/Hello.Plugin/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginFromNetwork/PluginServer/Plugins/Hello.Plugin/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /PluginFromNetwork/PluginServer/Plugins/Hello.Plugin/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginFromNetwork/PluginServer/Plugins/Hello.Plugin/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /PluginFromNetwork/PluginServer/Plugins/Hello.Plugin/Microsoft.Extensions.FileSystemGlobbing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginFromNetwork/PluginServer/Plugins/Hello.Plugin/Microsoft.Extensions.FileSystemGlobbing.dll -------------------------------------------------------------------------------- /PluginFromNetwork/PluginServer/Plugins/Hello.Plugin/Prise.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginFromNetwork/PluginServer/Plugins/Hello.Plugin/Prise.Infrastructure.dll -------------------------------------------------------------------------------- /PluginFromNetwork/PluginServer/Plugins/Hello.Plugin/Prise.Plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginFromNetwork/PluginServer/Plugins/Hello.Plugin/Prise.Plugin.dll -------------------------------------------------------------------------------- /PluginFromNetwork/PluginServer/Plugins/Hello.Plugin/Prise.Plugin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginFromNetwork/PluginServer/Plugins/Hello.Plugin/Prise.Plugin.pdb -------------------------------------------------------------------------------- /PluginFromNetwork/PluginServer/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /PluginFromNetwork/Plugins/Bonjour.Plugin/Bonjour.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Contract; 3 | using Prise.Plugin; 4 | 5 | namespace Bonjour.Plugin 6 | { 7 | [Plugin(PluginType = typeof(IHelloPlugin))] 8 | public class Bonjour : IHelloPlugin 9 | { 10 | public string SayHello(string input) 11 | { 12 | return $"Bonjour {input}"; 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /PluginFromNetwork/Plugins/Hallo.Plugin/Hallo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Contract; 3 | using Prise.Plugin; 4 | 5 | namespace Hallo.Plugin 6 | { 7 | [Plugin(PluginType = typeof(IHelloPlugin))] 8 | public class Hallo : IHelloPlugin 9 | { 10 | public string SayHello(string input) 11 | { 12 | return $"Hallo {input}"; 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /PluginFromNetwork/Plugins/Hello.Plugin/Hello.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Contract; 3 | using Prise.Plugin; 4 | 5 | namespace Hello.Plugin 6 | { 7 | [Plugin(PluginType = typeof(IHelloPlugin))] 8 | public class Hello : IHelloPlugin 9 | { 10 | public string SayHello(string input) 11 | { 12 | return $"Hello {input}"; 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /PluginWithAsyncContract/Contract/Contract.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netstandard2.0 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /PluginWithAsyncContract/Contract/IHelloWorldPlugin.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Threading.Tasks; 3 | 4 | namespace Contract 5 | { 6 | public interface IHelloWorldPlugin 7 | { 8 | Task SayHelloAsync(string language, string input); 9 | Task GetHelloDictionaryAsync(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /PluginWithAsyncContract/HelloWorldPlugin/Dictionary.cs: -------------------------------------------------------------------------------- 1 | namespace HelloWorldPlugin 2 | { 3 | public class Dictionary 4 | { 5 | // private Dictionary dictionary 6 | } 7 | } -------------------------------------------------------------------------------- /PluginWithAsyncContract/HelloWorldPlugin/Dictionary.json: -------------------------------------------------------------------------------- 1 | { 2 | "en": "Hello", 3 | "nl": "Hallo", 4 | "fr": "Bonjour" 5 | } -------------------------------------------------------------------------------- /PluginWithAsyncContract/MyHost/Plugins/Contract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginWithAsyncContract/MyHost/Plugins/Contract.dll -------------------------------------------------------------------------------- /PluginWithAsyncContract/MyHost/Plugins/Contract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginWithAsyncContract/MyHost/Plugins/Contract.pdb -------------------------------------------------------------------------------- /PluginWithAsyncContract/MyHost/Plugins/Dictionary.json: -------------------------------------------------------------------------------- 1 | { 2 | "en": "Hello", 3 | "nl": "Hallo", 4 | "fr": "Bonjour" 5 | } -------------------------------------------------------------------------------- /PluginWithAsyncContract/MyHost/Plugins/HelloWorldPlugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginWithAsyncContract/MyHost/Plugins/HelloWorldPlugin.dll -------------------------------------------------------------------------------- /PluginWithAsyncContract/MyHost/Plugins/HelloWorldPlugin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginWithAsyncContract/MyHost/Plugins/HelloWorldPlugin.pdb -------------------------------------------------------------------------------- /PluginWithAsyncContract/MyHost/Plugins/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginWithAsyncContract/MyHost/Plugins/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /PluginWithAsyncContract/MyHost/Plugins/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginWithAsyncContract/MyHost/Plugins/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /PluginWithAsyncContract/MyHost/Plugins/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginWithAsyncContract/MyHost/Plugins/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /PluginWithAsyncContract/MyHost/Plugins/Prise.Plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/PluginWithAsyncContract/MyHost/Plugins/Prise.Plugin.dll -------------------------------------------------------------------------------- /PluginWithAsyncContract/MyHost/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /PluginWithDependencies/Contract/Contract.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netstandard2.0 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /PluginWithDependencies/Contract/IHelloPlugin.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Contract 4 | { 5 | public interface IHelloPlugin 6 | { 7 | string SayHello(string input); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /PluginWithDependencies/MyHost/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*", 10 | "PluginServerUrl": "https://localhost:5001/Plugins" 11 | } -------------------------------------------------------------------------------- /PluginWithDependencies/Plugins/Bonjour.Plugin/Bonjour.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Contract; 3 | using Prise.Plugin; 4 | 5 | namespace Bonjour.Plugin 6 | { 7 | [Plugin(PluginType = typeof(IHelloPlugin))] 8 | public class Bonjour : IHelloPlugin 9 | { 10 | public string SayHello(string input) 11 | { 12 | return $"Bonjour {input}"; 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /PluginWithDependencies/Plugins/Hallo.Plugin/Hallo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Contract; 3 | using Prise.Plugin; 4 | 5 | namespace Hallo.Plugin 6 | { 7 | [Plugin(PluginType = typeof(IHelloPlugin))] 8 | public class Hallo : IHelloPlugin 9 | { 10 | public string SayHello(string input) 11 | { 12 | return $"Hallo {input}"; 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /PluginWithDependencies/Plugins/Hello.Plugin/Hello.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Contract; 3 | using Prise.Plugin; 4 | 5 | namespace Hello.Plugin 6 | { 7 | [Plugin(PluginType = typeof(IHelloPlugin))] 8 | public class Hello : IHelloPlugin 9 | { 10 | public string SayHello(string input) 11 | { 12 | return $"Hello {input}"; 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /PluginWithDependencies/Plugins/Random.Domain/Random.Domain.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | netstandard2.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /PluginWithExternalServices/Contract/Contract.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netstandard2.0 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /PluginWithExternalServices/Contract/IHelloPlugin.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Threading.Tasks; 3 | 4 | namespace Contract 5 | { 6 | public interface IHelloPlugin 7 | { 8 | string SayHello(string input); 9 | Task SayHelloAsync(string input); 10 | //Task SayHelloIntAsync(int input); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /PluginWithExternalServices/ExternalServices/ExternalServices.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netstandard2.0 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /PluginWithExternalServices/MyHost/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*", 10 | "PluginServerUrl": "https://localhost:5001/Plugins", 11 | "LanuageOverride": "nl-BE" 12 | } -------------------------------------------------------------------------------- /PluginWithExternalServices/MyHost/dictionary.json: -------------------------------------------------------------------------------- 1 | { 2 | "en-GB": "Hello", 3 | "nl-NL": "Hoi", 4 | "nl-BE": "Hallo", 5 | "fr-FR": "Bonjour" 6 | } -------------------------------------------------------------------------------- /PluginWithExternalServices/Plugins/Language.Domain/Language.Domain.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | netstandard2.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /PluginWithSharedDependencies/Contract/Contract.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netstandard2.0 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /PluginWithSharedDependencies/Contract/IHelloPlugin.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Contract 4 | { 5 | public interface IHelloPlugin 6 | { 7 | string SayHello(string input); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /PluginWithSharedDependencies/Contract/ISharedLanguageService.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Contract 4 | { 5 | public interface ISharedLanguageService 6 | { 7 | string GetLanguage(); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /PluginWithSharedDependencies/MyHost/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*", 10 | "PluginServerUrl": "https://localhost:5001/Plugins" 11 | } -------------------------------------------------------------------------------- /PluginWithSharedDependencies/Plugins/Language.Domain/Language.Domain.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | netstandard2.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ProxyExample/ProxyApp/ICalculator.cs: -------------------------------------------------------------------------------- 1 | namespace ProxyApp 2 | { 3 | public interface ICalculator 4 | { 5 | double Add(double a, double b); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /ProxyExample/ProxyApp/Lib/ProxyLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/ProxyExample/ProxyApp/Lib/ProxyLib.dll -------------------------------------------------------------------------------- /ProxyExample/ProxyLib/Calculator.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ProxyLib 4 | { 5 | public class Calculator 6 | { 7 | public double Add(double a, double b) => a + b; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /ProxyExample/ProxyLib/ProxyLib.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netstandard2.0 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /SimplePlugin/Contract/Contract.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netstandard2.0 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /SimplePlugin/Contract/IHelloWorldPlugin.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Contract 4 | { 5 | public interface IHelloWorldPlugin 6 | { 7 | string SayHello(string input); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /SimplePlugin/HelloWorldPlugin/HelloWorldPlugin.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Contract; 3 | using Prise.Plugin; 4 | 5 | namespace HelloWorldPlugin 6 | { 7 | [Plugin(PluginType = typeof(IHelloWorldPlugin))] 8 | public class HelloWorldPlugin : IHelloWorldPlugin 9 | { 10 | public string SayHello(string input) 11 | { 12 | return $"Hello {input}"; 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /SimplePlugin/HelloWorldPlugin/HelloWorldPlugin.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | netcoreapp2.1 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /SimplePlugin/MyHost/MyHost.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ProjectDebugger 5 | 6 | 7 | MyHost 8 | 9 | -------------------------------------------------------------------------------- /SimplePlugin/MyHost/Plugins/Contract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/SimplePlugin/MyHost/Plugins/Contract.dll -------------------------------------------------------------------------------- /SimplePlugin/MyHost/Plugins/Contract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/SimplePlugin/MyHost/Plugins/Contract.pdb -------------------------------------------------------------------------------- /SimplePlugin/MyHost/Plugins/HelloWorldPlugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/SimplePlugin/MyHost/Plugins/HelloWorldPlugin.dll -------------------------------------------------------------------------------- /SimplePlugin/MyHost/Plugins/HelloWorldPlugin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/SimplePlugin/MyHost/Plugins/HelloWorldPlugin.pdb -------------------------------------------------------------------------------- /SimplePlugin/MyHost/Plugins/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/SimplePlugin/MyHost/Plugins/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /SimplePlugin/MyHost/Plugins/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/SimplePlugin/MyHost/Plugins/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /SimplePlugin/MyHost/Plugins/Prise.Plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merken/Prise.Examples/045e9bf510f067995bcffeb18cecd34125876d95/SimplePlugin/MyHost/Plugins/Prise.Plugin.dll -------------------------------------------------------------------------------- /SimplePlugin/MyHost/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | --------------------------------------------------------------------------------