├── .gitignore ├── .gitmodules ├── AspGrpc ├── .gitignore ├── AWebProsSite.slnf ├── AWebProsSite │ ├── AWebProsSite.csproj │ ├── AWebProsSite.sln │ ├── Pages │ │ ├── AspGrpcTests │ │ │ ├── AvaGripTestContainerPage.cshtml │ │ │ ├── AvaGripTestContainerPage.cshtml.cs │ │ │ ├── AvaloniaGrpcTestPage.cshtml │ │ │ ├── AvaloniaGrpcTestPage.cshtml.cs │ │ │ ├── HtmlGrpcTestPage.cshtml │ │ │ └── HtmlGrpcTestPage.cshtml.cs │ │ ├── Contact.cshtml │ │ ├── Contact.cshtml.cs │ │ ├── Error.cshtml │ │ ├── Error.cshtml.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── OnLineSamples.cshtml │ │ ├── OnLineSamples.cshtml.cs │ │ ├── Privacy.cshtml │ │ ├── Privacy.cshtml.cs │ │ ├── Shared │ │ │ ├── _Layout.cshtml │ │ │ ├── _Layout.cshtml.css │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── webpack.config.js │ └── wwwroot │ │ ├── Logo.svg │ │ ├── app.css │ │ ├── assets │ │ ├── Android.png │ │ ├── IPhoneIcon.png │ │ ├── LinuxIcon.png │ │ ├── MacIcon.png │ │ └── WindowsIcon.png │ │ ├── css │ │ └── site.css │ │ ├── dist │ │ ├── Greeter_grpc_web_pb.js │ │ ├── Greeter_pb.js │ │ ├── client.js │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ └── mainForHtmlJavaScrip.js │ │ ├── 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-grid.rtl.css │ │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ │ ├── bootstrap-utilities.css │ │ │ │ ├── bootstrap-utilities.css.map │ │ │ │ ├── bootstrap-utilities.min.css │ │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ ├── bootstrap.rtl.css │ │ │ │ ├── bootstrap.rtl.css.map │ │ │ │ ├── bootstrap.rtl.min.css │ │ │ │ └── bootstrap.rtl.min.css.map │ │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.esm.js │ │ │ │ ├── bootstrap.esm.js.map │ │ │ │ ├── bootstrap.esm.min.js │ │ │ │ ├── bootstrap.esm.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ ├── jquery-validation-unobtrusive │ │ │ ├── LICENSE.txt │ │ │ └── dist │ │ │ │ ├── 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 │ │ │ ├── jquery.slim.js │ │ │ ├── jquery.slim.min.js │ │ │ └── jquery.slim.min.map │ │ ├── mainForAvalonia.js │ │ ├── package-lock.json │ │ └── package.json ├── AspGrpcServer │ ├── .config │ │ └── dotnet-tools.json │ ├── AspGrpcServer.csproj │ ├── Pages │ │ ├── Error.cshtml │ │ ├── Error.cshtml.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── Privacy.cshtml │ │ ├── Privacy.cshtml.cs │ │ ├── Shared │ │ │ ├── _Layout.cshtml │ │ │ ├── _Layout.cshtml.css │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ │ ├── Logo.svg │ │ ├── app.css │ │ ├── css │ │ └── site.css │ │ ├── favicon.ico │ │ ├── js │ │ └── site.js │ │ └── mainForAvalonia.js ├── AspGrpcServerWithRazorClient │ ├── AspGrpcServerWithRazorClient.csproj │ ├── Pages │ │ ├── Error.cshtml │ │ ├── Error.cshtml.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── Shared │ │ │ ├── _Layout.cshtml │ │ │ └── _Layout.cshtml.css │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── stats.json │ ├── webpack.config.js │ └── wwwroot │ │ ├── css │ │ └── site.css │ │ ├── dist │ │ ├── Greeter_grpc_web_pb.js │ │ ├── Greeter_pb.js │ │ ├── client.js │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ └── main.js │ │ ├── favicon.ico │ │ ├── js │ │ └── site.js │ │ ├── package-lock.json │ │ └── package.json ├── AspGrpcTests.sln ├── AspGrpcWithAvaloniaClients.slnf ├── AspGrpcWithRazorClient.slnf ├── AvaGrpcClient │ ├── .gitignore │ ├── AvaGrpcClient.Browser │ │ ├── AvaGrpcClient.Browser.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── runtimeconfig.template.json │ │ └── wwwroot │ │ │ ├── Logo.svg │ │ │ ├── app.css │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ └── mainForAvalonia.js │ ├── AvaGrpcClient.Desktop │ │ ├── AvaGrpcClient.Desktop.csproj │ │ ├── Program.cs │ │ └── app.manifest │ ├── AvaGrpcClient.sln │ ├── AvaGrpcClient │ │ ├── App.axaml │ │ ├── App.axaml.cs │ │ ├── Assets │ │ │ └── avalonia-logo.ico │ │ ├── AvaGrpcClient.csproj │ │ ├── CommonData.cs │ │ └── Views │ │ │ ├── MainView.axaml │ │ │ ├── MainView.axaml.cs │ │ │ ├── MainWindow.axaml │ │ │ └── MainWindow.axaml.cs │ └── Directory.Build.props ├── ConsoleTestClient │ ├── ConsoleTestClient.csproj │ └── Program.cs ├── Directory.Build.props ├── GreeterImpl │ ├── GreeterImpl.csproj │ └── GreeterImplementation.cs ├── GrpcKestrelOnlyImplementation.slnf ├── GrpcServerProcess │ ├── GrpcServerProcess.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── appsettings.Development.json │ └── appsettings.json ├── MyTestsWebSite.slnf ├── MyTestsWebSite │ ├── MyTestsWebSite.csproj │ ├── Pages │ │ ├── AspGrpcTests │ │ │ ├── AvaloniaGrpcTestPage.cshtml │ │ │ ├── AvaloniaGrpcTestPage.cshtml.cs │ │ │ ├── HtmlGrpcTestPage.cshtml │ │ │ └── HtmlGrpcTestPage.cshtml.cs │ │ ├── DataGridTests │ │ │ ├── SimpleDataGroupingTestPage.cshtml │ │ │ └── SimpleDataGroupingTestPage.cshtml.cs │ │ ├── Error.cshtml │ │ ├── Error.cshtml.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── OnLineSamples.cshtml │ │ ├── OnLineSamples.cshtml.cs │ │ ├── Privacy.cshtml │ │ ├── Privacy.cshtml.cs │ │ ├── Shared │ │ │ ├── _Layout.cshtml │ │ │ └── _Layout.cshtml.css │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── webpack.config.js │ └── wwwroot │ │ ├── Logo.svg │ │ ├── app.css │ │ ├── assets │ │ ├── Android.png │ │ ├── IPhoneIcon.png │ │ ├── LinuxIcon.png │ │ ├── MacIcon.png │ │ └── WindowsIcon.png │ │ ├── css │ │ └── site.css │ │ ├── dist │ │ ├── Greeter_grpc_web_pb.js │ │ ├── Greeter_pb.js │ │ ├── client.js │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ └── mainForHtmlJavaScrip.js │ │ ├── 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-grid.rtl.css │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ ├── bootstrap-utilities.css │ │ │ ├── bootstrap-utilities.css.map │ │ │ ├── bootstrap-utilities.min.css │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.map │ │ │ ├── bootstrap.rtl.css │ │ │ ├── bootstrap.rtl.css.map │ │ │ ├── bootstrap.rtl.min.css │ │ │ └── bootstrap.rtl.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.esm.js │ │ │ ├── bootstrap.esm.js.map │ │ │ ├── bootstrap.esm.min.js │ │ │ ├── bootstrap.esm.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── mainForAvalonia.js │ │ ├── mainForDataGrid.js │ │ ├── package-lock.json │ │ └── package.json └── Protos │ ├── Greeter.proto │ ├── Protos.csproj │ └── README.txt ├── DependencyInjectionSamples ├── AutofacAdapterDynamicLoadingTests │ ├── AutofacAdapterDynamicLoadingTests.sln │ ├── NP.Samples.AutofacAdapterDynamicLoadingTests.csproj │ └── Program.cs ├── AutofacAdapterTests │ ├── AutofacAdapterTests.sln │ ├── NP.Samples.AutofacAdapterTests.csproj │ └── Program.cs ├── Implementations │ ├── Address.cs │ ├── AnotherOrg.cs │ ├── AnotherPerson.cs │ ├── ConsoleLog.cs │ ├── FactoryMethods.cs │ ├── FileLog.cs │ ├── NP.Samples.Implementations.csproj │ ├── Org.cs │ └── Person.cs ├── Interfaces │ ├── IAddress.cs │ ├── ILog.cs │ ├── IOrg.cs │ ├── IOrgGettersOnly.cs │ ├── IPerson.cs │ ├── IPersonGettersOnly.cs │ └── NP.Samples.Interfaces.csproj ├── IoCyDynamicLoadingTests │ ├── IoCyDynamicLoadingTests.sln │ ├── NP.Samples.IoCyDynamicLoadingTests.csproj │ └── Program.cs ├── IoCyTests │ ├── IoCyTests.sln │ ├── NP.Samples.IoCyTests.csproj │ ├── OrgContainer.cs │ └── Program.cs └── PluginsTest │ ├── MainProgram │ ├── MainProgram.csproj │ └── Program.cs │ ├── PluginInterfaces │ ├── IDoubleManipulationsPlugin.cs │ ├── IStringManipulationsPlugin.cs │ └── PluginInterfaces.csproj │ ├── Plugins │ └── DoubleManipulationsPlugin │ │ ├── DoubleManipulationFactoryMethods.cs │ │ ├── DoubleManipulationsPlugin.cs │ │ └── DoubleManipulationsPlugin.csproj │ ├── PluginsTest.sln │ └── StringManipulationsPlugin │ ├── StringManipulationFactoryMethods.cs │ ├── StringManipulationsPlugin.cs │ └── StringManipulationsPlugin.csproj ├── Directory.Build.props ├── Expressions ├── BlockExpressionsExamples │ ├── NP.Samples.Expressions.BlockExpressionsExamples.csproj │ ├── NP.Samples.Expressions.BlockExpressionsExamples.sln │ └── Program.cs ├── Readme.md └── SimpleExpressionsExamples │ ├── NP.Samples.Expressions.SimpleExpressionsExamples.csproj │ ├── NP.Samples.Expressions.SimpleExpressionsExamples.sln │ └── Program.cs ├── GRPC ├── SimpleRequestReplySample │ ├── Protos │ │ ├── Protos.csproj │ │ └── service.proto │ ├── SimpleGrpcClient │ │ ├── Program.cs │ │ ├── SimpleGrpcClient.csproj │ │ └── bin │ │ │ └── Release │ │ │ └── net6.0 │ │ │ ├── Google.Protobuf.dll │ │ │ ├── Grpc.Core.Api.dll │ │ │ ├── Grpc.Core.dll │ │ │ ├── Protos.dll │ │ │ ├── Protos.pdb │ │ │ ├── SimpleGrpcClient.deps.json │ │ │ ├── SimpleGrpcClient.dll │ │ │ ├── SimpleGrpcClient.exe │ │ │ ├── SimpleGrpcClient.pdb │ │ │ ├── SimpleGrpcClient.runtimeconfig.json │ │ │ └── runtimes │ │ │ ├── linux-arm64 │ │ │ └── native │ │ │ │ └── libgrpc_csharp_ext.arm64.so │ │ │ ├── linux-x64 │ │ │ └── native │ │ │ │ └── libgrpc_csharp_ext.x64.so │ │ │ ├── osx-x64 │ │ │ └── native │ │ │ │ └── libgrpc_csharp_ext.x64.dylib │ │ │ ├── win-x64 │ │ │ └── native │ │ │ │ └── grpc_csharp_ext.x64.dll │ │ │ └── win-x86 │ │ │ └── native │ │ │ └── grpc_csharp_ext.x86.dll │ ├── SimpleGrpcServer │ │ ├── GreeterImplementation.cs │ │ ├── Program.cs │ │ ├── SimpleGrpcServer.csproj │ │ ├── SimpleGrpcServer.sln │ │ └── bin │ │ │ └── Release │ │ │ └── net6.0 │ │ │ ├── Google.Protobuf.dll │ │ │ ├── Grpc.Core.Api.dll │ │ │ ├── Grpc.Core.dll │ │ │ ├── Protos.dll │ │ │ ├── Protos.pdb │ │ │ ├── SimpleGrpcServer.deps.json │ │ │ ├── SimpleGrpcServer.dll │ │ │ ├── SimpleGrpcServer.exe │ │ │ ├── SimpleGrpcServer.pdb │ │ │ ├── SimpleGrpcServer.runtimeconfig.json │ │ │ └── runtimes │ │ │ ├── linux-arm64 │ │ │ └── native │ │ │ │ └── libgrpc_csharp_ext.arm64.so │ │ │ ├── linux-x64 │ │ │ └── native │ │ │ │ └── libgrpc_csharp_ext.x64.so │ │ │ ├── osx-x64 │ │ │ └── native │ │ │ │ └── libgrpc_csharp_ext.x64.dylib │ │ │ ├── win-x64 │ │ │ └── native │ │ │ │ └── grpc_csharp_ext.x64.dll │ │ │ └── win-x86 │ │ │ └── native │ │ │ └── grpc_csharp_ext.x86.dll │ ├── SimpleNodeJSGrpcClient │ │ ├── README.md │ │ ├── SimpleNodeJSGrpcClient.njsproj │ │ ├── app.js │ │ ├── package-lock.json │ │ └── package.json │ └── SimplePythonGrpcClient │ │ ├── SavedStubGenerationCommand.txt │ │ ├── SimplePythonGrpcClient.py │ │ ├── SimplePythonGrpcClient.pyproj │ │ ├── requirements.txt │ │ ├── service_pb2.py │ │ └── service_pb2_grpc.py └── StreamingSample │ ├── CSHARP │ ├── PublishSample │ │ ├── Program.cs │ │ └── PublishSample.csproj │ └── SubscribeSample │ │ ├── Program.cs │ │ └── SubscribeSample.csproj │ ├── NodeJS │ ├── PublishNodeJsSample │ │ ├── PublishNodeJsSample.njsproj │ │ ├── README.md │ │ ├── app.js │ │ ├── package-lock.json │ │ └── package.json │ └── SubscribeNodeJsSample │ │ ├── README.md │ │ ├── SubscribeNodeJsSample.njsproj │ │ ├── app.js │ │ ├── package-lock.json │ │ └── package.json │ ├── Protos │ ├── Protos.csproj │ └── service.proto │ ├── Python │ ├── PublishPythonSample │ │ ├── PublishPythonSample.py │ │ ├── PublishPythonSample.pyproj │ │ ├── SubscribePythonSample.py │ │ ├── requirements.txt │ │ ├── service_pb2.py │ │ └── service_pb2_grpc.py │ └── SubscribePythonSample │ │ ├── SubscribePythonSample.py │ │ ├── SubscribePythonSample.pyproj │ │ ├── requirements.txt │ │ ├── service_pb2.py │ │ └── service_pb2_grpc.py │ └── StreamingRelayServer │ ├── Program.cs │ ├── RelayServiceImplementations.cs │ ├── StreamingRelayServer.csproj │ ├── StreamingRelayServer.sln │ └── Subscription.cs ├── GRPCNew └── SimpleRequestReplySample │ ├── Protos │ ├── Protos.csproj │ └── service.proto │ ├── SimpleGrpcClient │ ├── Program.cs │ └── SimpleGrpcClient.csproj │ └── SimpleGrpcServer │ ├── GreeterImplementation.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── SimpleGrpcServer.csproj │ └── SimpleGrpcServer.sln ├── GenericBlockChainTest └── JS │ ├── package.json │ └── src │ ├── Keys.txt │ ├── blockchain.ts │ ├── keygenerator.ts │ └── main.ts ├── GrpcRelayServer ├── NP.Grpc.ClientBuilder │ ├── ClientBuilder.cs │ └── NP.Grpc.ClientBuilder.csproj ├── NP.Grpc.RelayServerConfig │ ├── GrpcServerConfig.cs │ └── NP.Grpc.RelayServerConfig.csproj ├── NP.Grpc.RelayServerRunner │ ├── NP.Grpc.RelayServerRunner.csproj │ ├── NP.Grpc.RelayServerRunner.sln │ ├── NP.Grpc.RelayServerRunner_WithPythonClients.sln │ └── Program.cs └── Topics │ ├── Organization │ ├── GeneratedOrgProtoStubs │ │ ├── Generate.txt │ │ ├── GeneratedOrgProtoStubs.pyproj │ │ ├── Org_pb2.py │ │ ├── Org_pb2.pyi │ │ └── Org_pb2_grpc.py │ ├── OrgData │ │ ├── OrgData.csproj │ │ └── TopicsGetter.cs │ ├── OrgProtos │ │ ├── Org.proto │ │ └── OrgProtos.csproj │ ├── PublishOrgClient │ │ ├── Program.cs │ │ └── PublishOrgClient.csproj │ ├── PublishOrgPythonClient │ │ ├── PublishOrgPythonClient.py │ │ └── PublishOrgPythonClient.pyproj │ ├── SubscribeOrgClient │ │ ├── Program.cs │ │ └── SubscribeOrgClient.csproj │ └── SubscribeOrgPythonClient │ │ ├── SubscribeOrgPythonClient.py │ │ └── SubscribeOrgPythonClient.pyproj │ └── Person │ ├── PersonData │ ├── PersonData.csproj │ └── TopicsGetter.cs │ ├── PersonProtos │ ├── Person.proto │ └── PersonProtos.csproj │ ├── PublishPersonClient │ ├── Program.cs │ └── PublishPersonClient.csproj │ └── SubscribePersonClient │ ├── Program.cs │ └── SubscribePersonClient.csproj ├── LICENSE ├── PluginPackageSamples ├── PackagePlugins │ ├── PackagePluginsTest.sln │ └── Plugins │ │ ├── DoubleManipulationsPlugin │ │ ├── DoubleManipulationFactoryMethods.cs │ │ ├── DoubleManipulationsPlugin.cs │ │ └── NP.PackagePluginsTest.DoubleManipulationsPlugin.csproj │ │ └── StringManipulationsPlugin │ │ ├── NP.PackagePluginsTest.StringManipulationsPlugin.csproj │ │ ├── StringManipulationFactoryMethods.cs │ │ └── StringManipulationsPlugin.cs ├── PluginInterfaces │ ├── IDoubleManipulationsPlugin.cs │ ├── IStringManipulationsPlugin.cs │ └── NP.PackagePluginsTest.PluginInterfaces.csproj └── PluginsConsumer │ ├── NP.PluginsConsumer.sln │ ├── PluginsConsumer.csproj │ └── Program.cs ├── README.md ├── RxStreams ├── CreatingAndManipulatingRxStreams │ ├── CreatingAndManipulatingRxStreams.csproj │ ├── CreatingAndManipulatingRxStreams.sln │ ├── StreamFromAsyncEnumerable.cs │ ├── StreamFromCollection.cs │ ├── StreamFromEvent.cs │ ├── StreamFromNotifiableProperty.cs │ └── StreamFromSubject.cs ├── IntroToDynamicData │ ├── IntroToDynamicData.csproj │ ├── IntroToDynamicData.sln │ └── SimpleExamples.cs ├── IntroToObservableCache │ ├── InstrumentMarketData.cs │ ├── IntroToObservableCache.csproj │ ├── IntroToObservableCache.sln │ ├── SimpleObservableCacheExamples.cs │ ├── Symbol.cs │ ├── SymbolTradeGroup.cs │ ├── Trade.cs │ └── TradesGenerator.cs └── README.md └── Wasm ├── AvaInBrowserSample ├── AvaCode │ ├── .gitignore │ ├── AvaCode.Browser │ │ ├── AvaCode.Browser.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── runtimeconfig.template.json │ │ └── wwwroot │ │ │ ├── Logo.svg │ │ │ ├── app.css │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ └── main.js │ ├── AvaCode.Desktop │ │ ├── AvaCode.Desktop.csproj │ │ ├── Program.cs │ │ └── app.manifest │ ├── AvaCode │ │ ├── App.axaml │ │ ├── App.axaml.cs │ │ ├── Assets │ │ │ └── avalonia-logo.ico │ │ ├── AvaCode.csproj │ │ └── Views │ │ │ ├── MainView.axaml │ │ │ ├── MainView.axaml.cs │ │ │ ├── MainWindow.axaml │ │ │ └── MainWindow.axaml.cs │ └── Directory.Build.props ├── AvaInBrowserSample.sln └── AvaInBrowserSample │ ├── AvaInBrowserSample.csproj │ ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── Privacy.cshtml │ ├── Privacy.cshtml.cs │ ├── Shared │ │ ├── _Layout.cshtml │ │ ├── _Layout.cshtml.css │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ ├── css │ ├── app.css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ └── wasmRunner.js ├── DotNetCallingJSSample ├── DotNetCallingJSSample.sln ├── DotNetCallingJSSample │ ├── DotNetCallingJSSample.csproj │ ├── Pages │ │ ├── Error.cshtml │ │ ├── Error.cshtml.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── Privacy.cshtml │ │ ├── Privacy.cshtml.cs │ │ ├── Shared │ │ │ ├── _Layout.cshtml │ │ │ ├── _Layout.cshtml.css │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ │ ├── css │ │ └── site.css │ │ ├── favicon.ico │ │ ├── js │ │ └── site.js │ │ └── wasmRunner.js └── Greeter │ ├── Greeter.csproj │ ├── JSInteropCallsContainer.cs │ └── Properties │ ├── PublishProfiles │ └── FolderProfile.pubxml │ └── launchSettings.json ├── JSCallingDotNetSample ├── Greeter │ ├── Greeter.csproj │ ├── JSInteropCallsContainer.cs │ └── Properties │ │ ├── PublishProfiles │ │ └── FolderProfile.pubxml │ │ └── launchSettings.json ├── JSCallingDotNetSample.sln └── JSCallingDotNetSample │ ├── JSCallingDotNetSample.csproj │ ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── Privacy.cshtml │ ├── Privacy.cshtml.cs │ ├── Shared │ │ ├── _Layout.cshtml │ │ ├── _Layout.cshtml.css │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ └── wasmRunner.js └── JSCallingMainMethodSample ├── Greeter ├── Greeter.csproj ├── Program.cs └── Properties │ └── launchSettings.json ├── JSCallingCSharpMainMethodSample.sln ├── JSCallingCSharpMainMethodSample ├── JSCallingCSharpMainMethodSample.csproj ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── Privacy.cshtml │ ├── Privacy.cshtml.cs │ ├── Shared │ │ ├── _Layout.cshtml │ │ ├── _Layout.cshtml.css │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.Development.json ├── appsettings.json └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ └── wasmRunner.js └── JSCallingMainMethodSample.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/.gitmodules -------------------------------------------------------------------------------- /AspGrpc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/.gitignore -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite.slnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite.slnf -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/AWebProsSite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/AWebProsSite.csproj -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/AWebProsSite.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/AWebProsSite.sln -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/Pages/AspGrpcTests/AvaGripTestContainerPage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/Pages/AspGrpcTests/AvaGripTestContainerPage.cshtml -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/Pages/AspGrpcTests/AvaGripTestContainerPage.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/Pages/AspGrpcTests/AvaGripTestContainerPage.cshtml.cs -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/Pages/AspGrpcTests/AvaloniaGrpcTestPage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/Pages/AspGrpcTests/AvaloniaGrpcTestPage.cshtml -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/Pages/AspGrpcTests/AvaloniaGrpcTestPage.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/Pages/AspGrpcTests/AvaloniaGrpcTestPage.cshtml.cs -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/Pages/AspGrpcTests/HtmlGrpcTestPage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/Pages/AspGrpcTests/HtmlGrpcTestPage.cshtml -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/Pages/AspGrpcTests/HtmlGrpcTestPage.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/Pages/AspGrpcTests/HtmlGrpcTestPage.cshtml.cs -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/Pages/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/Pages/Contact.cshtml -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/Pages/Contact.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/Pages/Contact.cshtml.cs -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/Pages/Error.cshtml -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/Pages/Index.cshtml -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/Pages/OnLineSamples.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/Pages/OnLineSamples.cshtml -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/Pages/OnLineSamples.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/Pages/OnLineSamples.cshtml.cs -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/Pages/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/Pages/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/Program.cs -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/Properties/launchSettings.json -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/appsettings.Development.json -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/appsettings.json -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/webpack.config.js -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/Logo.svg -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/app.css -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/assets/Android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/assets/Android.png -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/assets/IPhoneIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/assets/IPhoneIcon.png -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/assets/LinuxIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/assets/LinuxIcon.png -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/assets/MacIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/assets/MacIcon.png -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/assets/WindowsIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/assets/WindowsIcon.png -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/css/site.css -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/dist/Greeter_grpc_web_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/dist/Greeter_grpc_web_pb.js -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/dist/Greeter_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/dist/Greeter_pb.js -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/dist/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/dist/client.js -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/dist/jquery.js -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/dist/jquery.min.js -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/dist/jquery.min.map -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/dist/mainForHtmlJavaScrip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/dist/mainForHtmlJavaScrip.js -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/favicon.ico -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/js/site.js -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/jquery/dist/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/jquery/dist/jquery.slim.js -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/jquery/dist/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/jquery/dist/jquery.slim.min.js -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/lib/jquery/dist/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/lib/jquery/dist/jquery.slim.min.map -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/mainForAvalonia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/mainForAvalonia.js -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/package-lock.json -------------------------------------------------------------------------------- /AspGrpc/AWebProsSite/wwwroot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AWebProsSite/wwwroot/package.json -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServer/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServer/.config/dotnet-tools.json -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServer/AspGrpcServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServer/AspGrpcServer.csproj -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServer/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServer/Pages/Error.cshtml -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServer/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServer/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServer/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServer/Pages/Index.cshtml -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServer/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServer/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServer/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServer/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServer/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServer/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServer/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServer/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServer/Pages/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServer/Pages/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServer/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServer/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServer/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServer/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServer/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServer/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServer/Program.cs -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServer/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServer/Properties/launchSettings.json -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServer/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServer/appsettings.Development.json -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServer/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServer/appsettings.json -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServer/wwwroot/Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServer/wwwroot/Logo.svg -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServer/wwwroot/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServer/wwwroot/app.css -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServer/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServer/wwwroot/css/site.css -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServer/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServer/wwwroot/favicon.ico -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServer/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServer/wwwroot/js/site.js -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServer/wwwroot/mainForAvalonia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServer/wwwroot/mainForAvalonia.js -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServerWithRazorClient/AspGrpcServerWithRazorClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServerWithRazorClient/AspGrpcServerWithRazorClient.csproj -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServerWithRazorClient/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServerWithRazorClient/Pages/Error.cshtml -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServerWithRazorClient/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServerWithRazorClient/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServerWithRazorClient/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServerWithRazorClient/Pages/Index.cshtml -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServerWithRazorClient/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServerWithRazorClient/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServerWithRazorClient/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServerWithRazorClient/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServerWithRazorClient/Pages/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServerWithRazorClient/Pages/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServerWithRazorClient/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServerWithRazorClient/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServerWithRazorClient/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServerWithRazorClient/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServerWithRazorClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServerWithRazorClient/Program.cs -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServerWithRazorClient/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServerWithRazorClient/Properties/launchSettings.json -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServerWithRazorClient/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServerWithRazorClient/appsettings.Development.json -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServerWithRazorClient/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServerWithRazorClient/appsettings.json -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServerWithRazorClient/stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServerWithRazorClient/stats.json -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServerWithRazorClient/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServerWithRazorClient/webpack.config.js -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServerWithRazorClient/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServerWithRazorClient/wwwroot/css/site.css -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServerWithRazorClient/wwwroot/dist/Greeter_grpc_web_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServerWithRazorClient/wwwroot/dist/Greeter_grpc_web_pb.js -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServerWithRazorClient/wwwroot/dist/Greeter_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServerWithRazorClient/wwwroot/dist/Greeter_pb.js -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServerWithRazorClient/wwwroot/dist/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServerWithRazorClient/wwwroot/dist/client.js -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServerWithRazorClient/wwwroot/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServerWithRazorClient/wwwroot/dist/jquery.js -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServerWithRazorClient/wwwroot/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServerWithRazorClient/wwwroot/dist/jquery.min.js -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServerWithRazorClient/wwwroot/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServerWithRazorClient/wwwroot/dist/jquery.min.map -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServerWithRazorClient/wwwroot/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServerWithRazorClient/wwwroot/dist/main.js -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServerWithRazorClient/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServerWithRazorClient/wwwroot/favicon.ico -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServerWithRazorClient/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServerWithRazorClient/wwwroot/js/site.js -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServerWithRazorClient/wwwroot/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServerWithRazorClient/wwwroot/package-lock.json -------------------------------------------------------------------------------- /AspGrpc/AspGrpcServerWithRazorClient/wwwroot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcServerWithRazorClient/wwwroot/package.json -------------------------------------------------------------------------------- /AspGrpc/AspGrpcTests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcTests.sln -------------------------------------------------------------------------------- /AspGrpc/AspGrpcWithAvaloniaClients.slnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcWithAvaloniaClients.slnf -------------------------------------------------------------------------------- /AspGrpc/AspGrpcWithRazorClient.slnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AspGrpcWithRazorClient.slnf -------------------------------------------------------------------------------- /AspGrpc/AvaGrpcClient/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AvaGrpcClient/.gitignore -------------------------------------------------------------------------------- /AspGrpc/AvaGrpcClient/AvaGrpcClient.Browser/AvaGrpcClient.Browser.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AvaGrpcClient/AvaGrpcClient.Browser/AvaGrpcClient.Browser.csproj -------------------------------------------------------------------------------- /AspGrpc/AvaGrpcClient/AvaGrpcClient.Browser/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AvaGrpcClient/AvaGrpcClient.Browser/Program.cs -------------------------------------------------------------------------------- /AspGrpc/AvaGrpcClient/AvaGrpcClient.Browser/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AvaGrpcClient/AvaGrpcClient.Browser/Properties/launchSettings.json -------------------------------------------------------------------------------- /AspGrpc/AvaGrpcClient/AvaGrpcClient.Browser/runtimeconfig.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AvaGrpcClient/AvaGrpcClient.Browser/runtimeconfig.template.json -------------------------------------------------------------------------------- /AspGrpc/AvaGrpcClient/AvaGrpcClient.Browser/wwwroot/Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AvaGrpcClient/AvaGrpcClient.Browser/wwwroot/Logo.svg -------------------------------------------------------------------------------- /AspGrpc/AvaGrpcClient/AvaGrpcClient.Browser/wwwroot/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AvaGrpcClient/AvaGrpcClient.Browser/wwwroot/app.css -------------------------------------------------------------------------------- /AspGrpc/AvaGrpcClient/AvaGrpcClient.Browser/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AvaGrpcClient/AvaGrpcClient.Browser/wwwroot/favicon.ico -------------------------------------------------------------------------------- /AspGrpc/AvaGrpcClient/AvaGrpcClient.Browser/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AvaGrpcClient/AvaGrpcClient.Browser/wwwroot/index.html -------------------------------------------------------------------------------- /AspGrpc/AvaGrpcClient/AvaGrpcClient.Browser/wwwroot/mainForAvalonia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AvaGrpcClient/AvaGrpcClient.Browser/wwwroot/mainForAvalonia.js -------------------------------------------------------------------------------- /AspGrpc/AvaGrpcClient/AvaGrpcClient.Desktop/AvaGrpcClient.Desktop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AvaGrpcClient/AvaGrpcClient.Desktop/AvaGrpcClient.Desktop.csproj -------------------------------------------------------------------------------- /AspGrpc/AvaGrpcClient/AvaGrpcClient.Desktop/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AvaGrpcClient/AvaGrpcClient.Desktop/Program.cs -------------------------------------------------------------------------------- /AspGrpc/AvaGrpcClient/AvaGrpcClient.Desktop/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AvaGrpcClient/AvaGrpcClient.Desktop/app.manifest -------------------------------------------------------------------------------- /AspGrpc/AvaGrpcClient/AvaGrpcClient.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AvaGrpcClient/AvaGrpcClient.sln -------------------------------------------------------------------------------- /AspGrpc/AvaGrpcClient/AvaGrpcClient/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AvaGrpcClient/AvaGrpcClient/App.axaml -------------------------------------------------------------------------------- /AspGrpc/AvaGrpcClient/AvaGrpcClient/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AvaGrpcClient/AvaGrpcClient/App.axaml.cs -------------------------------------------------------------------------------- /AspGrpc/AvaGrpcClient/AvaGrpcClient/Assets/avalonia-logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AvaGrpcClient/AvaGrpcClient/Assets/avalonia-logo.ico -------------------------------------------------------------------------------- /AspGrpc/AvaGrpcClient/AvaGrpcClient/AvaGrpcClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AvaGrpcClient/AvaGrpcClient/AvaGrpcClient.csproj -------------------------------------------------------------------------------- /AspGrpc/AvaGrpcClient/AvaGrpcClient/CommonData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AvaGrpcClient/AvaGrpcClient/CommonData.cs -------------------------------------------------------------------------------- /AspGrpc/AvaGrpcClient/AvaGrpcClient/Views/MainView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AvaGrpcClient/AvaGrpcClient/Views/MainView.axaml -------------------------------------------------------------------------------- /AspGrpc/AvaGrpcClient/AvaGrpcClient/Views/MainView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AvaGrpcClient/AvaGrpcClient/Views/MainView.axaml.cs -------------------------------------------------------------------------------- /AspGrpc/AvaGrpcClient/AvaGrpcClient/Views/MainWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AvaGrpcClient/AvaGrpcClient/Views/MainWindow.axaml -------------------------------------------------------------------------------- /AspGrpc/AvaGrpcClient/AvaGrpcClient/Views/MainWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AvaGrpcClient/AvaGrpcClient/Views/MainWindow.axaml.cs -------------------------------------------------------------------------------- /AspGrpc/AvaGrpcClient/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/AvaGrpcClient/Directory.Build.props -------------------------------------------------------------------------------- /AspGrpc/ConsoleTestClient/ConsoleTestClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/ConsoleTestClient/ConsoleTestClient.csproj -------------------------------------------------------------------------------- /AspGrpc/ConsoleTestClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/ConsoleTestClient/Program.cs -------------------------------------------------------------------------------- /AspGrpc/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/Directory.Build.props -------------------------------------------------------------------------------- /AspGrpc/GreeterImpl/GreeterImpl.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/GreeterImpl/GreeterImpl.csproj -------------------------------------------------------------------------------- /AspGrpc/GreeterImpl/GreeterImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/GreeterImpl/GreeterImplementation.cs -------------------------------------------------------------------------------- /AspGrpc/GrpcKestrelOnlyImplementation.slnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/GrpcKestrelOnlyImplementation.slnf -------------------------------------------------------------------------------- /AspGrpc/GrpcServerProcess/GrpcServerProcess.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/GrpcServerProcess/GrpcServerProcess.csproj -------------------------------------------------------------------------------- /AspGrpc/GrpcServerProcess/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/GrpcServerProcess/Program.cs -------------------------------------------------------------------------------- /AspGrpc/GrpcServerProcess/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/GrpcServerProcess/Properties/launchSettings.json -------------------------------------------------------------------------------- /AspGrpc/GrpcServerProcess/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/GrpcServerProcess/appsettings.Development.json -------------------------------------------------------------------------------- /AspGrpc/GrpcServerProcess/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/GrpcServerProcess/appsettings.json -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite.slnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite.slnf -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/MyTestsWebSite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/MyTestsWebSite.csproj -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/Pages/AspGrpcTests/AvaloniaGrpcTestPage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/Pages/AspGrpcTests/AvaloniaGrpcTestPage.cshtml -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/Pages/AspGrpcTests/AvaloniaGrpcTestPage.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/Pages/AspGrpcTests/AvaloniaGrpcTestPage.cshtml.cs -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/Pages/AspGrpcTests/HtmlGrpcTestPage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/Pages/AspGrpcTests/HtmlGrpcTestPage.cshtml -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/Pages/AspGrpcTests/HtmlGrpcTestPage.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/Pages/AspGrpcTests/HtmlGrpcTestPage.cshtml.cs -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/Pages/DataGridTests/SimpleDataGroupingTestPage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/Pages/DataGridTests/SimpleDataGroupingTestPage.cshtml -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/Pages/DataGridTests/SimpleDataGroupingTestPage.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/Pages/DataGridTests/SimpleDataGroupingTestPage.cshtml.cs -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/Pages/Error.cshtml -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/Pages/Index.cshtml -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/Pages/OnLineSamples.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/Pages/OnLineSamples.cshtml -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/Pages/OnLineSamples.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/Pages/OnLineSamples.cshtml.cs -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/Pages/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/Pages/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/Program.cs -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/Properties/launchSettings.json -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/appsettings.Development.json -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/appsettings.json -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/webpack.config.js -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/Logo.svg -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/app.css -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/assets/Android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/assets/Android.png -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/assets/IPhoneIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/assets/IPhoneIcon.png -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/assets/LinuxIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/assets/LinuxIcon.png -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/assets/MacIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/assets/MacIcon.png -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/assets/WindowsIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/assets/WindowsIcon.png -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/css/site.css -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/dist/Greeter_grpc_web_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/dist/Greeter_grpc_web_pb.js -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/dist/Greeter_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/dist/Greeter_pb.js -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/dist/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/dist/client.js -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/dist/jquery.js -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/dist/jquery.min.js -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/dist/jquery.min.map -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/dist/mainForHtmlJavaScrip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/dist/mainForHtmlJavaScrip.js -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/favicon.ico -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/js/site.js -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/mainForAvalonia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/mainForAvalonia.js -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/mainForDataGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/mainForDataGrid.js -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/package-lock.json -------------------------------------------------------------------------------- /AspGrpc/MyTestsWebSite/wwwroot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/MyTestsWebSite/wwwroot/package.json -------------------------------------------------------------------------------- /AspGrpc/Protos/Greeter.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/Protos/Greeter.proto -------------------------------------------------------------------------------- /AspGrpc/Protos/Protos.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/Protos/Protos.csproj -------------------------------------------------------------------------------- /AspGrpc/Protos/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/AspGrpc/Protos/README.txt -------------------------------------------------------------------------------- /DependencyInjectionSamples/AutofacAdapterDynamicLoadingTests/AutofacAdapterDynamicLoadingTests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/AutofacAdapterDynamicLoadingTests/AutofacAdapterDynamicLoadingTests.sln -------------------------------------------------------------------------------- /DependencyInjectionSamples/AutofacAdapterDynamicLoadingTests/NP.Samples.AutofacAdapterDynamicLoadingTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/AutofacAdapterDynamicLoadingTests/NP.Samples.AutofacAdapterDynamicLoadingTests.csproj -------------------------------------------------------------------------------- /DependencyInjectionSamples/AutofacAdapterDynamicLoadingTests/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/AutofacAdapterDynamicLoadingTests/Program.cs -------------------------------------------------------------------------------- /DependencyInjectionSamples/AutofacAdapterTests/AutofacAdapterTests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/AutofacAdapterTests/AutofacAdapterTests.sln -------------------------------------------------------------------------------- /DependencyInjectionSamples/AutofacAdapterTests/NP.Samples.AutofacAdapterTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/AutofacAdapterTests/NP.Samples.AutofacAdapterTests.csproj -------------------------------------------------------------------------------- /DependencyInjectionSamples/AutofacAdapterTests/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/AutofacAdapterTests/Program.cs -------------------------------------------------------------------------------- /DependencyInjectionSamples/Implementations/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/Implementations/Address.cs -------------------------------------------------------------------------------- /DependencyInjectionSamples/Implementations/AnotherOrg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/Implementations/AnotherOrg.cs -------------------------------------------------------------------------------- /DependencyInjectionSamples/Implementations/AnotherPerson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/Implementations/AnotherPerson.cs -------------------------------------------------------------------------------- /DependencyInjectionSamples/Implementations/ConsoleLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/Implementations/ConsoleLog.cs -------------------------------------------------------------------------------- /DependencyInjectionSamples/Implementations/FactoryMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/Implementations/FactoryMethods.cs -------------------------------------------------------------------------------- /DependencyInjectionSamples/Implementations/FileLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/Implementations/FileLog.cs -------------------------------------------------------------------------------- /DependencyInjectionSamples/Implementations/NP.Samples.Implementations.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/Implementations/NP.Samples.Implementations.csproj -------------------------------------------------------------------------------- /DependencyInjectionSamples/Implementations/Org.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/Implementations/Org.cs -------------------------------------------------------------------------------- /DependencyInjectionSamples/Implementations/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/Implementations/Person.cs -------------------------------------------------------------------------------- /DependencyInjectionSamples/Interfaces/IAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/Interfaces/IAddress.cs -------------------------------------------------------------------------------- /DependencyInjectionSamples/Interfaces/ILog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/Interfaces/ILog.cs -------------------------------------------------------------------------------- /DependencyInjectionSamples/Interfaces/IOrg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/Interfaces/IOrg.cs -------------------------------------------------------------------------------- /DependencyInjectionSamples/Interfaces/IOrgGettersOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/Interfaces/IOrgGettersOnly.cs -------------------------------------------------------------------------------- /DependencyInjectionSamples/Interfaces/IPerson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/Interfaces/IPerson.cs -------------------------------------------------------------------------------- /DependencyInjectionSamples/Interfaces/IPersonGettersOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/Interfaces/IPersonGettersOnly.cs -------------------------------------------------------------------------------- /DependencyInjectionSamples/Interfaces/NP.Samples.Interfaces.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/Interfaces/NP.Samples.Interfaces.csproj -------------------------------------------------------------------------------- /DependencyInjectionSamples/IoCyDynamicLoadingTests/IoCyDynamicLoadingTests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/IoCyDynamicLoadingTests/IoCyDynamicLoadingTests.sln -------------------------------------------------------------------------------- /DependencyInjectionSamples/IoCyDynamicLoadingTests/NP.Samples.IoCyDynamicLoadingTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/IoCyDynamicLoadingTests/NP.Samples.IoCyDynamicLoadingTests.csproj -------------------------------------------------------------------------------- /DependencyInjectionSamples/IoCyDynamicLoadingTests/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/IoCyDynamicLoadingTests/Program.cs -------------------------------------------------------------------------------- /DependencyInjectionSamples/IoCyTests/IoCyTests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/IoCyTests/IoCyTests.sln -------------------------------------------------------------------------------- /DependencyInjectionSamples/IoCyTests/NP.Samples.IoCyTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/IoCyTests/NP.Samples.IoCyTests.csproj -------------------------------------------------------------------------------- /DependencyInjectionSamples/IoCyTests/OrgContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/IoCyTests/OrgContainer.cs -------------------------------------------------------------------------------- /DependencyInjectionSamples/IoCyTests/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/IoCyTests/Program.cs -------------------------------------------------------------------------------- /DependencyInjectionSamples/PluginsTest/MainProgram/MainProgram.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/PluginsTest/MainProgram/MainProgram.csproj -------------------------------------------------------------------------------- /DependencyInjectionSamples/PluginsTest/MainProgram/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/PluginsTest/MainProgram/Program.cs -------------------------------------------------------------------------------- /DependencyInjectionSamples/PluginsTest/PluginInterfaces/IDoubleManipulationsPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/PluginsTest/PluginInterfaces/IDoubleManipulationsPlugin.cs -------------------------------------------------------------------------------- /DependencyInjectionSamples/PluginsTest/PluginInterfaces/IStringManipulationsPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/PluginsTest/PluginInterfaces/IStringManipulationsPlugin.cs -------------------------------------------------------------------------------- /DependencyInjectionSamples/PluginsTest/PluginInterfaces/PluginInterfaces.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/PluginsTest/PluginInterfaces/PluginInterfaces.csproj -------------------------------------------------------------------------------- /DependencyInjectionSamples/PluginsTest/Plugins/DoubleManipulationsPlugin/DoubleManipulationFactoryMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/PluginsTest/Plugins/DoubleManipulationsPlugin/DoubleManipulationFactoryMethods.cs -------------------------------------------------------------------------------- /DependencyInjectionSamples/PluginsTest/Plugins/DoubleManipulationsPlugin/DoubleManipulationsPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/PluginsTest/Plugins/DoubleManipulationsPlugin/DoubleManipulationsPlugin.cs -------------------------------------------------------------------------------- /DependencyInjectionSamples/PluginsTest/Plugins/DoubleManipulationsPlugin/DoubleManipulationsPlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/PluginsTest/Plugins/DoubleManipulationsPlugin/DoubleManipulationsPlugin.csproj -------------------------------------------------------------------------------- /DependencyInjectionSamples/PluginsTest/PluginsTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/PluginsTest/PluginsTest.sln -------------------------------------------------------------------------------- /DependencyInjectionSamples/PluginsTest/StringManipulationsPlugin/StringManipulationFactoryMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/PluginsTest/StringManipulationsPlugin/StringManipulationFactoryMethods.cs -------------------------------------------------------------------------------- /DependencyInjectionSamples/PluginsTest/StringManipulationsPlugin/StringManipulationsPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/PluginsTest/StringManipulationsPlugin/StringManipulationsPlugin.cs -------------------------------------------------------------------------------- /DependencyInjectionSamples/PluginsTest/StringManipulationsPlugin/StringManipulationsPlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/DependencyInjectionSamples/PluginsTest/StringManipulationsPlugin/StringManipulationsPlugin.csproj -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Expressions/BlockExpressionsExamples/NP.Samples.Expressions.BlockExpressionsExamples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Expressions/BlockExpressionsExamples/NP.Samples.Expressions.BlockExpressionsExamples.csproj -------------------------------------------------------------------------------- /Expressions/BlockExpressionsExamples/NP.Samples.Expressions.BlockExpressionsExamples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Expressions/BlockExpressionsExamples/NP.Samples.Expressions.BlockExpressionsExamples.sln -------------------------------------------------------------------------------- /Expressions/BlockExpressionsExamples/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Expressions/BlockExpressionsExamples/Program.cs -------------------------------------------------------------------------------- /Expressions/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Expressions/Readme.md -------------------------------------------------------------------------------- /Expressions/SimpleExpressionsExamples/NP.Samples.Expressions.SimpleExpressionsExamples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Expressions/SimpleExpressionsExamples/NP.Samples.Expressions.SimpleExpressionsExamples.csproj -------------------------------------------------------------------------------- /Expressions/SimpleExpressionsExamples/NP.Samples.Expressions.SimpleExpressionsExamples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Expressions/SimpleExpressionsExamples/NP.Samples.Expressions.SimpleExpressionsExamples.sln -------------------------------------------------------------------------------- /Expressions/SimpleExpressionsExamples/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Expressions/SimpleExpressionsExamples/Program.cs -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/Protos/Protos.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/Protos/Protos.csproj -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/Protos/service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/Protos/service.proto -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcClient/Program.cs -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcClient/SimpleGrpcClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcClient/SimpleGrpcClient.csproj -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcClient/bin/Release/net6.0/Google.Protobuf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcClient/bin/Release/net6.0/Google.Protobuf.dll -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcClient/bin/Release/net6.0/Grpc.Core.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcClient/bin/Release/net6.0/Grpc.Core.Api.dll -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcClient/bin/Release/net6.0/Grpc.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcClient/bin/Release/net6.0/Grpc.Core.dll -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcClient/bin/Release/net6.0/Protos.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcClient/bin/Release/net6.0/Protos.dll -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcClient/bin/Release/net6.0/Protos.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcClient/bin/Release/net6.0/Protos.pdb -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcClient/bin/Release/net6.0/SimpleGrpcClient.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcClient/bin/Release/net6.0/SimpleGrpcClient.deps.json -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcClient/bin/Release/net6.0/SimpleGrpcClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcClient/bin/Release/net6.0/SimpleGrpcClient.dll -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcClient/bin/Release/net6.0/SimpleGrpcClient.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcClient/bin/Release/net6.0/SimpleGrpcClient.exe -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcClient/bin/Release/net6.0/SimpleGrpcClient.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcClient/bin/Release/net6.0/SimpleGrpcClient.pdb -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcClient/bin/Release/net6.0/SimpleGrpcClient.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcClient/bin/Release/net6.0/SimpleGrpcClient.runtimeconfig.json -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcClient/bin/Release/net6.0/runtimes/linux-arm64/native/libgrpc_csharp_ext.arm64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcClient/bin/Release/net6.0/runtimes/linux-arm64/native/libgrpc_csharp_ext.arm64.so -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcClient/bin/Release/net6.0/runtimes/linux-x64/native/libgrpc_csharp_ext.x64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcClient/bin/Release/net6.0/runtimes/linux-x64/native/libgrpc_csharp_ext.x64.so -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcClient/bin/Release/net6.0/runtimes/osx-x64/native/libgrpc_csharp_ext.x64.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcClient/bin/Release/net6.0/runtimes/osx-x64/native/libgrpc_csharp_ext.x64.dylib -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcClient/bin/Release/net6.0/runtimes/win-x64/native/grpc_csharp_ext.x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcClient/bin/Release/net6.0/runtimes/win-x64/native/grpc_csharp_ext.x64.dll -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcClient/bin/Release/net6.0/runtimes/win-x86/native/grpc_csharp_ext.x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcClient/bin/Release/net6.0/runtimes/win-x86/native/grpc_csharp_ext.x86.dll -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcServer/GreeterImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcServer/GreeterImplementation.cs -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcServer/Program.cs -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcServer/SimpleGrpcServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcServer/SimpleGrpcServer.csproj -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcServer/SimpleGrpcServer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcServer/SimpleGrpcServer.sln -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcServer/bin/Release/net6.0/Google.Protobuf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcServer/bin/Release/net6.0/Google.Protobuf.dll -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcServer/bin/Release/net6.0/Grpc.Core.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcServer/bin/Release/net6.0/Grpc.Core.Api.dll -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcServer/bin/Release/net6.0/Grpc.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcServer/bin/Release/net6.0/Grpc.Core.dll -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcServer/bin/Release/net6.0/Protos.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcServer/bin/Release/net6.0/Protos.dll -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcServer/bin/Release/net6.0/Protos.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcServer/bin/Release/net6.0/Protos.pdb -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcServer/bin/Release/net6.0/SimpleGrpcServer.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcServer/bin/Release/net6.0/SimpleGrpcServer.deps.json -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcServer/bin/Release/net6.0/SimpleGrpcServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcServer/bin/Release/net6.0/SimpleGrpcServer.dll -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcServer/bin/Release/net6.0/SimpleGrpcServer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcServer/bin/Release/net6.0/SimpleGrpcServer.exe -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcServer/bin/Release/net6.0/SimpleGrpcServer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcServer/bin/Release/net6.0/SimpleGrpcServer.pdb -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcServer/bin/Release/net6.0/SimpleGrpcServer.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcServer/bin/Release/net6.0/SimpleGrpcServer.runtimeconfig.json -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcServer/bin/Release/net6.0/runtimes/linux-arm64/native/libgrpc_csharp_ext.arm64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcServer/bin/Release/net6.0/runtimes/linux-arm64/native/libgrpc_csharp_ext.arm64.so -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcServer/bin/Release/net6.0/runtimes/linux-x64/native/libgrpc_csharp_ext.x64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcServer/bin/Release/net6.0/runtimes/linux-x64/native/libgrpc_csharp_ext.x64.so -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcServer/bin/Release/net6.0/runtimes/osx-x64/native/libgrpc_csharp_ext.x64.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcServer/bin/Release/net6.0/runtimes/osx-x64/native/libgrpc_csharp_ext.x64.dylib -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcServer/bin/Release/net6.0/runtimes/win-x64/native/grpc_csharp_ext.x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcServer/bin/Release/net6.0/runtimes/win-x64/native/grpc_csharp_ext.x64.dll -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleGrpcServer/bin/Release/net6.0/runtimes/win-x86/native/grpc_csharp_ext.x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleGrpcServer/bin/Release/net6.0/runtimes/win-x86/native/grpc_csharp_ext.x86.dll -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleNodeJSGrpcClient/README.md: -------------------------------------------------------------------------------- 1 | # NodejsClient 2 | 3 | 4 | -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleNodeJSGrpcClient/SimpleNodeJSGrpcClient.njsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleNodeJSGrpcClient/SimpleNodeJSGrpcClient.njsproj -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleNodeJSGrpcClient/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleNodeJSGrpcClient/app.js -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleNodeJSGrpcClient/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleNodeJSGrpcClient/package-lock.json -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimpleNodeJSGrpcClient/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimpleNodeJSGrpcClient/package.json -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimplePythonGrpcClient/SavedStubGenerationCommand.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimplePythonGrpcClient/SavedStubGenerationCommand.txt -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimplePythonGrpcClient/SimplePythonGrpcClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimplePythonGrpcClient/SimplePythonGrpcClient.py -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimplePythonGrpcClient/SimplePythonGrpcClient.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimplePythonGrpcClient/SimplePythonGrpcClient.pyproj -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimplePythonGrpcClient/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimplePythonGrpcClient/requirements.txt -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimplePythonGrpcClient/service_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimplePythonGrpcClient/service_pb2.py -------------------------------------------------------------------------------- /GRPC/SimpleRequestReplySample/SimplePythonGrpcClient/service_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/SimpleRequestReplySample/SimplePythonGrpcClient/service_pb2_grpc.py -------------------------------------------------------------------------------- /GRPC/StreamingSample/CSHARP/PublishSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/StreamingSample/CSHARP/PublishSample/Program.cs -------------------------------------------------------------------------------- /GRPC/StreamingSample/CSHARP/PublishSample/PublishSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/StreamingSample/CSHARP/PublishSample/PublishSample.csproj -------------------------------------------------------------------------------- /GRPC/StreamingSample/CSHARP/SubscribeSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/StreamingSample/CSHARP/SubscribeSample/Program.cs -------------------------------------------------------------------------------- /GRPC/StreamingSample/CSHARP/SubscribeSample/SubscribeSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/StreamingSample/CSHARP/SubscribeSample/SubscribeSample.csproj -------------------------------------------------------------------------------- /GRPC/StreamingSample/NodeJS/PublishNodeJsSample/PublishNodeJsSample.njsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/StreamingSample/NodeJS/PublishNodeJsSample/PublishNodeJsSample.njsproj -------------------------------------------------------------------------------- /GRPC/StreamingSample/NodeJS/PublishNodeJsSample/README.md: -------------------------------------------------------------------------------- 1 | # PublishNodeJsApp 2 | 3 | 4 | -------------------------------------------------------------------------------- /GRPC/StreamingSample/NodeJS/PublishNodeJsSample/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/StreamingSample/NodeJS/PublishNodeJsSample/app.js -------------------------------------------------------------------------------- /GRPC/StreamingSample/NodeJS/PublishNodeJsSample/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/StreamingSample/NodeJS/PublishNodeJsSample/package-lock.json -------------------------------------------------------------------------------- /GRPC/StreamingSample/NodeJS/PublishNodeJsSample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/StreamingSample/NodeJS/PublishNodeJsSample/package.json -------------------------------------------------------------------------------- /GRPC/StreamingSample/NodeJS/SubscribeNodeJsSample/README.md: -------------------------------------------------------------------------------- 1 | # PublishNodeJsApp 2 | 3 | 4 | -------------------------------------------------------------------------------- /GRPC/StreamingSample/NodeJS/SubscribeNodeJsSample/SubscribeNodeJsSample.njsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/StreamingSample/NodeJS/SubscribeNodeJsSample/SubscribeNodeJsSample.njsproj -------------------------------------------------------------------------------- /GRPC/StreamingSample/NodeJS/SubscribeNodeJsSample/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/StreamingSample/NodeJS/SubscribeNodeJsSample/app.js -------------------------------------------------------------------------------- /GRPC/StreamingSample/NodeJS/SubscribeNodeJsSample/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/StreamingSample/NodeJS/SubscribeNodeJsSample/package-lock.json -------------------------------------------------------------------------------- /GRPC/StreamingSample/NodeJS/SubscribeNodeJsSample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/StreamingSample/NodeJS/SubscribeNodeJsSample/package.json -------------------------------------------------------------------------------- /GRPC/StreamingSample/Protos/Protos.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/StreamingSample/Protos/Protos.csproj -------------------------------------------------------------------------------- /GRPC/StreamingSample/Protos/service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/StreamingSample/Protos/service.proto -------------------------------------------------------------------------------- /GRPC/StreamingSample/Python/PublishPythonSample/PublishPythonSample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/StreamingSample/Python/PublishPythonSample/PublishPythonSample.py -------------------------------------------------------------------------------- /GRPC/StreamingSample/Python/PublishPythonSample/PublishPythonSample.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/StreamingSample/Python/PublishPythonSample/PublishPythonSample.pyproj -------------------------------------------------------------------------------- /GRPC/StreamingSample/Python/PublishPythonSample/SubscribePythonSample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/StreamingSample/Python/PublishPythonSample/SubscribePythonSample.py -------------------------------------------------------------------------------- /GRPC/StreamingSample/Python/PublishPythonSample/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/StreamingSample/Python/PublishPythonSample/requirements.txt -------------------------------------------------------------------------------- /GRPC/StreamingSample/Python/PublishPythonSample/service_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/StreamingSample/Python/PublishPythonSample/service_pb2.py -------------------------------------------------------------------------------- /GRPC/StreamingSample/Python/PublishPythonSample/service_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/StreamingSample/Python/PublishPythonSample/service_pb2_grpc.py -------------------------------------------------------------------------------- /GRPC/StreamingSample/Python/SubscribePythonSample/SubscribePythonSample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/StreamingSample/Python/SubscribePythonSample/SubscribePythonSample.py -------------------------------------------------------------------------------- /GRPC/StreamingSample/Python/SubscribePythonSample/SubscribePythonSample.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/StreamingSample/Python/SubscribePythonSample/SubscribePythonSample.pyproj -------------------------------------------------------------------------------- /GRPC/StreamingSample/Python/SubscribePythonSample/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/StreamingSample/Python/SubscribePythonSample/requirements.txt -------------------------------------------------------------------------------- /GRPC/StreamingSample/Python/SubscribePythonSample/service_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/StreamingSample/Python/SubscribePythonSample/service_pb2.py -------------------------------------------------------------------------------- /GRPC/StreamingSample/Python/SubscribePythonSample/service_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/StreamingSample/Python/SubscribePythonSample/service_pb2_grpc.py -------------------------------------------------------------------------------- /GRPC/StreamingSample/StreamingRelayServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/StreamingSample/StreamingRelayServer/Program.cs -------------------------------------------------------------------------------- /GRPC/StreamingSample/StreamingRelayServer/RelayServiceImplementations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/StreamingSample/StreamingRelayServer/RelayServiceImplementations.cs -------------------------------------------------------------------------------- /GRPC/StreamingSample/StreamingRelayServer/StreamingRelayServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/StreamingSample/StreamingRelayServer/StreamingRelayServer.csproj -------------------------------------------------------------------------------- /GRPC/StreamingSample/StreamingRelayServer/StreamingRelayServer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/StreamingSample/StreamingRelayServer/StreamingRelayServer.sln -------------------------------------------------------------------------------- /GRPC/StreamingSample/StreamingRelayServer/Subscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPC/StreamingSample/StreamingRelayServer/Subscription.cs -------------------------------------------------------------------------------- /GRPCNew/SimpleRequestReplySample/Protos/Protos.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPCNew/SimpleRequestReplySample/Protos/Protos.csproj -------------------------------------------------------------------------------- /GRPCNew/SimpleRequestReplySample/Protos/service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPCNew/SimpleRequestReplySample/Protos/service.proto -------------------------------------------------------------------------------- /GRPCNew/SimpleRequestReplySample/SimpleGrpcClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPCNew/SimpleRequestReplySample/SimpleGrpcClient/Program.cs -------------------------------------------------------------------------------- /GRPCNew/SimpleRequestReplySample/SimpleGrpcClient/SimpleGrpcClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPCNew/SimpleRequestReplySample/SimpleGrpcClient/SimpleGrpcClient.csproj -------------------------------------------------------------------------------- /GRPCNew/SimpleRequestReplySample/SimpleGrpcServer/GreeterImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPCNew/SimpleRequestReplySample/SimpleGrpcServer/GreeterImplementation.cs -------------------------------------------------------------------------------- /GRPCNew/SimpleRequestReplySample/SimpleGrpcServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPCNew/SimpleRequestReplySample/SimpleGrpcServer/Program.cs -------------------------------------------------------------------------------- /GRPCNew/SimpleRequestReplySample/SimpleGrpcServer/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPCNew/SimpleRequestReplySample/SimpleGrpcServer/Properties/launchSettings.json -------------------------------------------------------------------------------- /GRPCNew/SimpleRequestReplySample/SimpleGrpcServer/SimpleGrpcServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPCNew/SimpleRequestReplySample/SimpleGrpcServer/SimpleGrpcServer.csproj -------------------------------------------------------------------------------- /GRPCNew/SimpleRequestReplySample/SimpleGrpcServer/SimpleGrpcServer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GRPCNew/SimpleRequestReplySample/SimpleGrpcServer/SimpleGrpcServer.sln -------------------------------------------------------------------------------- /GenericBlockChainTest/JS/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GenericBlockChainTest/JS/package.json -------------------------------------------------------------------------------- /GenericBlockChainTest/JS/src/Keys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GenericBlockChainTest/JS/src/Keys.txt -------------------------------------------------------------------------------- /GenericBlockChainTest/JS/src/blockchain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GenericBlockChainTest/JS/src/blockchain.ts -------------------------------------------------------------------------------- /GenericBlockChainTest/JS/src/keygenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GenericBlockChainTest/JS/src/keygenerator.ts -------------------------------------------------------------------------------- /GenericBlockChainTest/JS/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GenericBlockChainTest/JS/src/main.ts -------------------------------------------------------------------------------- /GrpcRelayServer/NP.Grpc.ClientBuilder/ClientBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GrpcRelayServer/NP.Grpc.ClientBuilder/ClientBuilder.cs -------------------------------------------------------------------------------- /GrpcRelayServer/NP.Grpc.ClientBuilder/NP.Grpc.ClientBuilder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GrpcRelayServer/NP.Grpc.ClientBuilder/NP.Grpc.ClientBuilder.csproj -------------------------------------------------------------------------------- /GrpcRelayServer/NP.Grpc.RelayServerConfig/GrpcServerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GrpcRelayServer/NP.Grpc.RelayServerConfig/GrpcServerConfig.cs -------------------------------------------------------------------------------- /GrpcRelayServer/NP.Grpc.RelayServerConfig/NP.Grpc.RelayServerConfig.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GrpcRelayServer/NP.Grpc.RelayServerConfig/NP.Grpc.RelayServerConfig.csproj -------------------------------------------------------------------------------- /GrpcRelayServer/NP.Grpc.RelayServerRunner/NP.Grpc.RelayServerRunner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GrpcRelayServer/NP.Grpc.RelayServerRunner/NP.Grpc.RelayServerRunner.csproj -------------------------------------------------------------------------------- /GrpcRelayServer/NP.Grpc.RelayServerRunner/NP.Grpc.RelayServerRunner.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GrpcRelayServer/NP.Grpc.RelayServerRunner/NP.Grpc.RelayServerRunner.sln -------------------------------------------------------------------------------- /GrpcRelayServer/NP.Grpc.RelayServerRunner/NP.Grpc.RelayServerRunner_WithPythonClients.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GrpcRelayServer/NP.Grpc.RelayServerRunner/NP.Grpc.RelayServerRunner_WithPythonClients.sln -------------------------------------------------------------------------------- /GrpcRelayServer/NP.Grpc.RelayServerRunner/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GrpcRelayServer/NP.Grpc.RelayServerRunner/Program.cs -------------------------------------------------------------------------------- /GrpcRelayServer/Topics/Organization/GeneratedOrgProtoStubs/Generate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GrpcRelayServer/Topics/Organization/GeneratedOrgProtoStubs/Generate.txt -------------------------------------------------------------------------------- /GrpcRelayServer/Topics/Organization/GeneratedOrgProtoStubs/GeneratedOrgProtoStubs.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GrpcRelayServer/Topics/Organization/GeneratedOrgProtoStubs/GeneratedOrgProtoStubs.pyproj -------------------------------------------------------------------------------- /GrpcRelayServer/Topics/Organization/GeneratedOrgProtoStubs/Org_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GrpcRelayServer/Topics/Organization/GeneratedOrgProtoStubs/Org_pb2.py -------------------------------------------------------------------------------- /GrpcRelayServer/Topics/Organization/GeneratedOrgProtoStubs/Org_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GrpcRelayServer/Topics/Organization/GeneratedOrgProtoStubs/Org_pb2.pyi -------------------------------------------------------------------------------- /GrpcRelayServer/Topics/Organization/GeneratedOrgProtoStubs/Org_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GrpcRelayServer/Topics/Organization/GeneratedOrgProtoStubs/Org_pb2_grpc.py -------------------------------------------------------------------------------- /GrpcRelayServer/Topics/Organization/OrgData/OrgData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GrpcRelayServer/Topics/Organization/OrgData/OrgData.csproj -------------------------------------------------------------------------------- /GrpcRelayServer/Topics/Organization/OrgData/TopicsGetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GrpcRelayServer/Topics/Organization/OrgData/TopicsGetter.cs -------------------------------------------------------------------------------- /GrpcRelayServer/Topics/Organization/OrgProtos/Org.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GrpcRelayServer/Topics/Organization/OrgProtos/Org.proto -------------------------------------------------------------------------------- /GrpcRelayServer/Topics/Organization/OrgProtos/OrgProtos.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GrpcRelayServer/Topics/Organization/OrgProtos/OrgProtos.csproj -------------------------------------------------------------------------------- /GrpcRelayServer/Topics/Organization/PublishOrgClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GrpcRelayServer/Topics/Organization/PublishOrgClient/Program.cs -------------------------------------------------------------------------------- /GrpcRelayServer/Topics/Organization/PublishOrgClient/PublishOrgClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GrpcRelayServer/Topics/Organization/PublishOrgClient/PublishOrgClient.csproj -------------------------------------------------------------------------------- /GrpcRelayServer/Topics/Organization/PublishOrgPythonClient/PublishOrgPythonClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GrpcRelayServer/Topics/Organization/PublishOrgPythonClient/PublishOrgPythonClient.py -------------------------------------------------------------------------------- /GrpcRelayServer/Topics/Organization/PublishOrgPythonClient/PublishOrgPythonClient.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GrpcRelayServer/Topics/Organization/PublishOrgPythonClient/PublishOrgPythonClient.pyproj -------------------------------------------------------------------------------- /GrpcRelayServer/Topics/Organization/SubscribeOrgClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GrpcRelayServer/Topics/Organization/SubscribeOrgClient/Program.cs -------------------------------------------------------------------------------- /GrpcRelayServer/Topics/Organization/SubscribeOrgClient/SubscribeOrgClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GrpcRelayServer/Topics/Organization/SubscribeOrgClient/SubscribeOrgClient.csproj -------------------------------------------------------------------------------- /GrpcRelayServer/Topics/Organization/SubscribeOrgPythonClient/SubscribeOrgPythonClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GrpcRelayServer/Topics/Organization/SubscribeOrgPythonClient/SubscribeOrgPythonClient.py -------------------------------------------------------------------------------- /GrpcRelayServer/Topics/Organization/SubscribeOrgPythonClient/SubscribeOrgPythonClient.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GrpcRelayServer/Topics/Organization/SubscribeOrgPythonClient/SubscribeOrgPythonClient.pyproj -------------------------------------------------------------------------------- /GrpcRelayServer/Topics/Person/PersonData/PersonData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GrpcRelayServer/Topics/Person/PersonData/PersonData.csproj -------------------------------------------------------------------------------- /GrpcRelayServer/Topics/Person/PersonData/TopicsGetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GrpcRelayServer/Topics/Person/PersonData/TopicsGetter.cs -------------------------------------------------------------------------------- /GrpcRelayServer/Topics/Person/PersonProtos/Person.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GrpcRelayServer/Topics/Person/PersonProtos/Person.proto -------------------------------------------------------------------------------- /GrpcRelayServer/Topics/Person/PersonProtos/PersonProtos.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GrpcRelayServer/Topics/Person/PersonProtos/PersonProtos.csproj -------------------------------------------------------------------------------- /GrpcRelayServer/Topics/Person/PublishPersonClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GrpcRelayServer/Topics/Person/PublishPersonClient/Program.cs -------------------------------------------------------------------------------- /GrpcRelayServer/Topics/Person/PublishPersonClient/PublishPersonClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GrpcRelayServer/Topics/Person/PublishPersonClient/PublishPersonClient.csproj -------------------------------------------------------------------------------- /GrpcRelayServer/Topics/Person/SubscribePersonClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GrpcRelayServer/Topics/Person/SubscribePersonClient/Program.cs -------------------------------------------------------------------------------- /GrpcRelayServer/Topics/Person/SubscribePersonClient/SubscribePersonClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/GrpcRelayServer/Topics/Person/SubscribePersonClient/SubscribePersonClient.csproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/LICENSE -------------------------------------------------------------------------------- /PluginPackageSamples/PackagePlugins/PackagePluginsTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/PluginPackageSamples/PackagePlugins/PackagePluginsTest.sln -------------------------------------------------------------------------------- /PluginPackageSamples/PackagePlugins/Plugins/DoubleManipulationsPlugin/DoubleManipulationFactoryMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/PluginPackageSamples/PackagePlugins/Plugins/DoubleManipulationsPlugin/DoubleManipulationFactoryMethods.cs -------------------------------------------------------------------------------- /PluginPackageSamples/PackagePlugins/Plugins/DoubleManipulationsPlugin/DoubleManipulationsPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/PluginPackageSamples/PackagePlugins/Plugins/DoubleManipulationsPlugin/DoubleManipulationsPlugin.cs -------------------------------------------------------------------------------- /PluginPackageSamples/PackagePlugins/Plugins/DoubleManipulationsPlugin/NP.PackagePluginsTest.DoubleManipulationsPlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/PluginPackageSamples/PackagePlugins/Plugins/DoubleManipulationsPlugin/NP.PackagePluginsTest.DoubleManipulationsPlugin.csproj -------------------------------------------------------------------------------- /PluginPackageSamples/PackagePlugins/Plugins/StringManipulationsPlugin/NP.PackagePluginsTest.StringManipulationsPlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/PluginPackageSamples/PackagePlugins/Plugins/StringManipulationsPlugin/NP.PackagePluginsTest.StringManipulationsPlugin.csproj -------------------------------------------------------------------------------- /PluginPackageSamples/PackagePlugins/Plugins/StringManipulationsPlugin/StringManipulationFactoryMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/PluginPackageSamples/PackagePlugins/Plugins/StringManipulationsPlugin/StringManipulationFactoryMethods.cs -------------------------------------------------------------------------------- /PluginPackageSamples/PackagePlugins/Plugins/StringManipulationsPlugin/StringManipulationsPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/PluginPackageSamples/PackagePlugins/Plugins/StringManipulationsPlugin/StringManipulationsPlugin.cs -------------------------------------------------------------------------------- /PluginPackageSamples/PluginInterfaces/IDoubleManipulationsPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/PluginPackageSamples/PluginInterfaces/IDoubleManipulationsPlugin.cs -------------------------------------------------------------------------------- /PluginPackageSamples/PluginInterfaces/IStringManipulationsPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/PluginPackageSamples/PluginInterfaces/IStringManipulationsPlugin.cs -------------------------------------------------------------------------------- /PluginPackageSamples/PluginInterfaces/NP.PackagePluginsTest.PluginInterfaces.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/PluginPackageSamples/PluginInterfaces/NP.PackagePluginsTest.PluginInterfaces.csproj -------------------------------------------------------------------------------- /PluginPackageSamples/PluginsConsumer/NP.PluginsConsumer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/PluginPackageSamples/PluginsConsumer/NP.PluginsConsumer.sln -------------------------------------------------------------------------------- /PluginPackageSamples/PluginsConsumer/PluginsConsumer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/PluginPackageSamples/PluginsConsumer/PluginsConsumer.csproj -------------------------------------------------------------------------------- /PluginPackageSamples/PluginsConsumer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/PluginPackageSamples/PluginsConsumer/Program.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/README.md -------------------------------------------------------------------------------- /RxStreams/CreatingAndManipulatingRxStreams/CreatingAndManipulatingRxStreams.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/RxStreams/CreatingAndManipulatingRxStreams/CreatingAndManipulatingRxStreams.csproj -------------------------------------------------------------------------------- /RxStreams/CreatingAndManipulatingRxStreams/CreatingAndManipulatingRxStreams.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/RxStreams/CreatingAndManipulatingRxStreams/CreatingAndManipulatingRxStreams.sln -------------------------------------------------------------------------------- /RxStreams/CreatingAndManipulatingRxStreams/StreamFromAsyncEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/RxStreams/CreatingAndManipulatingRxStreams/StreamFromAsyncEnumerable.cs -------------------------------------------------------------------------------- /RxStreams/CreatingAndManipulatingRxStreams/StreamFromCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/RxStreams/CreatingAndManipulatingRxStreams/StreamFromCollection.cs -------------------------------------------------------------------------------- /RxStreams/CreatingAndManipulatingRxStreams/StreamFromEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/RxStreams/CreatingAndManipulatingRxStreams/StreamFromEvent.cs -------------------------------------------------------------------------------- /RxStreams/CreatingAndManipulatingRxStreams/StreamFromNotifiableProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/RxStreams/CreatingAndManipulatingRxStreams/StreamFromNotifiableProperty.cs -------------------------------------------------------------------------------- /RxStreams/CreatingAndManipulatingRxStreams/StreamFromSubject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/RxStreams/CreatingAndManipulatingRxStreams/StreamFromSubject.cs -------------------------------------------------------------------------------- /RxStreams/IntroToDynamicData/IntroToDynamicData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/RxStreams/IntroToDynamicData/IntroToDynamicData.csproj -------------------------------------------------------------------------------- /RxStreams/IntroToDynamicData/IntroToDynamicData.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/RxStreams/IntroToDynamicData/IntroToDynamicData.sln -------------------------------------------------------------------------------- /RxStreams/IntroToDynamicData/SimpleExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/RxStreams/IntroToDynamicData/SimpleExamples.cs -------------------------------------------------------------------------------- /RxStreams/IntroToObservableCache/InstrumentMarketData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/RxStreams/IntroToObservableCache/InstrumentMarketData.cs -------------------------------------------------------------------------------- /RxStreams/IntroToObservableCache/IntroToObservableCache.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/RxStreams/IntroToObservableCache/IntroToObservableCache.csproj -------------------------------------------------------------------------------- /RxStreams/IntroToObservableCache/IntroToObservableCache.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/RxStreams/IntroToObservableCache/IntroToObservableCache.sln -------------------------------------------------------------------------------- /RxStreams/IntroToObservableCache/SimpleObservableCacheExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/RxStreams/IntroToObservableCache/SimpleObservableCacheExamples.cs -------------------------------------------------------------------------------- /RxStreams/IntroToObservableCache/Symbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/RxStreams/IntroToObservableCache/Symbol.cs -------------------------------------------------------------------------------- /RxStreams/IntroToObservableCache/SymbolTradeGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/RxStreams/IntroToObservableCache/SymbolTradeGroup.cs -------------------------------------------------------------------------------- /RxStreams/IntroToObservableCache/Trade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/RxStreams/IntroToObservableCache/Trade.cs -------------------------------------------------------------------------------- /RxStreams/IntroToObservableCache/TradesGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/RxStreams/IntroToObservableCache/TradesGenerator.cs -------------------------------------------------------------------------------- /RxStreams/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/RxStreams/README.md -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaCode/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaCode/.gitignore -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaCode/AvaCode.Browser/AvaCode.Browser.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaCode/AvaCode.Browser/AvaCode.Browser.csproj -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaCode/AvaCode.Browser/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaCode/AvaCode.Browser/Program.cs -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaCode/AvaCode.Browser/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaCode/AvaCode.Browser/Properties/launchSettings.json -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaCode/AvaCode.Browser/runtimeconfig.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaCode/AvaCode.Browser/runtimeconfig.template.json -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaCode/AvaCode.Browser/wwwroot/Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaCode/AvaCode.Browser/wwwroot/Logo.svg -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaCode/AvaCode.Browser/wwwroot/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaCode/AvaCode.Browser/wwwroot/app.css -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaCode/AvaCode.Browser/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaCode/AvaCode.Browser/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaCode/AvaCode.Browser/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaCode/AvaCode.Browser/wwwroot/index.html -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaCode/AvaCode.Browser/wwwroot/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaCode/AvaCode.Browser/wwwroot/main.js -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaCode/AvaCode.Desktop/AvaCode.Desktop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaCode/AvaCode.Desktop/AvaCode.Desktop.csproj -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaCode/AvaCode.Desktop/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaCode/AvaCode.Desktop/Program.cs -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaCode/AvaCode.Desktop/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaCode/AvaCode.Desktop/app.manifest -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaCode/AvaCode/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaCode/AvaCode/App.axaml -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaCode/AvaCode/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaCode/AvaCode/App.axaml.cs -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaCode/AvaCode/Assets/avalonia-logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaCode/AvaCode/Assets/avalonia-logo.ico -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaCode/AvaCode/AvaCode.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaCode/AvaCode/AvaCode.csproj -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaCode/AvaCode/Views/MainView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaCode/AvaCode/Views/MainView.axaml -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaCode/AvaCode/Views/MainView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaCode/AvaCode/Views/MainView.axaml.cs -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaCode/AvaCode/Views/MainWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaCode/AvaCode/Views/MainWindow.axaml -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaCode/AvaCode/Views/MainWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaCode/AvaCode/Views/MainWindow.axaml.cs -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaCode/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaCode/Directory.Build.props -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaInBrowserSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaInBrowserSample.sln -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaInBrowserSample/AvaInBrowserSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaInBrowserSample/AvaInBrowserSample.csproj -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaInBrowserSample/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaInBrowserSample/Pages/Error.cshtml -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaInBrowserSample/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaInBrowserSample/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaInBrowserSample/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaInBrowserSample/Pages/Index.cshtml -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaInBrowserSample/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaInBrowserSample/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaInBrowserSample/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaInBrowserSample/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaInBrowserSample/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaInBrowserSample/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaInBrowserSample/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaInBrowserSample/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaInBrowserSample/Pages/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaInBrowserSample/Pages/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaInBrowserSample/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaInBrowserSample/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaInBrowserSample/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaInBrowserSample/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaInBrowserSample/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaInBrowserSample/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaInBrowserSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaInBrowserSample/Program.cs -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaInBrowserSample/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaInBrowserSample/Properties/launchSettings.json -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaInBrowserSample/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaInBrowserSample/appsettings.Development.json -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaInBrowserSample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaInBrowserSample/appsettings.json -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaInBrowserSample/wwwroot/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaInBrowserSample/wwwroot/css/app.css -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaInBrowserSample/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaInBrowserSample/wwwroot/css/site.css -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaInBrowserSample/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaInBrowserSample/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaInBrowserSample/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaInBrowserSample/wwwroot/js/site.js -------------------------------------------------------------------------------- /Wasm/AvaInBrowserSample/AvaInBrowserSample/wwwroot/wasmRunner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/AvaInBrowserSample/AvaInBrowserSample/wwwroot/wasmRunner.js -------------------------------------------------------------------------------- /Wasm/DotNetCallingJSSample/DotNetCallingJSSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/DotNetCallingJSSample/DotNetCallingJSSample.sln -------------------------------------------------------------------------------- /Wasm/DotNetCallingJSSample/DotNetCallingJSSample/DotNetCallingJSSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/DotNetCallingJSSample/DotNetCallingJSSample/DotNetCallingJSSample.csproj -------------------------------------------------------------------------------- /Wasm/DotNetCallingJSSample/DotNetCallingJSSample/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/DotNetCallingJSSample/DotNetCallingJSSample/Pages/Error.cshtml -------------------------------------------------------------------------------- /Wasm/DotNetCallingJSSample/DotNetCallingJSSample/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/DotNetCallingJSSample/DotNetCallingJSSample/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /Wasm/DotNetCallingJSSample/DotNetCallingJSSample/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/DotNetCallingJSSample/DotNetCallingJSSample/Pages/Index.cshtml -------------------------------------------------------------------------------- /Wasm/DotNetCallingJSSample/DotNetCallingJSSample/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/DotNetCallingJSSample/DotNetCallingJSSample/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /Wasm/DotNetCallingJSSample/DotNetCallingJSSample/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/DotNetCallingJSSample/DotNetCallingJSSample/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /Wasm/DotNetCallingJSSample/DotNetCallingJSSample/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/DotNetCallingJSSample/DotNetCallingJSSample/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /Wasm/DotNetCallingJSSample/DotNetCallingJSSample/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/DotNetCallingJSSample/DotNetCallingJSSample/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Wasm/DotNetCallingJSSample/DotNetCallingJSSample/Pages/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/DotNetCallingJSSample/DotNetCallingJSSample/Pages/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /Wasm/DotNetCallingJSSample/DotNetCallingJSSample/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/DotNetCallingJSSample/DotNetCallingJSSample/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Wasm/DotNetCallingJSSample/DotNetCallingJSSample/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/DotNetCallingJSSample/DotNetCallingJSSample/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /Wasm/DotNetCallingJSSample/DotNetCallingJSSample/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/DotNetCallingJSSample/DotNetCallingJSSample/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /Wasm/DotNetCallingJSSample/DotNetCallingJSSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/DotNetCallingJSSample/DotNetCallingJSSample/Program.cs -------------------------------------------------------------------------------- /Wasm/DotNetCallingJSSample/DotNetCallingJSSample/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/DotNetCallingJSSample/DotNetCallingJSSample/Properties/launchSettings.json -------------------------------------------------------------------------------- /Wasm/DotNetCallingJSSample/DotNetCallingJSSample/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/DotNetCallingJSSample/DotNetCallingJSSample/appsettings.Development.json -------------------------------------------------------------------------------- /Wasm/DotNetCallingJSSample/DotNetCallingJSSample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/DotNetCallingJSSample/DotNetCallingJSSample/appsettings.json -------------------------------------------------------------------------------- /Wasm/DotNetCallingJSSample/DotNetCallingJSSample/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/DotNetCallingJSSample/DotNetCallingJSSample/wwwroot/css/site.css -------------------------------------------------------------------------------- /Wasm/DotNetCallingJSSample/DotNetCallingJSSample/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/DotNetCallingJSSample/DotNetCallingJSSample/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Wasm/DotNetCallingJSSample/DotNetCallingJSSample/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/DotNetCallingJSSample/DotNetCallingJSSample/wwwroot/js/site.js -------------------------------------------------------------------------------- /Wasm/DotNetCallingJSSample/DotNetCallingJSSample/wwwroot/wasmRunner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/DotNetCallingJSSample/DotNetCallingJSSample/wwwroot/wasmRunner.js -------------------------------------------------------------------------------- /Wasm/DotNetCallingJSSample/Greeter/Greeter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/DotNetCallingJSSample/Greeter/Greeter.csproj -------------------------------------------------------------------------------- /Wasm/DotNetCallingJSSample/Greeter/JSInteropCallsContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/DotNetCallingJSSample/Greeter/JSInteropCallsContainer.cs -------------------------------------------------------------------------------- /Wasm/DotNetCallingJSSample/Greeter/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/DotNetCallingJSSample/Greeter/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /Wasm/DotNetCallingJSSample/Greeter/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/DotNetCallingJSSample/Greeter/Properties/launchSettings.json -------------------------------------------------------------------------------- /Wasm/JSCallingDotNetSample/Greeter/Greeter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingDotNetSample/Greeter/Greeter.csproj -------------------------------------------------------------------------------- /Wasm/JSCallingDotNetSample/Greeter/JSInteropCallsContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingDotNetSample/Greeter/JSInteropCallsContainer.cs -------------------------------------------------------------------------------- /Wasm/JSCallingDotNetSample/Greeter/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingDotNetSample/Greeter/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /Wasm/JSCallingDotNetSample/Greeter/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingDotNetSample/Greeter/Properties/launchSettings.json -------------------------------------------------------------------------------- /Wasm/JSCallingDotNetSample/JSCallingDotNetSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingDotNetSample/JSCallingDotNetSample.sln -------------------------------------------------------------------------------- /Wasm/JSCallingDotNetSample/JSCallingDotNetSample/JSCallingDotNetSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingDotNetSample/JSCallingDotNetSample/JSCallingDotNetSample.csproj -------------------------------------------------------------------------------- /Wasm/JSCallingDotNetSample/JSCallingDotNetSample/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingDotNetSample/JSCallingDotNetSample/Pages/Error.cshtml -------------------------------------------------------------------------------- /Wasm/JSCallingDotNetSample/JSCallingDotNetSample/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingDotNetSample/JSCallingDotNetSample/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /Wasm/JSCallingDotNetSample/JSCallingDotNetSample/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingDotNetSample/JSCallingDotNetSample/Pages/Index.cshtml -------------------------------------------------------------------------------- /Wasm/JSCallingDotNetSample/JSCallingDotNetSample/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingDotNetSample/JSCallingDotNetSample/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /Wasm/JSCallingDotNetSample/JSCallingDotNetSample/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingDotNetSample/JSCallingDotNetSample/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /Wasm/JSCallingDotNetSample/JSCallingDotNetSample/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingDotNetSample/JSCallingDotNetSample/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /Wasm/JSCallingDotNetSample/JSCallingDotNetSample/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingDotNetSample/JSCallingDotNetSample/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Wasm/JSCallingDotNetSample/JSCallingDotNetSample/Pages/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingDotNetSample/JSCallingDotNetSample/Pages/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /Wasm/JSCallingDotNetSample/JSCallingDotNetSample/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingDotNetSample/JSCallingDotNetSample/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Wasm/JSCallingDotNetSample/JSCallingDotNetSample/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingDotNetSample/JSCallingDotNetSample/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /Wasm/JSCallingDotNetSample/JSCallingDotNetSample/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingDotNetSample/JSCallingDotNetSample/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /Wasm/JSCallingDotNetSample/JSCallingDotNetSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingDotNetSample/JSCallingDotNetSample/Program.cs -------------------------------------------------------------------------------- /Wasm/JSCallingDotNetSample/JSCallingDotNetSample/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingDotNetSample/JSCallingDotNetSample/Properties/launchSettings.json -------------------------------------------------------------------------------- /Wasm/JSCallingDotNetSample/JSCallingDotNetSample/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingDotNetSample/JSCallingDotNetSample/appsettings.Development.json -------------------------------------------------------------------------------- /Wasm/JSCallingDotNetSample/JSCallingDotNetSample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingDotNetSample/JSCallingDotNetSample/appsettings.json -------------------------------------------------------------------------------- /Wasm/JSCallingDotNetSample/JSCallingDotNetSample/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingDotNetSample/JSCallingDotNetSample/wwwroot/css/site.css -------------------------------------------------------------------------------- /Wasm/JSCallingDotNetSample/JSCallingDotNetSample/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingDotNetSample/JSCallingDotNetSample/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Wasm/JSCallingDotNetSample/JSCallingDotNetSample/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingDotNetSample/JSCallingDotNetSample/wwwroot/js/site.js -------------------------------------------------------------------------------- /Wasm/JSCallingDotNetSample/JSCallingDotNetSample/wwwroot/wasmRunner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingDotNetSample/JSCallingDotNetSample/wwwroot/wasmRunner.js -------------------------------------------------------------------------------- /Wasm/JSCallingMainMethodSample/Greeter/Greeter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingMainMethodSample/Greeter/Greeter.csproj -------------------------------------------------------------------------------- /Wasm/JSCallingMainMethodSample/Greeter/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingMainMethodSample/Greeter/Program.cs -------------------------------------------------------------------------------- /Wasm/JSCallingMainMethodSample/Greeter/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingMainMethodSample/Greeter/Properties/launchSettings.json -------------------------------------------------------------------------------- /Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample.sln -------------------------------------------------------------------------------- /Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/JSCallingCSharpMainMethodSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/JSCallingCSharpMainMethodSample.csproj -------------------------------------------------------------------------------- /Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/Pages/Error.cshtml -------------------------------------------------------------------------------- /Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/Pages/Index.cshtml -------------------------------------------------------------------------------- /Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/Pages/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/Pages/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/Program.cs -------------------------------------------------------------------------------- /Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/Properties/launchSettings.json -------------------------------------------------------------------------------- /Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/appsettings.Development.json -------------------------------------------------------------------------------- /Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/appsettings.json -------------------------------------------------------------------------------- /Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/wwwroot/css/site.css -------------------------------------------------------------------------------- /Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/wwwroot/js/site.js -------------------------------------------------------------------------------- /Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/wwwroot/wasmRunner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingMainMethodSample/JSCallingCSharpMainMethodSample/wwwroot/wasmRunner.js -------------------------------------------------------------------------------- /Wasm/JSCallingMainMethodSample/JSCallingMainMethodSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npolyak/NP.Samples/HEAD/Wasm/JSCallingMainMethodSample/JSCallingMainMethodSample.sln --------------------------------------------------------------------------------