├── .gitignore ├── .vs ├── VSWorkspaceState.json ├── ps-aspnetcore6apiauth │ ├── FileContentIndex │ │ ├── 626cb756-6116-4b51-96dc-e62f284084b3.vsidx │ │ ├── 85884a36-9aa0-45c7-9a51-fb843c2253af.vsidx │ │ ├── e53f30cc-5643-4b72-9f96-3ac7592bab7e.vsidx │ │ ├── e799b27c-6b18-49b0-917b-7081d959a04b.vsidx │ │ └── read.lock │ └── v17 │ │ ├── .wsuo │ │ └── workspaceFileList.bin └── slnx.sqlite ├── m2 ├── ApiKey │ ├── .vs │ │ ├── Globomantics │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ ├── FileContentIndex │ │ │ │ └── read.lock │ │ │ ├── config │ │ │ │ └── applicationhost.config │ │ │ └── v17 │ │ │ │ ├── .futdcache.v2 │ │ │ │ └── .suo │ │ └── ProjectEvaluation │ │ │ ├── globomantics.metadata.v5.1 │ │ │ ├── globomantics.metadata.v5.2 │ │ │ ├── globomantics.projects.v5.1 │ │ │ └── globomantics.projects.v5.2 │ ├── Globomantics.Api │ │ ├── ApiKeyAttribute.cs │ │ ├── ApiKeyMiddleware.cs │ │ ├── Controllers │ │ │ ├── ConferenceController.cs │ │ │ └── ProposalController.cs │ │ ├── Globomantics.Api.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Repositories │ │ │ ├── ConferenceRepository.cs │ │ │ ├── IConferenceRepository.cs │ │ │ ├── IProposalRepository.cs │ │ │ └── ProposalRepository.cs │ │ ├── SwaggerApiKeySecurity.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net6.0 │ │ │ │ ├── Globomantics.Api.deps.json │ │ │ │ ├── Globomantics.Api.dll │ │ │ │ ├── Globomantics.Api.exe │ │ │ │ ├── Globomantics.Api.pdb │ │ │ │ ├── Globomantics.Api.runtimeconfig.json │ │ │ │ ├── Globomantics.Shared.dll │ │ │ │ ├── Globomantics.Shared.pdb │ │ │ │ ├── Microsoft.AspNetCore.Authentication.JwtBearer.dll │ │ │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ │ │ ├── Microsoft.OpenApi.dll │ │ │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ │ │ ├── appsettings.Development.json │ │ │ │ └── appsettings.json │ │ └── obj │ │ │ ├── Debug │ │ │ └── net6.0 │ │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ │ ├── Globomantics.Api.AssemblyInfo.cs │ │ │ │ ├── Globomantics.Api.AssemblyInfoInputs.cache │ │ │ │ ├── Globomantics.Api.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── Globomantics.Api.GlobalUsings.g.cs │ │ │ │ ├── Globomantics.Api.MvcApplicationPartsAssemblyInfo.cache │ │ │ │ ├── Globomantics.Api.MvcApplicationPartsAssemblyInfo.cs │ │ │ │ ├── Globomantics.Api.assets.cache │ │ │ │ ├── Globomantics.Api.csproj.AssemblyReference.cache │ │ │ │ ├── Globomantics.Api.csproj.BuildWithSkipAnalyzers │ │ │ │ ├── Globomantics.Api.csproj.CopyComplete │ │ │ │ ├── Globomantics.Api.csproj.CoreCompileInputs.cache │ │ │ │ ├── Globomantics.Api.csproj.FileListAbsolute.txt │ │ │ │ ├── Globomantics.Api.dll │ │ │ │ ├── Globomantics.Api.genruntimeconfig.cache │ │ │ │ ├── Globomantics.Api.pdb │ │ │ │ ├── apphost.exe │ │ │ │ ├── project.razor.vs.json │ │ │ │ ├── ref │ │ │ │ └── Globomantics.Api.dll │ │ │ │ ├── refint │ │ │ │ └── Globomantics.Api.dll │ │ │ │ ├── staticwebassets.build.json │ │ │ │ └── staticwebassets │ │ │ │ ├── msbuild.build.Globomantics.Api.props │ │ │ │ ├── msbuild.buildMultiTargeting.Globomantics.Api.props │ │ │ │ └── msbuild.buildTransitive.Globomantics.Api.props │ │ │ ├── Globomantics.Api.csproj.nuget.dgspec.json │ │ │ ├── Globomantics.Api.csproj.nuget.g.props │ │ │ ├── Globomantics.Api.csproj.nuget.g.targets │ │ │ ├── Release │ │ │ └── net6.0 │ │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ │ ├── Globomantics.Api.AssemblyInfo.cs │ │ │ │ ├── Globomantics.Api.AssemblyInfoInputs.cache │ │ │ │ ├── Globomantics.Api.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── Globomantics.Api.GlobalUsings.g.cs │ │ │ │ ├── Globomantics.Api.assets.cache │ │ │ │ └── Globomantics.Api.csproj.AssemblyReference.cache │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── Globomantics.sln │ ├── Globomantics │ │ ├── ApiServices │ │ │ ├── ConferenceApiService.cs │ │ │ ├── IConferenceApiService.cs │ │ │ ├── IProposalApiService.cs │ │ │ └── ProposalApiService.cs │ │ ├── Controllers │ │ │ ├── ConferenceController.cs │ │ │ └── ProposalController.cs │ │ ├── Globomantics.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Views │ │ │ ├── Conference │ │ │ │ ├── Add.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── Proposal │ │ │ │ ├── AddProposal.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ │ └── _Layout.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net6.0 │ │ │ │ ├── Globomantics.Shared.dll │ │ │ │ ├── Globomantics.Shared.pdb │ │ │ │ ├── Globomantics.deps.json │ │ │ │ ├── Globomantics.dll │ │ │ │ ├── Globomantics.exe │ │ │ │ ├── Globomantics.pdb │ │ │ │ ├── Globomantics.runtimeconfig.json │ │ │ │ ├── Globomantics.staticwebassets.runtime.json │ │ │ │ ├── Microsoft.AspNetCore.Authentication.Google.dll │ │ │ │ ├── appsettings.Development.json │ │ │ │ └── appsettings.json │ │ ├── obj │ │ │ ├── Debug │ │ │ │ └── net6.0 │ │ │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ │ │ ├── Globomantics.AssemblyInfo.cs │ │ │ │ │ ├── Globomantics.AssemblyInfoInputs.cache │ │ │ │ │ ├── Globomantics.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ │ ├── Globomantics.GlobalUsings.g.cs │ │ │ │ │ ├── Globomantics.MvcApplicationPartsAssemblyInfo.cache │ │ │ │ │ ├── Globomantics.RazorAssemblyInfo.cache │ │ │ │ │ ├── Globomantics.RazorAssemblyInfo.cs │ │ │ │ │ ├── Globomantics.assets.cache │ │ │ │ │ ├── Globomantics.csproj.AssemblyReference.cache │ │ │ │ │ ├── Globomantics.csproj.BuildWithSkipAnalyzers │ │ │ │ │ ├── Globomantics.csproj.CopyComplete │ │ │ │ │ ├── Globomantics.csproj.CoreCompileInputs.cache │ │ │ │ │ ├── Globomantics.csproj.FileListAbsolute.txt │ │ │ │ │ ├── Globomantics.dll │ │ │ │ │ ├── Globomantics.genruntimeconfig.cache │ │ │ │ │ ├── Globomantics.pdb │ │ │ │ │ ├── apphost.exe │ │ │ │ │ ├── project.razor.vs.json │ │ │ │ │ ├── ref │ │ │ │ │ └── Globomantics.dll │ │ │ │ │ ├── refint │ │ │ │ │ └── Globomantics.dll │ │ │ │ │ ├── staticwebassets.build.json │ │ │ │ │ ├── staticwebassets.development.json │ │ │ │ │ ├── staticwebassets.pack.json │ │ │ │ │ └── staticwebassets │ │ │ │ │ ├── msbuild.Globomantics.Microsoft.AspNetCore.StaticWebAssets.props │ │ │ │ │ ├── msbuild.build.Globomantics.props │ │ │ │ │ ├── msbuild.buildMultiTargeting.Globomantics.props │ │ │ │ │ └── msbuild.buildTransitive.Globomantics.props │ │ │ ├── Globomantics.csproj.nuget.dgspec.json │ │ │ ├── Globomantics.csproj.nuget.g.props │ │ │ ├── Globomantics.csproj.nuget.g.targets │ │ │ ├── Release │ │ │ │ └── net6.0 │ │ │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ │ │ ├── Globomantics.AssemblyInfo.cs │ │ │ │ │ ├── Globomantics.AssemblyInfoInputs.cache │ │ │ │ │ ├── Globomantics.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ │ ├── Globomantics.GlobalUsings.g.cs │ │ │ │ │ ├── Globomantics.RazorAssemblyInfo.cache │ │ │ │ │ ├── Globomantics.RazorAssemblyInfo.cs │ │ │ │ │ ├── Globomantics.assets.cache │ │ │ │ │ └── Globomantics.csproj.AssemblyReference.cache │ │ │ ├── project.assets.json │ │ │ ├── project.nuget.cache │ │ │ └── staticwebassets.pack.sentinel │ │ └── wwwroot │ │ │ └── img │ │ │ └── globomantics-logo-darkblue.png │ └── Shared │ │ ├── ConferenceModel.cs │ │ ├── Globomantics.Shared.csproj │ │ ├── ProposalModel.cs │ │ ├── bin │ │ └── Debug │ │ │ └── net6.0 │ │ │ ├── Globomantics.Shared.deps.json │ │ │ ├── Globomantics.Shared.dll │ │ │ └── Globomantics.Shared.pdb │ │ └── obj │ │ ├── Debug │ │ └── net6.0 │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ ├── Globomantics.Shared.AssemblyInfo.cs │ │ │ ├── Globomantics.Shared.AssemblyInfoInputs.cache │ │ │ ├── Globomantics.Shared.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── Globomantics.Shared.GlobalUsings.g.cs │ │ │ ├── Globomantics.Shared.assets.cache │ │ │ ├── Globomantics.Shared.csproj.AssemblyReference.cache │ │ │ ├── Globomantics.Shared.csproj.BuildWithSkipAnalyzers │ │ │ ├── Globomantics.Shared.csproj.CoreCompileInputs.cache │ │ │ ├── Globomantics.Shared.csproj.FileListAbsolute.txt │ │ │ ├── Globomantics.Shared.dll │ │ │ ├── Globomantics.Shared.pdb │ │ │ ├── ref │ │ │ └── Globomantics.Shared.dll │ │ │ └── refint │ │ │ └── Globomantics.Shared.dll │ │ ├── Globomantics.Shared.csproj.nuget.dgspec.json │ │ ├── Globomantics.Shared.csproj.nuget.g.props │ │ ├── Globomantics.Shared.csproj.nuget.g.targets │ │ ├── Release │ │ └── net6.0 │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ ├── Globomantics.Shared.AssemblyInfo.cs │ │ │ ├── Globomantics.Shared.AssemblyInfoInputs.cache │ │ │ ├── Globomantics.Shared.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── Globomantics.Shared.GlobalUsings.g.cs │ │ │ ├── Globomantics.Shared.assets.cache │ │ │ └── Globomantics.Shared.csproj.AssemblyReference.cache │ │ ├── project.assets.json │ │ └── project.nuget.cache ├── Cookie │ ├── Globomantics.Api │ │ └── obj │ │ │ ├── Debug │ │ │ └── net6.0 │ │ │ │ └── Globomantics.Api.GeneratedMSBuildEditorConfig.editorconfig │ │ │ └── Release │ │ │ └── net6.0 │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ ├── Globomantics.Api.AssemblyInfo.cs │ │ │ ├── Globomantics.Api.AssemblyInfoInputs.cache │ │ │ ├── Globomantics.Api.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── Globomantics.Api.GlobalUsings.g.cs │ │ │ ├── Globomantics.Api.assets.cache │ │ │ └── Globomantics.Api.csproj.AssemblyReference.cache │ └── Shared │ │ └── obj │ │ └── Release │ │ └── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── Globomantics.Shared.AssemblyInfo.cs │ │ ├── Globomantics.Shared.AssemblyInfoInputs.cache │ │ ├── Globomantics.Shared.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Globomantics.Shared.GlobalUsings.g.cs │ │ ├── Globomantics.Shared.assets.cache │ │ └── Globomantics.Shared.csproj.AssemblyReference.cache ├── CookieSPA │ ├── .vs │ │ ├── Globomantics │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ ├── FileContentIndex │ │ │ │ ├── 805cc88b-c355-49ca-8da9-5ad88889e59e.vsidx │ │ │ │ └── read.lock │ │ │ ├── config │ │ │ │ └── applicationhost.config │ │ │ └── v17 │ │ │ │ ├── .futdcache.v2 │ │ │ │ └── .suo │ │ └── ProjectEvaluation │ │ │ ├── globomantics.metadata.v5.2 │ │ │ └── globomantics.projects.v5.2 │ ├── Globomantics.sln │ └── Globomantics │ │ ├── Client │ │ ├── ApiServices │ │ │ ├── ConferenceApiService.cs │ │ │ ├── IConferenceApiService.cs │ │ │ ├── IProposalApiService.cs │ │ │ └── ProposalApiService.cs │ │ ├── App.razor │ │ ├── Components │ │ │ ├── ConferenceListItem.razor │ │ │ └── ProposalListItem.razor │ │ ├── Globomantics.Client.csproj │ │ ├── Pages │ │ │ ├── AddConference.razor │ │ │ ├── AddProposal.razor │ │ │ ├── ConferenceList.razor │ │ │ ├── ProposalList.razor │ │ │ └── ProposalListModel.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── ServerAuthenticationStateProvider.cs │ │ ├── Shared │ │ │ ├── MainLayout.razor │ │ │ └── MainLayout.razor.css │ │ ├── _Imports.razor │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net6.0 │ │ │ │ ├── Globomantics.Client.dll │ │ │ │ ├── Globomantics.Client.pdb │ │ │ │ ├── Globomantics.Client.staticwebassets.runtime.json │ │ │ │ ├── Globomantics.Shared.dll │ │ │ │ ├── Globomantics.Shared.pdb │ │ │ │ ├── Microsoft.AspNetCore.Authorization.dll │ │ │ │ ├── Microsoft.AspNetCore.Components.Authorization.dll │ │ │ │ ├── Microsoft.AspNetCore.Components.Forms.dll │ │ │ │ ├── Microsoft.AspNetCore.Components.Web.dll │ │ │ │ ├── Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll │ │ │ │ ├── Microsoft.AspNetCore.Components.WebAssembly.dll │ │ │ │ ├── Microsoft.AspNetCore.Components.dll │ │ │ │ ├── Microsoft.AspNetCore.Metadata.dll │ │ │ │ ├── Microsoft.CSharp.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.Binder.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.Json.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.dll │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.FileProviders.Physical.dll │ │ │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.Logging.dll │ │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ │ ├── Microsoft.JSInterop.WebAssembly.dll │ │ │ │ ├── Microsoft.JSInterop.dll │ │ │ │ ├── Microsoft.VisualBasic.Core.dll │ │ │ │ ├── Microsoft.VisualBasic.dll │ │ │ │ ├── Microsoft.Win32.Primitives.dll │ │ │ │ ├── Microsoft.Win32.Registry.dll │ │ │ │ ├── System.AppContext.dll │ │ │ │ ├── System.Buffers.dll │ │ │ │ ├── System.Collections.Concurrent.dll │ │ │ │ ├── System.Collections.Immutable.dll │ │ │ │ ├── System.Collections.NonGeneric.dll │ │ │ │ ├── System.Collections.Specialized.dll │ │ │ │ ├── System.Collections.dll │ │ │ │ ├── System.ComponentModel.Annotations.dll │ │ │ │ ├── System.ComponentModel.DataAnnotations.dll │ │ │ │ ├── System.ComponentModel.EventBasedAsync.dll │ │ │ │ ├── System.ComponentModel.Primitives.dll │ │ │ │ ├── System.ComponentModel.TypeConverter.dll │ │ │ │ ├── System.ComponentModel.dll │ │ │ │ ├── System.Configuration.dll │ │ │ │ ├── System.Console.dll │ │ │ │ ├── System.Core.dll │ │ │ │ ├── System.Data.Common.dll │ │ │ │ ├── System.Data.DataSetExtensions.dll │ │ │ │ ├── System.Data.dll │ │ │ │ ├── System.Diagnostics.Contracts.dll │ │ │ │ ├── System.Diagnostics.Debug.dll │ │ │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ │ │ ├── System.Diagnostics.FileVersionInfo.dll │ │ │ │ ├── System.Diagnostics.Process.dll │ │ │ │ ├── System.Diagnostics.StackTrace.dll │ │ │ │ ├── System.Diagnostics.TextWriterTraceListener.dll │ │ │ │ ├── System.Diagnostics.Tools.dll │ │ │ │ ├── System.Diagnostics.TraceSource.dll │ │ │ │ ├── System.Diagnostics.Tracing.dll │ │ │ │ ├── System.Drawing.Primitives.dll │ │ │ │ ├── System.Drawing.dll │ │ │ │ ├── System.Dynamic.Runtime.dll │ │ │ │ ├── System.Formats.Asn1.dll │ │ │ │ ├── System.Globalization.Calendars.dll │ │ │ │ ├── System.Globalization.Extensions.dll │ │ │ │ ├── System.Globalization.dll │ │ │ │ ├── System.IO.Compression.Brotli.dll │ │ │ │ ├── System.IO.Compression.FileSystem.dll │ │ │ │ ├── System.IO.Compression.ZipFile.dll │ │ │ │ ├── System.IO.Compression.dll │ │ │ │ ├── System.IO.FileSystem.AccessControl.dll │ │ │ │ ├── System.IO.FileSystem.DriveInfo.dll │ │ │ │ ├── System.IO.FileSystem.Primitives.dll │ │ │ │ ├── System.IO.FileSystem.Watcher.dll │ │ │ │ ├── System.IO.FileSystem.dll │ │ │ │ ├── System.IO.IsolatedStorage.dll │ │ │ │ ├── System.IO.MemoryMappedFiles.dll │ │ │ │ ├── System.IO.Pipelines.dll │ │ │ │ ├── System.IO.Pipes.AccessControl.dll │ │ │ │ ├── System.IO.Pipes.dll │ │ │ │ ├── System.IO.UnmanagedMemoryStream.dll │ │ │ │ ├── System.IO.dll │ │ │ │ ├── System.Linq.Expressions.dll │ │ │ │ ├── System.Linq.Parallel.dll │ │ │ │ ├── System.Linq.Queryable.dll │ │ │ │ ├── System.Linq.dll │ │ │ │ ├── System.Memory.dll │ │ │ │ ├── System.Net.Http.Json.dll │ │ │ │ ├── System.Net.Http.dll │ │ │ │ ├── System.Net.HttpListener.dll │ │ │ │ ├── System.Net.Mail.dll │ │ │ │ ├── System.Net.NameResolution.dll │ │ │ │ ├── System.Net.NetworkInformation.dll │ │ │ │ ├── System.Net.Ping.dll │ │ │ │ ├── System.Net.Primitives.dll │ │ │ │ ├── System.Net.Quic.dll │ │ │ │ ├── System.Net.Requests.dll │ │ │ │ ├── System.Net.Security.dll │ │ │ │ ├── System.Net.ServicePoint.dll │ │ │ │ ├── System.Net.Sockets.dll │ │ │ │ ├── System.Net.WebClient.dll │ │ │ │ ├── System.Net.WebHeaderCollection.dll │ │ │ │ ├── System.Net.WebProxy.dll │ │ │ │ ├── System.Net.WebSockets.Client.dll │ │ │ │ ├── System.Net.WebSockets.dll │ │ │ │ ├── System.Net.dll │ │ │ │ ├── System.Numerics.Vectors.dll │ │ │ │ ├── System.Numerics.dll │ │ │ │ ├── System.ObjectModel.dll │ │ │ │ ├── System.Private.CoreLib.dll │ │ │ │ ├── System.Private.DataContractSerialization.dll │ │ │ │ ├── System.Private.Runtime.InteropServices.JavaScript.dll │ │ │ │ ├── System.Private.Uri.dll │ │ │ │ ├── System.Private.Xml.Linq.dll │ │ │ │ ├── System.Private.Xml.dll │ │ │ │ ├── System.Reflection.DispatchProxy.dll │ │ │ │ ├── System.Reflection.Emit.ILGeneration.dll │ │ │ │ ├── System.Reflection.Emit.Lightweight.dll │ │ │ │ ├── System.Reflection.Emit.dll │ │ │ │ ├── System.Reflection.Extensions.dll │ │ │ │ ├── System.Reflection.Metadata.dll │ │ │ │ ├── System.Reflection.Primitives.dll │ │ │ │ ├── System.Reflection.TypeExtensions.dll │ │ │ │ ├── System.Reflection.dll │ │ │ │ ├── System.Resources.Reader.dll │ │ │ │ ├── System.Resources.ResourceManager.dll │ │ │ │ ├── System.Resources.Writer.dll │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ │ │ ├── System.Runtime.CompilerServices.VisualC.dll │ │ │ │ ├── System.Runtime.Extensions.dll │ │ │ │ ├── System.Runtime.Handles.dll │ │ │ │ ├── System.Runtime.InteropServices.RuntimeInformation.dll │ │ │ │ ├── System.Runtime.InteropServices.dll │ │ │ │ ├── System.Runtime.Intrinsics.dll │ │ │ │ ├── System.Runtime.Loader.dll │ │ │ │ ├── System.Runtime.Numerics.dll │ │ │ │ ├── System.Runtime.Serialization.Formatters.dll │ │ │ │ ├── System.Runtime.Serialization.Json.dll │ │ │ │ ├── System.Runtime.Serialization.Primitives.dll │ │ │ │ ├── System.Runtime.Serialization.Xml.dll │ │ │ │ ├── System.Runtime.Serialization.dll │ │ │ │ ├── System.Runtime.dll │ │ │ │ ├── System.Security.AccessControl.dll │ │ │ │ ├── System.Security.Claims.dll │ │ │ │ ├── System.Security.Cryptography.Algorithms.dll │ │ │ │ ├── System.Security.Cryptography.Cng.dll │ │ │ │ ├── System.Security.Cryptography.Csp.dll │ │ │ │ ├── System.Security.Cryptography.Encoding.dll │ │ │ │ ├── System.Security.Cryptography.OpenSsl.dll │ │ │ │ ├── System.Security.Cryptography.Primitives.dll │ │ │ │ ├── System.Security.Cryptography.X509Certificates.dll │ │ │ │ ├── System.Security.Principal.Windows.dll │ │ │ │ ├── System.Security.Principal.dll │ │ │ │ ├── System.Security.SecureString.dll │ │ │ │ ├── System.Security.dll │ │ │ │ ├── System.ServiceModel.Web.dll │ │ │ │ ├── System.ServiceProcess.dll │ │ │ │ ├── System.Text.Encoding.CodePages.dll │ │ │ │ ├── System.Text.Encoding.Extensions.dll │ │ │ │ ├── System.Text.Encoding.dll │ │ │ │ ├── System.Text.Encodings.Web.dll │ │ │ │ ├── System.Text.Json.dll │ │ │ │ ├── System.Text.RegularExpressions.dll │ │ │ │ ├── System.Threading.Channels.dll │ │ │ │ ├── System.Threading.Overlapped.dll │ │ │ │ ├── System.Threading.Tasks.Dataflow.dll │ │ │ │ ├── System.Threading.Tasks.Extensions.dll │ │ │ │ ├── System.Threading.Tasks.Parallel.dll │ │ │ │ ├── System.Threading.Tasks.dll │ │ │ │ ├── System.Threading.Thread.dll │ │ │ │ ├── System.Threading.ThreadPool.dll │ │ │ │ ├── System.Threading.Timer.dll │ │ │ │ ├── System.Threading.dll │ │ │ │ ├── System.Transactions.Local.dll │ │ │ │ ├── System.Transactions.dll │ │ │ │ ├── System.ValueTuple.dll │ │ │ │ ├── System.Web.HttpUtility.dll │ │ │ │ ├── System.Web.dll │ │ │ │ ├── System.Windows.dll │ │ │ │ ├── System.Xml.Linq.dll │ │ │ │ ├── System.Xml.ReaderWriter.dll │ │ │ │ ├── System.Xml.Serialization.dll │ │ │ │ ├── System.Xml.XDocument.dll │ │ │ │ ├── System.Xml.XPath.XDocument.dll │ │ │ │ ├── System.Xml.XPath.dll │ │ │ │ ├── System.Xml.XmlDocument.dll │ │ │ │ ├── System.Xml.XmlSerializer.dll │ │ │ │ ├── System.Xml.dll │ │ │ │ ├── System.dll │ │ │ │ ├── WindowsBase.dll │ │ │ │ ├── dotnet.js │ │ │ │ ├── dotnet.timezones.blat │ │ │ │ ├── dotnet.wasm │ │ │ │ ├── icudt.dat │ │ │ │ ├── icudt_CJK.dat │ │ │ │ ├── icudt_EFIGS.dat │ │ │ │ ├── icudt_no_CJK.dat │ │ │ │ ├── mscorlib.dll │ │ │ │ ├── netstandard.dll │ │ │ │ └── wwwroot │ │ │ │ └── _framework │ │ │ │ ├── Globomantics.Client.dll │ │ │ │ ├── Globomantics.Client.dll.gz │ │ │ │ ├── Globomantics.Client.pdb │ │ │ │ ├── Globomantics.Client.pdb.gz │ │ │ │ ├── Globomantics.Shared.dll │ │ │ │ ├── Globomantics.Shared.dll.gz │ │ │ │ ├── Globomantics.Shared.pdb │ │ │ │ ├── Globomantics.Shared.pdb.gz │ │ │ │ ├── Microsoft.AspNetCore.Authorization.dll │ │ │ │ ├── Microsoft.AspNetCore.Authorization.dll.gz │ │ │ │ ├── Microsoft.AspNetCore.Components.Authorization.dll │ │ │ │ ├── Microsoft.AspNetCore.Components.Authorization.dll.gz │ │ │ │ ├── Microsoft.AspNetCore.Components.Forms.dll │ │ │ │ ├── Microsoft.AspNetCore.Components.Forms.dll.gz │ │ │ │ ├── Microsoft.AspNetCore.Components.Web.dll │ │ │ │ ├── Microsoft.AspNetCore.Components.Web.dll.gz │ │ │ │ ├── Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll │ │ │ │ ├── Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll.gz │ │ │ │ ├── Microsoft.AspNetCore.Components.WebAssembly.dll │ │ │ │ ├── Microsoft.AspNetCore.Components.WebAssembly.dll.gz │ │ │ │ ├── Microsoft.AspNetCore.Components.dll │ │ │ │ ├── Microsoft.AspNetCore.Components.dll.gz │ │ │ │ ├── Microsoft.AspNetCore.Metadata.dll │ │ │ │ ├── Microsoft.AspNetCore.Metadata.dll.gz │ │ │ │ ├── Microsoft.CSharp.dll │ │ │ │ ├── Microsoft.CSharp.dll.gz │ │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll.gz │ │ │ │ ├── Microsoft.Extensions.Configuration.Binder.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.Binder.dll.gz │ │ │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll.gz │ │ │ │ ├── Microsoft.Extensions.Configuration.Json.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.Json.dll.gz │ │ │ │ ├── Microsoft.Extensions.Configuration.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.dll.gz │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll.gz │ │ │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll.gz │ │ │ │ ├── Microsoft.Extensions.FileProviders.Physical.dll │ │ │ │ ├── Microsoft.Extensions.FileProviders.Physical.dll.gz │ │ │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll.gz │ │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll.gz │ │ │ │ ├── Microsoft.Extensions.Logging.dll │ │ │ │ ├── Microsoft.Extensions.Logging.dll.gz │ │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ │ ├── Microsoft.Extensions.Options.dll.gz │ │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ │ ├── Microsoft.Extensions.Primitives.dll.gz │ │ │ │ ├── Microsoft.JSInterop.WebAssembly.dll │ │ │ │ ├── Microsoft.JSInterop.WebAssembly.dll.gz │ │ │ │ ├── Microsoft.JSInterop.dll │ │ │ │ ├── Microsoft.JSInterop.dll.gz │ │ │ │ ├── Microsoft.VisualBasic.Core.dll │ │ │ │ ├── Microsoft.VisualBasic.Core.dll.gz │ │ │ │ ├── Microsoft.VisualBasic.dll │ │ │ │ ├── Microsoft.VisualBasic.dll.gz │ │ │ │ ├── Microsoft.Win32.Primitives.dll │ │ │ │ ├── Microsoft.Win32.Primitives.dll.gz │ │ │ │ ├── Microsoft.Win32.Registry.dll │ │ │ │ ├── Microsoft.Win32.Registry.dll.gz │ │ │ │ ├── System.AppContext.dll │ │ │ │ ├── System.AppContext.dll.gz │ │ │ │ ├── System.Buffers.dll │ │ │ │ ├── System.Buffers.dll.gz │ │ │ │ ├── System.Collections.Concurrent.dll │ │ │ │ ├── System.Collections.Concurrent.dll.gz │ │ │ │ ├── System.Collections.Immutable.dll │ │ │ │ ├── System.Collections.Immutable.dll.gz │ │ │ │ ├── System.Collections.NonGeneric.dll │ │ │ │ ├── System.Collections.NonGeneric.dll.gz │ │ │ │ ├── System.Collections.Specialized.dll │ │ │ │ ├── System.Collections.Specialized.dll.gz │ │ │ │ ├── System.Collections.dll │ │ │ │ ├── System.Collections.dll.gz │ │ │ │ ├── System.ComponentModel.Annotations.dll │ │ │ │ ├── System.ComponentModel.Annotations.dll.gz │ │ │ │ ├── System.ComponentModel.DataAnnotations.dll │ │ │ │ ├── System.ComponentModel.DataAnnotations.dll.gz │ │ │ │ ├── System.ComponentModel.EventBasedAsync.dll │ │ │ │ ├── System.ComponentModel.EventBasedAsync.dll.gz │ │ │ │ ├── System.ComponentModel.Primitives.dll │ │ │ │ ├── System.ComponentModel.Primitives.dll.gz │ │ │ │ ├── System.ComponentModel.TypeConverter.dll │ │ │ │ ├── System.ComponentModel.TypeConverter.dll.gz │ │ │ │ ├── System.ComponentModel.dll │ │ │ │ ├── System.ComponentModel.dll.gz │ │ │ │ ├── System.Configuration.dll │ │ │ │ ├── System.Configuration.dll.gz │ │ │ │ ├── System.Console.dll │ │ │ │ ├── System.Console.dll.gz │ │ │ │ ├── System.Core.dll │ │ │ │ ├── System.Core.dll.gz │ │ │ │ ├── System.Data.Common.dll │ │ │ │ ├── System.Data.Common.dll.gz │ │ │ │ ├── System.Data.DataSetExtensions.dll │ │ │ │ ├── System.Data.DataSetExtensions.dll.gz │ │ │ │ ├── System.Data.dll │ │ │ │ ├── System.Data.dll.gz │ │ │ │ ├── System.Diagnostics.Contracts.dll │ │ │ │ ├── System.Diagnostics.Contracts.dll.gz │ │ │ │ ├── System.Diagnostics.Debug.dll │ │ │ │ ├── System.Diagnostics.Debug.dll.gz │ │ │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ │ │ ├── System.Diagnostics.DiagnosticSource.dll.gz │ │ │ │ ├── System.Diagnostics.FileVersionInfo.dll │ │ │ │ ├── System.Diagnostics.FileVersionInfo.dll.gz │ │ │ │ ├── System.Diagnostics.Process.dll │ │ │ │ ├── System.Diagnostics.Process.dll.gz │ │ │ │ ├── System.Diagnostics.StackTrace.dll │ │ │ │ ├── System.Diagnostics.StackTrace.dll.gz │ │ │ │ ├── System.Diagnostics.TextWriterTraceListener.dll │ │ │ │ ├── System.Diagnostics.TextWriterTraceListener.dll.gz │ │ │ │ ├── System.Diagnostics.Tools.dll │ │ │ │ ├── System.Diagnostics.Tools.dll.gz │ │ │ │ ├── System.Diagnostics.TraceSource.dll │ │ │ │ ├── System.Diagnostics.TraceSource.dll.gz │ │ │ │ ├── System.Diagnostics.Tracing.dll │ │ │ │ ├── System.Diagnostics.Tracing.dll.gz │ │ │ │ ├── System.Drawing.Primitives.dll │ │ │ │ ├── System.Drawing.Primitives.dll.gz │ │ │ │ ├── System.Drawing.dll │ │ │ │ ├── System.Drawing.dll.gz │ │ │ │ ├── System.Dynamic.Runtime.dll │ │ │ │ ├── System.Dynamic.Runtime.dll.gz │ │ │ │ ├── System.Formats.Asn1.dll │ │ │ │ ├── System.Formats.Asn1.dll.gz │ │ │ │ ├── System.Globalization.Calendars.dll │ │ │ │ ├── System.Globalization.Calendars.dll.gz │ │ │ │ ├── System.Globalization.Extensions.dll │ │ │ │ ├── System.Globalization.Extensions.dll.gz │ │ │ │ ├── System.Globalization.dll │ │ │ │ ├── System.Globalization.dll.gz │ │ │ │ ├── System.IO.Compression.Brotli.dll │ │ │ │ ├── System.IO.Compression.Brotli.dll.gz │ │ │ │ ├── System.IO.Compression.FileSystem.dll │ │ │ │ ├── System.IO.Compression.FileSystem.dll.gz │ │ │ │ ├── System.IO.Compression.ZipFile.dll │ │ │ │ ├── System.IO.Compression.ZipFile.dll.gz │ │ │ │ ├── System.IO.Compression.dll │ │ │ │ ├── System.IO.Compression.dll.gz │ │ │ │ ├── System.IO.FileSystem.AccessControl.dll │ │ │ │ ├── System.IO.FileSystem.AccessControl.dll.gz │ │ │ │ ├── System.IO.FileSystem.DriveInfo.dll │ │ │ │ ├── System.IO.FileSystem.DriveInfo.dll.gz │ │ │ │ ├── System.IO.FileSystem.Primitives.dll │ │ │ │ ├── System.IO.FileSystem.Primitives.dll.gz │ │ │ │ ├── System.IO.FileSystem.Watcher.dll │ │ │ │ ├── System.IO.FileSystem.Watcher.dll.gz │ │ │ │ ├── System.IO.FileSystem.dll │ │ │ │ ├── System.IO.FileSystem.dll.gz │ │ │ │ ├── System.IO.IsolatedStorage.dll │ │ │ │ ├── System.IO.IsolatedStorage.dll.gz │ │ │ │ ├── System.IO.MemoryMappedFiles.dll │ │ │ │ ├── System.IO.MemoryMappedFiles.dll.gz │ │ │ │ ├── System.IO.Pipelines.dll │ │ │ │ ├── System.IO.Pipelines.dll.gz │ │ │ │ ├── System.IO.Pipes.AccessControl.dll │ │ │ │ ├── System.IO.Pipes.AccessControl.dll.gz │ │ │ │ ├── System.IO.Pipes.dll │ │ │ │ ├── System.IO.Pipes.dll.gz │ │ │ │ ├── System.IO.UnmanagedMemoryStream.dll │ │ │ │ ├── System.IO.UnmanagedMemoryStream.dll.gz │ │ │ │ ├── System.IO.dll │ │ │ │ ├── System.IO.dll.gz │ │ │ │ ├── System.Linq.Expressions.dll │ │ │ │ ├── System.Linq.Expressions.dll.gz │ │ │ │ ├── System.Linq.Parallel.dll │ │ │ │ ├── System.Linq.Parallel.dll.gz │ │ │ │ ├── System.Linq.Queryable.dll │ │ │ │ ├── System.Linq.Queryable.dll.gz │ │ │ │ ├── System.Linq.dll │ │ │ │ ├── System.Linq.dll.gz │ │ │ │ ├── System.Memory.dll │ │ │ │ ├── System.Memory.dll.gz │ │ │ │ ├── System.Net.Http.Json.dll │ │ │ │ ├── System.Net.Http.Json.dll.gz │ │ │ │ ├── System.Net.Http.dll │ │ │ │ ├── System.Net.Http.dll.gz │ │ │ │ ├── System.Net.HttpListener.dll │ │ │ │ ├── System.Net.HttpListener.dll.gz │ │ │ │ ├── System.Net.Mail.dll │ │ │ │ ├── System.Net.Mail.dll.gz │ │ │ │ ├── System.Net.NameResolution.dll │ │ │ │ ├── System.Net.NameResolution.dll.gz │ │ │ │ ├── System.Net.NetworkInformation.dll │ │ │ │ ├── System.Net.NetworkInformation.dll.gz │ │ │ │ ├── System.Net.Ping.dll │ │ │ │ ├── System.Net.Ping.dll.gz │ │ │ │ ├── System.Net.Primitives.dll │ │ │ │ ├── System.Net.Primitives.dll.gz │ │ │ │ ├── System.Net.Quic.dll │ │ │ │ ├── System.Net.Quic.dll.gz │ │ │ │ ├── System.Net.Requests.dll │ │ │ │ ├── System.Net.Requests.dll.gz │ │ │ │ ├── System.Net.Security.dll │ │ │ │ ├── System.Net.Security.dll.gz │ │ │ │ ├── System.Net.ServicePoint.dll │ │ │ │ ├── System.Net.ServicePoint.dll.gz │ │ │ │ ├── System.Net.Sockets.dll │ │ │ │ ├── System.Net.Sockets.dll.gz │ │ │ │ ├── System.Net.WebClient.dll │ │ │ │ ├── System.Net.WebClient.dll.gz │ │ │ │ ├── System.Net.WebHeaderCollection.dll │ │ │ │ ├── System.Net.WebHeaderCollection.dll.gz │ │ │ │ ├── System.Net.WebProxy.dll │ │ │ │ ├── System.Net.WebProxy.dll.gz │ │ │ │ ├── System.Net.WebSockets.Client.dll │ │ │ │ ├── System.Net.WebSockets.Client.dll.gz │ │ │ │ ├── System.Net.WebSockets.dll │ │ │ │ ├── System.Net.WebSockets.dll.gz │ │ │ │ ├── System.Net.dll │ │ │ │ ├── System.Net.dll.gz │ │ │ │ ├── System.Numerics.Vectors.dll │ │ │ │ ├── System.Numerics.Vectors.dll.gz │ │ │ │ ├── System.Numerics.dll │ │ │ │ ├── System.Numerics.dll.gz │ │ │ │ ├── System.ObjectModel.dll │ │ │ │ ├── System.ObjectModel.dll.gz │ │ │ │ ├── System.Private.CoreLib.dll │ │ │ │ ├── System.Private.CoreLib.dll.gz │ │ │ │ ├── System.Private.DataContractSerialization.dll │ │ │ │ ├── System.Private.DataContractSerialization.dll.gz │ │ │ │ ├── System.Private.Runtime.InteropServices.JavaScript.dll │ │ │ │ ├── System.Private.Runtime.InteropServices.JavaScript.dll.gz │ │ │ │ ├── System.Private.Uri.dll │ │ │ │ ├── System.Private.Uri.dll.gz │ │ │ │ ├── System.Private.Xml.Linq.dll │ │ │ │ ├── System.Private.Xml.Linq.dll.gz │ │ │ │ ├── System.Private.Xml.dll │ │ │ │ ├── System.Private.Xml.dll.gz │ │ │ │ ├── System.Reflection.DispatchProxy.dll │ │ │ │ ├── System.Reflection.DispatchProxy.dll.gz │ │ │ │ ├── System.Reflection.Emit.ILGeneration.dll │ │ │ │ ├── System.Reflection.Emit.ILGeneration.dll.gz │ │ │ │ ├── System.Reflection.Emit.Lightweight.dll │ │ │ │ ├── System.Reflection.Emit.Lightweight.dll.gz │ │ │ │ ├── System.Reflection.Emit.dll │ │ │ │ ├── System.Reflection.Emit.dll.gz │ │ │ │ ├── System.Reflection.Extensions.dll │ │ │ │ ├── System.Reflection.Extensions.dll.gz │ │ │ │ ├── System.Reflection.Metadata.dll │ │ │ │ ├── System.Reflection.Metadata.dll.gz │ │ │ │ ├── System.Reflection.Primitives.dll │ │ │ │ ├── System.Reflection.Primitives.dll.gz │ │ │ │ ├── System.Reflection.TypeExtensions.dll │ │ │ │ ├── System.Reflection.TypeExtensions.dll.gz │ │ │ │ ├── System.Reflection.dll │ │ │ │ ├── System.Reflection.dll.gz │ │ │ │ ├── System.Resources.Reader.dll │ │ │ │ ├── System.Resources.Reader.dll.gz │ │ │ │ ├── System.Resources.ResourceManager.dll │ │ │ │ ├── System.Resources.ResourceManager.dll.gz │ │ │ │ ├── System.Resources.Writer.dll │ │ │ │ ├── System.Resources.Writer.dll.gz │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll.gz │ │ │ │ ├── System.Runtime.CompilerServices.VisualC.dll │ │ │ │ ├── System.Runtime.CompilerServices.VisualC.dll.gz │ │ │ │ ├── System.Runtime.Extensions.dll │ │ │ │ ├── System.Runtime.Extensions.dll.gz │ │ │ │ ├── System.Runtime.Handles.dll │ │ │ │ ├── System.Runtime.Handles.dll.gz │ │ │ │ ├── System.Runtime.InteropServices.RuntimeInformation.dll │ │ │ │ ├── System.Runtime.InteropServices.RuntimeInformation.dll.gz │ │ │ │ ├── System.Runtime.InteropServices.dll │ │ │ │ ├── System.Runtime.InteropServices.dll.gz │ │ │ │ ├── System.Runtime.Intrinsics.dll │ │ │ │ ├── System.Runtime.Intrinsics.dll.gz │ │ │ │ ├── System.Runtime.Loader.dll │ │ │ │ ├── System.Runtime.Loader.dll.gz │ │ │ │ ├── System.Runtime.Numerics.dll │ │ │ │ ├── System.Runtime.Numerics.dll.gz │ │ │ │ ├── System.Runtime.Serialization.Formatters.dll │ │ │ │ ├── System.Runtime.Serialization.Formatters.dll.gz │ │ │ │ ├── System.Runtime.Serialization.Json.dll │ │ │ │ ├── System.Runtime.Serialization.Json.dll.gz │ │ │ │ ├── System.Runtime.Serialization.Primitives.dll │ │ │ │ ├── System.Runtime.Serialization.Primitives.dll.gz │ │ │ │ ├── System.Runtime.Serialization.Xml.dll │ │ │ │ ├── System.Runtime.Serialization.Xml.dll.gz │ │ │ │ ├── System.Runtime.Serialization.dll │ │ │ │ ├── System.Runtime.Serialization.dll.gz │ │ │ │ ├── System.Runtime.dll │ │ │ │ ├── System.Runtime.dll.gz │ │ │ │ ├── System.Security.AccessControl.dll │ │ │ │ ├── System.Security.AccessControl.dll.gz │ │ │ │ ├── System.Security.Claims.dll │ │ │ │ ├── System.Security.Claims.dll.gz │ │ │ │ ├── System.Security.Cryptography.Algorithms.dll │ │ │ │ ├── System.Security.Cryptography.Algorithms.dll.gz │ │ │ │ ├── System.Security.Cryptography.Cng.dll │ │ │ │ ├── System.Security.Cryptography.Cng.dll.gz │ │ │ │ ├── System.Security.Cryptography.Csp.dll │ │ │ │ ├── System.Security.Cryptography.Csp.dll.gz │ │ │ │ ├── System.Security.Cryptography.Encoding.dll │ │ │ │ ├── System.Security.Cryptography.Encoding.dll.gz │ │ │ │ ├── System.Security.Cryptography.OpenSsl.dll │ │ │ │ ├── System.Security.Cryptography.OpenSsl.dll.gz │ │ │ │ ├── System.Security.Cryptography.Primitives.dll │ │ │ │ ├── System.Security.Cryptography.Primitives.dll.gz │ │ │ │ ├── System.Security.Cryptography.X509Certificates.dll │ │ │ │ ├── System.Security.Cryptography.X509Certificates.dll.gz │ │ │ │ ├── System.Security.Principal.Windows.dll │ │ │ │ ├── System.Security.Principal.Windows.dll.gz │ │ │ │ ├── System.Security.Principal.dll │ │ │ │ ├── System.Security.Principal.dll.gz │ │ │ │ ├── System.Security.SecureString.dll │ │ │ │ ├── System.Security.SecureString.dll.gz │ │ │ │ ├── System.Security.dll │ │ │ │ ├── System.Security.dll.gz │ │ │ │ ├── System.ServiceModel.Web.dll │ │ │ │ ├── System.ServiceModel.Web.dll.gz │ │ │ │ ├── System.ServiceProcess.dll │ │ │ │ ├── System.ServiceProcess.dll.gz │ │ │ │ ├── System.Text.Encoding.CodePages.dll │ │ │ │ ├── System.Text.Encoding.CodePages.dll.gz │ │ │ │ ├── System.Text.Encoding.Extensions.dll │ │ │ │ ├── System.Text.Encoding.Extensions.dll.gz │ │ │ │ ├── System.Text.Encoding.dll │ │ │ │ ├── System.Text.Encoding.dll.gz │ │ │ │ ├── System.Text.Encodings.Web.dll │ │ │ │ ├── System.Text.Encodings.Web.dll.gz │ │ │ │ ├── System.Text.Json.dll │ │ │ │ ├── System.Text.Json.dll.gz │ │ │ │ ├── System.Text.RegularExpressions.dll │ │ │ │ ├── System.Text.RegularExpressions.dll.gz │ │ │ │ ├── System.Threading.Channels.dll │ │ │ │ ├── System.Threading.Channels.dll.gz │ │ │ │ ├── System.Threading.Overlapped.dll │ │ │ │ ├── System.Threading.Overlapped.dll.gz │ │ │ │ ├── System.Threading.Tasks.Dataflow.dll │ │ │ │ ├── System.Threading.Tasks.Dataflow.dll.gz │ │ │ │ ├── System.Threading.Tasks.Extensions.dll │ │ │ │ ├── System.Threading.Tasks.Extensions.dll.gz │ │ │ │ ├── System.Threading.Tasks.Parallel.dll │ │ │ │ ├── System.Threading.Tasks.Parallel.dll.gz │ │ │ │ ├── System.Threading.Tasks.dll │ │ │ │ ├── System.Threading.Tasks.dll.gz │ │ │ │ ├── System.Threading.Thread.dll │ │ │ │ ├── System.Threading.Thread.dll.gz │ │ │ │ ├── System.Threading.ThreadPool.dll │ │ │ │ ├── System.Threading.ThreadPool.dll.gz │ │ │ │ ├── System.Threading.Timer.dll │ │ │ │ ├── System.Threading.Timer.dll.gz │ │ │ │ ├── System.Threading.dll │ │ │ │ ├── System.Threading.dll.gz │ │ │ │ ├── System.Transactions.Local.dll │ │ │ │ ├── System.Transactions.Local.dll.gz │ │ │ │ ├── System.Transactions.dll │ │ │ │ ├── System.Transactions.dll.gz │ │ │ │ ├── System.ValueTuple.dll │ │ │ │ ├── System.ValueTuple.dll.gz │ │ │ │ ├── System.Web.HttpUtility.dll │ │ │ │ ├── System.Web.HttpUtility.dll.gz │ │ │ │ ├── System.Web.dll │ │ │ │ ├── System.Web.dll.gz │ │ │ │ ├── System.Windows.dll │ │ │ │ ├── System.Windows.dll.gz │ │ │ │ ├── System.Xml.Linq.dll │ │ │ │ ├── System.Xml.Linq.dll.gz │ │ │ │ ├── System.Xml.ReaderWriter.dll │ │ │ │ ├── System.Xml.ReaderWriter.dll.gz │ │ │ │ ├── System.Xml.Serialization.dll │ │ │ │ ├── System.Xml.Serialization.dll.gz │ │ │ │ ├── System.Xml.XDocument.dll │ │ │ │ ├── System.Xml.XDocument.dll.gz │ │ │ │ ├── System.Xml.XPath.XDocument.dll │ │ │ │ ├── System.Xml.XPath.XDocument.dll.gz │ │ │ │ ├── System.Xml.XPath.dll │ │ │ │ ├── System.Xml.XPath.dll.gz │ │ │ │ ├── System.Xml.XmlDocument.dll │ │ │ │ ├── System.Xml.XmlDocument.dll.gz │ │ │ │ ├── System.Xml.XmlSerializer.dll │ │ │ │ ├── System.Xml.XmlSerializer.dll.gz │ │ │ │ ├── System.Xml.dll │ │ │ │ ├── System.Xml.dll.gz │ │ │ │ ├── System.dll │ │ │ │ ├── System.dll.gz │ │ │ │ ├── WindowsBase.dll │ │ │ │ ├── WindowsBase.dll.gz │ │ │ │ ├── blazor.boot.json │ │ │ │ ├── blazor.webassembly.js │ │ │ │ ├── blazor.webassembly.js.gz │ │ │ │ ├── dotnet.6.0.13.dq35l2yahe.js │ │ │ │ ├── dotnet.6.0.13.dq35l2yahe.js.gz │ │ │ │ ├── dotnet.timezones.blat │ │ │ │ ├── dotnet.timezones.blat.gz │ │ │ │ ├── dotnet.wasm │ │ │ │ ├── dotnet.wasm.gz │ │ │ │ ├── icudt.dat │ │ │ │ ├── icudt.dat.gz │ │ │ │ ├── icudt_CJK.dat │ │ │ │ ├── icudt_CJK.dat.gz │ │ │ │ ├── icudt_EFIGS.dat │ │ │ │ ├── icudt_EFIGS.dat.gz │ │ │ │ ├── icudt_no_CJK.dat │ │ │ │ ├── icudt_no_CJK.dat.gz │ │ │ │ ├── mscorlib.dll │ │ │ │ ├── mscorlib.dll.gz │ │ │ │ ├── netstandard.dll │ │ │ │ └── netstandard.dll.gz │ │ ├── obj │ │ │ ├── Debug │ │ │ │ └── net6.0 │ │ │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ │ │ ├── Globomantics.Client.AssemblyInfo.cs │ │ │ │ │ ├── Globomantics.Client.AssemblyInfoInputs.cache │ │ │ │ │ ├── Globomantics.Client.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ │ ├── Globomantics.Client.GlobalUsings.g.cs │ │ │ │ │ ├── Globomantics.Client.MvcApplicationPartsAssemblyInfo.cache │ │ │ │ │ ├── Globomantics.Client.assets.cache │ │ │ │ │ ├── Globomantics.Client.csproj.AssemblyReference.cache │ │ │ │ │ ├── Globomantics.Client.csproj.BuildWithSkipAnalyzers │ │ │ │ │ ├── Globomantics.Client.csproj.CopyComplete │ │ │ │ │ ├── Globomantics.Client.csproj.CoreCompileInputs.cache │ │ │ │ │ ├── Globomantics.Client.csproj.FileListAbsolute.txt │ │ │ │ │ ├── Globomantics.Client.dll │ │ │ │ │ ├── Globomantics.Client.pdb │ │ │ │ │ ├── Globomantics.assets.cache │ │ │ │ │ ├── blazor.boot.json │ │ │ │ │ ├── build-gz │ │ │ │ │ ├── ++NQ9ay6.gz │ │ │ │ │ ├── +AegNSbo.gz │ │ │ │ │ ├── +CMyHrJe.gz │ │ │ │ │ ├── +HtDaJES.gz │ │ │ │ │ ├── +JPdBCNU.gz │ │ │ │ │ ├── +L9Ptc0d.gz │ │ │ │ │ ├── +RIEAM78.gz │ │ │ │ │ ├── +Xtd3q8E.gz │ │ │ │ │ ├── +etH50l9.gz │ │ │ │ │ ├── +gUMCpFX.gz │ │ │ │ │ ├── +kTcuyjr.gz │ │ │ │ │ ├── +pZtqo+S.gz │ │ │ │ │ ├── 0JpqjRSi.gz │ │ │ │ │ ├── 0Mlscksy.gz │ │ │ │ │ ├── 0RoR0OKP.gz │ │ │ │ │ ├── 0rmwLqO4.gz │ │ │ │ │ ├── 0yC+nCPy.gz │ │ │ │ │ ├── 18FaMKS0.gz │ │ │ │ │ ├── 1NT2JQl+.gz │ │ │ │ │ ├── 1e6x4FLq.gz │ │ │ │ │ ├── 1eYluuCk.gz │ │ │ │ │ ├── 1lJ4H4HF.gz │ │ │ │ │ ├── 2+Mg6mgu.gz │ │ │ │ │ ├── 2DCKyW3v.gz │ │ │ │ │ ├── 336Biy9W.gz │ │ │ │ │ ├── 3QJEylzS.gz │ │ │ │ │ ├── 3hMv220F.gz │ │ │ │ │ ├── 3tukho28.gz │ │ │ │ │ ├── 3uF0CqM7.gz │ │ │ │ │ ├── 3v3rKR+9.gz │ │ │ │ │ ├── 41muoaRI.gz │ │ │ │ │ ├── 4lABTe8V.gz │ │ │ │ │ ├── 5Y9CvX0b.gz │ │ │ │ │ ├── 69gImDxY.gz │ │ │ │ │ ├── 6i3oP4Ms.gz │ │ │ │ │ ├── 6mUmsRXm.gz │ │ │ │ │ ├── 6oOLWCAs.gz │ │ │ │ │ ├── 6sSwPbZ9.gz │ │ │ │ │ ├── 6vsxtTtk.gz │ │ │ │ │ ├── 7AyYz99W.gz │ │ │ │ │ ├── 7MhmlLjs.gz │ │ │ │ │ ├── 7jW2kKWr.gz │ │ │ │ │ ├── 9FbZUnIh.gz │ │ │ │ │ ├── 9J234QLY.gz │ │ │ │ │ ├── 9MSNHaJL.gz │ │ │ │ │ ├── 9bVpGLyj.gz │ │ │ │ │ ├── 9uT3EYwJ.gz │ │ │ │ │ ├── 9vqhPdbZ.gz │ │ │ │ │ ├── AW4xBWf7.gz │ │ │ │ │ ├── BWypF4y0.gz │ │ │ │ │ ├── BalwkIz+.gz │ │ │ │ │ ├── BxMPigaI.gz │ │ │ │ │ ├── C4v8AyJB.gz │ │ │ │ │ ├── CApsSmu9.gz │ │ │ │ │ ├── CKtRiQiO.gz │ │ │ │ │ ├── Cdq+WWqB.gz │ │ │ │ │ ├── DakCJbK8.gz │ │ │ │ │ ├── De+YUGnG.gz │ │ │ │ │ ├── Dw+OCdf+.gz │ │ │ │ │ ├── E0zrH3nO.gz │ │ │ │ │ ├── F01bAFq4.gz │ │ │ │ │ ├── FSYcOBTz.gz │ │ │ │ │ ├── FnxO2+LK.gz │ │ │ │ │ ├── FoXiOT+O.gz │ │ │ │ │ ├── FsT8gt+J.gz │ │ │ │ │ ├── FtmObCF7.gz │ │ │ │ │ ├── GfqA+P3e.gz │ │ │ │ │ ├── GocuUp8i.gz │ │ │ │ │ ├── H+9xiOtx.gz │ │ │ │ │ ├── HEquRjcu.gz │ │ │ │ │ ├── HQsi0vjt.gz │ │ │ │ │ ├── I0IE2Cc7.gz │ │ │ │ │ ├── I4k68Tzx.gz │ │ │ │ │ ├── I8hP7i+3.gz │ │ │ │ │ ├── IMq1GU1w.gz │ │ │ │ │ ├── ISTT+IZl.gz │ │ │ │ │ ├── IWlav9qN.gz │ │ │ │ │ ├── IjU5ijeS.gz │ │ │ │ │ ├── JE1Z+QJA.gz │ │ │ │ │ ├── KY3Qrxwr.gz │ │ │ │ │ ├── Kgj575XH.gz │ │ │ │ │ ├── LAbxND7+.gz │ │ │ │ │ ├── LFI71d5x.gz │ │ │ │ │ ├── LJssdjdI.gz │ │ │ │ │ ├── LQYytsnO.gz │ │ │ │ │ ├── N+2MTSAk.gz │ │ │ │ │ ├── NGpzcMj1.gz │ │ │ │ │ ├── NVdgxt9U.gz │ │ │ │ │ ├── O5jPponT.gz │ │ │ │ │ ├── Oxp+uajm.gz │ │ │ │ │ ├── P28RkpNs.gz │ │ │ │ │ ├── PncxkfCV.gz │ │ │ │ │ ├── QG+Z6+qI.gz │ │ │ │ │ ├── QLPy1SoQ.gz │ │ │ │ │ ├── R5rQQPgS.gz │ │ │ │ │ ├── RfDcqz3D.gz │ │ │ │ │ ├── RoyaG7oW.gz │ │ │ │ │ ├── RwGK++6V.gz │ │ │ │ │ ├── Rz7K736f.gz │ │ │ │ │ ├── S317XFwi.gz │ │ │ │ │ ├── SJtOgckK.gz │ │ │ │ │ ├── Sa1dk0S+.gz │ │ │ │ │ ├── Sda9wxSZ.gz │ │ │ │ │ ├── U2W+JuDL.gz │ │ │ │ │ ├── U2XHuPME.gz │ │ │ │ │ ├── U7nLnOd5.gz │ │ │ │ │ ├── U7xjS8u8.gz │ │ │ │ │ ├── Ul7F1HYw.gz │ │ │ │ │ ├── UogUBhaW.gz │ │ │ │ │ ├── VIj9R1Ly.gz │ │ │ │ │ ├── VPqp9Nqk.gz │ │ │ │ │ ├── VhOvQRIf.gz │ │ │ │ │ ├── Wfk42q2D.gz │ │ │ │ │ ├── WlutOwuT.gz │ │ │ │ │ ├── WuPZaLss.gz │ │ │ │ │ ├── X+1E1f4H.gz │ │ │ │ │ ├── X2B8Omcn.gz │ │ │ │ │ ├── XHrFAt0b.gz │ │ │ │ │ ├── XMHmUoQ5.gz │ │ │ │ │ ├── XTVGQwWv.gz │ │ │ │ │ ├── XXgAQkxg.gz │ │ │ │ │ ├── XhC20Z61.gz │ │ │ │ │ ├── XrfqAnkw.gz │ │ │ │ │ ├── Y3XgJuII.gz │ │ │ │ │ ├── ZjK+osKz.gz │ │ │ │ │ ├── ZtY6BBHr.gz │ │ │ │ │ ├── a+Amj48a.gz │ │ │ │ │ ├── ab9DoAzM.gz │ │ │ │ │ ├── amzR4+FN.gz │ │ │ │ │ ├── b9F0OPRU.gz │ │ │ │ │ ├── c+DLrdEo.gz │ │ │ │ │ ├── cNdQh8cM.gz │ │ │ │ │ ├── cp+zG4It.gz │ │ │ │ │ ├── d32okUBy.gz │ │ │ │ │ ├── d7sAfPnj.gz │ │ │ │ │ ├── dOhvdE0B.gz │ │ │ │ │ ├── dOi+7yLb.gz │ │ │ │ │ ├── dWUVIMll.gz │ │ │ │ │ ├── dqwwz0i+.gz │ │ │ │ │ ├── e4XoMOle.gz │ │ │ │ │ ├── eCBTYAHz.gz │ │ │ │ │ ├── eKLdYXEA.gz │ │ │ │ │ ├── eR+5Mrc+.gz │ │ │ │ │ ├── eyKyDO3x.gz │ │ │ │ │ ├── f+uUGwO6.gz │ │ │ │ │ ├── fK7j12au.gz │ │ │ │ │ ├── fWS1ANUf.gz │ │ │ │ │ ├── fpYoGpVl.gz │ │ │ │ │ ├── g9t5IgGt.gz │ │ │ │ │ ├── gDEFLAIq.gz │ │ │ │ │ ├── giSoxthy.gz │ │ │ │ │ ├── hcachyco.gz │ │ │ │ │ ├── hs17PBwX.gz │ │ │ │ │ ├── htAP+ALv.gz │ │ │ │ │ ├── hzTDt2Ka.gz │ │ │ │ │ ├── i88V9LyI.gz │ │ │ │ │ ├── iBXxq0yA.gz │ │ │ │ │ ├── iREUmakt.gz │ │ │ │ │ ├── iZLzDXFF.gz │ │ │ │ │ ├── iyGBpTn2.gz │ │ │ │ │ ├── j700Zj2H.gz │ │ │ │ │ ├── j9iPDdO+.gz │ │ │ │ │ ├── jCuE+tKZ.gz │ │ │ │ │ ├── jeZiFbiF.gz │ │ │ │ │ ├── kBhCLq3y.gz │ │ │ │ │ ├── kzm0lfXZ.gz │ │ │ │ │ ├── lnFDhfGP.gz │ │ │ │ │ ├── lsSOjaA8.gz │ │ │ │ │ ├── mPO2tmT9.gz │ │ │ │ │ ├── mVeSXbQa.gz │ │ │ │ │ ├── mcDcB+Nq.gz │ │ │ │ │ ├── mfVr4PGE.gz │ │ │ │ │ ├── nMw3+xbz.gz │ │ │ │ │ ├── nTBR7elI.gz │ │ │ │ │ ├── nwMkgkXo.gz │ │ │ │ │ ├── o3g355bS.gz │ │ │ │ │ ├── oZr+sbtD.gz │ │ │ │ │ ├── pDdXPBa2.gz │ │ │ │ │ ├── pPVsZvhI.gz │ │ │ │ │ ├── pVMhtHgs.gz │ │ │ │ │ ├── pa6bBvR5.gz │ │ │ │ │ ├── pg6VldlF.gz │ │ │ │ │ ├── pkw+mXJS.gz │ │ │ │ │ ├── qovlGVf9.gz │ │ │ │ │ ├── qsiUPOPI.gz │ │ │ │ │ ├── r+T0pgcn.gz │ │ │ │ │ ├── r7XOXpxe.gz │ │ │ │ │ ├── rAzzGzyv.gz │ │ │ │ │ ├── rDnahcje.gz │ │ │ │ │ ├── rf9Vya3e.gz │ │ │ │ │ ├── s3BPXPzA.gz │ │ │ │ │ ├── sI2HROGe.gz │ │ │ │ │ ├── sRxdqbM3.gz │ │ │ │ │ ├── tmCud31X.gz │ │ │ │ │ ├── uFKTs2jx.gz │ │ │ │ │ ├── uNuWLems.gz │ │ │ │ │ ├── ubRbn5cC.gz │ │ │ │ │ ├── ucO3bN5b.gz │ │ │ │ │ ├── ufT2kXSa.gz │ │ │ │ │ ├── v5xqaTcB.gz │ │ │ │ │ ├── vF9xlJue.gz │ │ │ │ │ ├── vGSokJdn.gz │ │ │ │ │ ├── vk73DAKL.gz │ │ │ │ │ ├── vuBCD7YN.gz │ │ │ │ │ ├── w0fL2jq7.gz │ │ │ │ │ ├── w2Equp+M.gz │ │ │ │ │ ├── wbTrTzMc.gz │ │ │ │ │ ├── x+ziF04v.gz │ │ │ │ │ ├── x5MvxCFU.gz │ │ │ │ │ ├── x9qYEGz+.gz │ │ │ │ │ ├── xOyclwMV.gz │ │ │ │ │ ├── yAPGiSxK.gz │ │ │ │ │ ├── yXNi9Itx.gz │ │ │ │ │ ├── yZAOdslb.gz │ │ │ │ │ ├── ytCb62NY.gz │ │ │ │ │ ├── z+X47qfl.gz │ │ │ │ │ ├── zP7o2Cwv.gz │ │ │ │ │ ├── zWGQQvnJ.gz │ │ │ │ │ └── zm+bDZji.gz │ │ │ │ │ ├── project.razor.vs.json │ │ │ │ │ ├── ref │ │ │ │ │ └── Globomantics.Client.dll │ │ │ │ │ ├── refint │ │ │ │ │ └── Globomantics.Client.dll │ │ │ │ │ ├── scopedcss │ │ │ │ │ ├── Shared │ │ │ │ │ │ └── MainLayout.razor.rz.scp.css │ │ │ │ │ ├── bundle │ │ │ │ │ │ └── Globomantics.Client.styles.css │ │ │ │ │ └── projectbundle │ │ │ │ │ │ └── Globomantics.Client.bundle.scp.css │ │ │ │ │ ├── staticwebassets.build.json │ │ │ │ │ ├── staticwebassets.development.json │ │ │ │ │ ├── staticwebassets.pack.json │ │ │ │ │ └── staticwebassets │ │ │ │ │ ├── msbuild.Globomantics.Client.Microsoft.AspNetCore.StaticWebAssets.props │ │ │ │ │ ├── msbuild.build.Globomantics.Client.props │ │ │ │ │ ├── msbuild.buildMultiTargeting.Globomantics.Client.props │ │ │ │ │ └── msbuild.buildTransitive.Globomantics.Client.props │ │ │ ├── Globomantics.Client.csproj.nuget.dgspec.json │ │ │ ├── Globomantics.Client.csproj.nuget.g.props │ │ │ ├── Globomantics.Client.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ │ └── wwwroot │ │ │ ├── css │ │ │ ├── app.css │ │ │ ├── bootstrap │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ └── open-iconic │ │ │ │ ├── FONT-LICENSE │ │ │ │ ├── ICON-LICENSE │ │ │ │ ├── README.md │ │ │ │ └── font │ │ │ │ ├── css │ │ │ │ └── open-iconic-bootstrap.min.css │ │ │ │ └── fonts │ │ │ │ ├── open-iconic.eot │ │ │ │ ├── open-iconic.otf │ │ │ │ ├── open-iconic.svg │ │ │ │ ├── open-iconic.ttf │ │ │ │ └── open-iconic.woff │ │ │ ├── favicon.ico │ │ │ ├── icon-192.png │ │ │ ├── img │ │ │ └── globomantics-logo.png │ │ │ └── index.html │ │ ├── Server │ │ ├── Controllers │ │ │ ├── AccountController.cs │ │ │ ├── ConferenceController.cs │ │ │ └── ProposalController.cs │ │ ├── Globomantics.Server.csproj │ │ ├── Models │ │ │ ├── LoginModel.cs │ │ │ └── UserModel.cs │ │ ├── Pages │ │ │ ├── Error.cshtml │ │ │ └── Error.cshtml.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Repositories │ │ │ ├── ConferenceRepository.cs │ │ │ ├── IConferenceRepository.cs │ │ │ ├── IProposalRepository.cs │ │ │ ├── IUserRepository.cs │ │ │ ├── ProposalRepository.cs │ │ │ └── UserRepository.cs │ │ ├── StringExtensions.cs │ │ ├── Views │ │ │ ├── Account │ │ │ │ └── Login.cshtml │ │ │ ├── Shared │ │ │ │ └── _Layout.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net6.0 │ │ │ │ ├── BlazorDebugProxy │ │ │ │ ├── BrowserDebugHost.dll │ │ │ │ ├── BrowserDebugHost.runtimeconfig.json │ │ │ │ ├── BrowserDebugProxy.dll │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.dll │ │ │ │ ├── Microsoft.CodeAnalysis.dll │ │ │ │ └── Newtonsoft.Json.dll │ │ │ │ ├── Globomantics.Client.dll │ │ │ │ ├── Globomantics.Client.pdb │ │ │ │ ├── Globomantics.Client.staticwebassets.runtime.json │ │ │ │ ├── Globomantics.Server.deps.json │ │ │ │ ├── Globomantics.Server.dll │ │ │ │ ├── Globomantics.Server.exe │ │ │ │ ├── Globomantics.Server.pdb │ │ │ │ ├── Globomantics.Server.runtimeconfig.json │ │ │ │ ├── Globomantics.Server.staticwebassets.runtime.json │ │ │ │ ├── Globomantics.Shared.dll │ │ │ │ ├── Globomantics.Shared.pdb │ │ │ │ ├── Microsoft.AspNetCore.Authentication.Google.dll │ │ │ │ ├── Microsoft.AspNetCore.Authorization.dll │ │ │ │ ├── Microsoft.AspNetCore.Components.Authorization.dll │ │ │ │ ├── Microsoft.AspNetCore.Components.Forms.dll │ │ │ │ ├── Microsoft.AspNetCore.Components.Web.dll │ │ │ │ ├── Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll │ │ │ │ ├── Microsoft.AspNetCore.Components.WebAssembly.Server.dll │ │ │ │ ├── Microsoft.AspNetCore.Components.WebAssembly.dll │ │ │ │ ├── Microsoft.AspNetCore.Components.dll │ │ │ │ ├── Microsoft.AspNetCore.Metadata.dll │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ │ ├── Microsoft.JSInterop.WebAssembly.dll │ │ │ │ ├── Microsoft.JSInterop.dll │ │ │ │ ├── Microsoft.OpenApi.dll │ │ │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ │ │ ├── System.IO.Pipelines.dll │ │ │ │ ├── appsettings.Development.json │ │ │ │ └── appsettings.json │ │ ├── obj │ │ │ ├── Debug │ │ │ │ └── net6.0 │ │ │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ │ │ ├── Globomantics.Server.AssemblyInfo.cs │ │ │ │ │ ├── Globomantics.Server.AssemblyInfoInputs.cache │ │ │ │ │ ├── Globomantics.Server.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ │ ├── Globomantics.Server.GlobalUsings.g.cs │ │ │ │ │ ├── Globomantics.Server.MvcApplicationPartsAssemblyInfo.cache │ │ │ │ │ ├── Globomantics.Server.MvcApplicationPartsAssemblyInfo.cs │ │ │ │ │ ├── Globomantics.Server.RazorAssemblyInfo.cache │ │ │ │ │ ├── Globomantics.Server.RazorAssemblyInfo.cs │ │ │ │ │ ├── Globomantics.Server.assets.cache │ │ │ │ │ ├── Globomantics.Server.csproj.AssemblyReference.cache │ │ │ │ │ ├── Globomantics.Server.csproj.BuildWithSkipAnalyzers │ │ │ │ │ ├── Globomantics.Server.csproj.CopyComplete │ │ │ │ │ ├── Globomantics.Server.csproj.CoreCompileInputs.cache │ │ │ │ │ ├── Globomantics.Server.csproj.FileListAbsolute.txt │ │ │ │ │ ├── Globomantics.Server.dll │ │ │ │ │ ├── Globomantics.Server.genruntimeconfig.cache │ │ │ │ │ ├── Globomantics.Server.pdb │ │ │ │ │ ├── apphost.exe │ │ │ │ │ ├── project.razor.vs.json │ │ │ │ │ ├── ref │ │ │ │ │ └── Globomantics.Server.dll │ │ │ │ │ ├── refint │ │ │ │ │ └── Globomantics.Server.dll │ │ │ │ │ ├── staticwebassets.build.json │ │ │ │ │ ├── staticwebassets.development.json │ │ │ │ │ ├── staticwebassets.pack.json │ │ │ │ │ └── staticwebassets │ │ │ │ │ ├── msbuild.Globomantics.Server.Microsoft.AspNetCore.StaticWebAssets.props │ │ │ │ │ ├── msbuild.build.Globomantics.Server.props │ │ │ │ │ ├── msbuild.buildMultiTargeting.Globomantics.Server.props │ │ │ │ │ └── msbuild.buildTransitive.Globomantics.Server.props │ │ │ ├── Globomantics.Server.csproj.nuget.dgspec.json │ │ │ ├── Globomantics.Server.csproj.nuget.g.props │ │ │ ├── Globomantics.Server.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ │ └── wwwroot │ │ │ └── img │ │ │ └── globomantics-logo-darkblue.png │ │ └── Shared │ │ ├── ConferenceModel.cs │ │ ├── Globomantics.Shared.csproj │ │ ├── ProposalModel.cs │ │ ├── UserClaim.cs │ │ ├── bin │ │ └── Debug │ │ │ └── net6.0 │ │ │ ├── Globomantics.Shared.deps.json │ │ │ ├── Globomantics.Shared.dll │ │ │ └── Globomantics.Shared.pdb │ │ └── obj │ │ ├── Debug │ │ └── net6.0 │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ ├── Globomantics.Shared.AssemblyInfo.cs │ │ │ ├── Globomantics.Shared.AssemblyInfoInputs.cache │ │ │ ├── Globomantics.Shared.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── Globomantics.Shared.GlobalUsings.g.cs │ │ │ ├── Globomantics.Shared.assets.cache │ │ │ ├── Globomantics.Shared.csproj.AssemblyReference.cache │ │ │ ├── Globomantics.Shared.csproj.BuildWithSkipAnalyzers │ │ │ ├── Globomantics.Shared.csproj.CoreCompileInputs.cache │ │ │ ├── Globomantics.Shared.csproj.FileListAbsolute.txt │ │ │ ├── Globomantics.Shared.dll │ │ │ ├── Globomantics.Shared.pdb │ │ │ ├── ref │ │ │ └── Globomantics.Shared.dll │ │ │ └── refint │ │ │ └── Globomantics.Shared.dll │ │ ├── Globomantics.Shared.csproj.nuget.dgspec.json │ │ ├── Globomantics.Shared.csproj.nuget.g.props │ │ ├── Globomantics.Shared.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache └── Start │ ├── .vs │ ├── Globomantics │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache.v2 │ │ ├── FileContentIndex │ │ │ ├── d0cb84bd-f667-4ec3-8117-d39d0fb206a9.vsidx │ │ │ └── read.lock │ │ ├── config │ │ │ └── applicationhost.config │ │ └── v17 │ │ │ ├── .futdcache.v2 │ │ │ └── .suo │ └── ProjectEvaluation │ │ ├── globomantics.metadata.v5.2 │ │ ├── globomantics.projects.v5.1 │ │ └── globomantics.projects.v5.2 │ ├── Globomantics.Api │ ├── Controllers │ │ ├── ConferenceController.cs │ │ └── ProposalController.cs │ ├── Globomantics.Api.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Repositories │ │ ├── ConferenceRepository.cs │ │ ├── IConferenceRepository.cs │ │ ├── IProposalRepository.cs │ │ └── ProposalRepository.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bin │ │ └── Debug │ │ │ └── net6.0 │ │ │ ├── Globomantics.Api.deps.json │ │ │ ├── Globomantics.Api.dll │ │ │ ├── Globomantics.Api.exe │ │ │ ├── Globomantics.Api.pdb │ │ │ ├── Globomantics.Api.runtimeconfig.json │ │ │ ├── Globomantics.Shared.dll │ │ │ ├── Globomantics.Shared.pdb │ │ │ ├── Microsoft.AspNetCore.Authentication.JwtBearer.dll │ │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ │ ├── Microsoft.OpenApi.dll │ │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ └── obj │ │ ├── Debug │ │ └── net6.0 │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ ├── Globomantics.Api.AssemblyInfo.cs │ │ │ ├── Globomantics.Api.AssemblyInfoInputs.cache │ │ │ ├── Globomantics.Api.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── Globomantics.Api.GlobalUsings.g.cs │ │ │ ├── Globomantics.Api.MvcApplicationPartsAssemblyInfo.cache │ │ │ ├── Globomantics.Api.MvcApplicationPartsAssemblyInfo.cs │ │ │ ├── Globomantics.Api.assets.cache │ │ │ ├── Globomantics.Api.csproj.AssemblyReference.cache │ │ │ ├── Globomantics.Api.csproj.BuildWithSkipAnalyzers │ │ │ ├── Globomantics.Api.csproj.CopyComplete │ │ │ ├── Globomantics.Api.csproj.CoreCompileInputs.cache │ │ │ ├── Globomantics.Api.csproj.FileListAbsolute.txt │ │ │ ├── Globomantics.Api.dll │ │ │ ├── Globomantics.Api.genruntimeconfig.cache │ │ │ ├── Globomantics.Api.pdb │ │ │ ├── apphost.exe │ │ │ ├── project.razor.vs.json │ │ │ ├── ref │ │ │ └── Globomantics.Api.dll │ │ │ ├── refint │ │ │ └── Globomantics.Api.dll │ │ │ ├── staticwebassets.build.json │ │ │ └── staticwebassets │ │ │ ├── msbuild.build.Globomantics.Api.props │ │ │ ├── msbuild.buildMultiTargeting.Globomantics.Api.props │ │ │ └── msbuild.buildTransitive.Globomantics.Api.props │ │ ├── Globomantics.Api.csproj.nuget.dgspec.json │ │ ├── Globomantics.Api.csproj.nuget.g.props │ │ ├── Globomantics.Api.csproj.nuget.g.targets │ │ ├── Release │ │ └── net6.0 │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ ├── Globomantics.Api.AssemblyInfo.cs │ │ │ ├── Globomantics.Api.AssemblyInfoInputs.cache │ │ │ ├── Globomantics.Api.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── Globomantics.Api.GlobalUsings.g.cs │ │ │ ├── Globomantics.Api.assets.cache │ │ │ └── Globomantics.Api.csproj.AssemblyReference.cache │ │ ├── project.assets.json │ │ └── project.nuget.cache │ ├── Globomantics.sln │ ├── Globomantics │ ├── ApiServices │ │ ├── ConferenceApiService.cs │ │ ├── IConferenceApiService.cs │ │ ├── IProposalApiService.cs │ │ └── ProposalApiService.cs │ ├── Controllers │ │ ├── ConferenceController.cs │ │ └── ProposalController.cs │ ├── Globomantics.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Views │ │ ├── Conference │ │ │ ├── Add.cshtml │ │ │ └── Index.cshtml │ │ ├── Proposal │ │ │ ├── AddProposal.cshtml │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ └── _Layout.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bin │ │ └── Debug │ │ │ └── net6.0 │ │ │ ├── Globomantics.Shared.dll │ │ │ ├── Globomantics.Shared.pdb │ │ │ ├── Globomantics.deps.json │ │ │ ├── Globomantics.dll │ │ │ ├── Globomantics.exe │ │ │ ├── Globomantics.pdb │ │ │ ├── Globomantics.runtimeconfig.json │ │ │ ├── Globomantics.staticwebassets.runtime.json │ │ │ ├── Microsoft.AspNetCore.Authentication.Google.dll │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ ├── obj │ │ ├── Debug │ │ │ └── net6.0 │ │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ │ ├── Globomantics.AssemblyInfo.cs │ │ │ │ ├── Globomantics.AssemblyInfoInputs.cache │ │ │ │ ├── Globomantics.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── Globomantics.GlobalUsings.g.cs │ │ │ │ ├── Globomantics.MvcApplicationPartsAssemblyInfo.cache │ │ │ │ ├── Globomantics.RazorAssemblyInfo.cache │ │ │ │ ├── Globomantics.RazorAssemblyInfo.cs │ │ │ │ ├── Globomantics.assets.cache │ │ │ │ ├── Globomantics.csproj.AssemblyReference.cache │ │ │ │ ├── Globomantics.csproj.BuildWithSkipAnalyzers │ │ │ │ ├── Globomantics.csproj.CopyComplete │ │ │ │ ├── Globomantics.csproj.CoreCompileInputs.cache │ │ │ │ ├── Globomantics.csproj.FileListAbsolute.txt │ │ │ │ ├── Globomantics.dll │ │ │ │ ├── Globomantics.genruntimeconfig.cache │ │ │ │ ├── Globomantics.pdb │ │ │ │ ├── apphost.exe │ │ │ │ ├── project.razor.vs.json │ │ │ │ ├── ref │ │ │ │ └── Globomantics.dll │ │ │ │ ├── refint │ │ │ │ └── Globomantics.dll │ │ │ │ ├── staticwebassets.build.json │ │ │ │ ├── staticwebassets.development.json │ │ │ │ ├── staticwebassets.pack.json │ │ │ │ └── staticwebassets │ │ │ │ ├── msbuild.Globomantics.Microsoft.AspNetCore.StaticWebAssets.props │ │ │ │ ├── msbuild.build.Globomantics.props │ │ │ │ ├── msbuild.buildMultiTargeting.Globomantics.props │ │ │ │ └── msbuild.buildTransitive.Globomantics.props │ │ ├── Globomantics.csproj.nuget.dgspec.json │ │ ├── Globomantics.csproj.nuget.g.props │ │ ├── Globomantics.csproj.nuget.g.targets │ │ ├── Release │ │ │ └── net6.0 │ │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ │ ├── Globomantics.AssemblyInfo.cs │ │ │ │ ├── Globomantics.AssemblyInfoInputs.cache │ │ │ │ ├── Globomantics.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── Globomantics.GlobalUsings.g.cs │ │ │ │ ├── Globomantics.RazorAssemblyInfo.cache │ │ │ │ ├── Globomantics.RazorAssemblyInfo.cs │ │ │ │ ├── Globomantics.assets.cache │ │ │ │ └── Globomantics.csproj.AssemblyReference.cache │ │ ├── project.assets.json │ │ ├── project.nuget.cache │ │ └── staticwebassets.pack.sentinel │ └── wwwroot │ │ └── img │ │ └── globomantics-logo-darkblue.png │ └── Shared │ ├── ConferenceModel.cs │ ├── Globomantics.Shared.csproj │ ├── ProposalModel.cs │ ├── bin │ └── Debug │ │ └── net6.0 │ │ ├── Globomantics.Shared.deps.json │ │ ├── Globomantics.Shared.dll │ │ └── Globomantics.Shared.pdb │ └── obj │ ├── Debug │ └── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── Globomantics.Shared.AssemblyInfo.cs │ │ ├── Globomantics.Shared.AssemblyInfoInputs.cache │ │ ├── Globomantics.Shared.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Globomantics.Shared.GlobalUsings.g.cs │ │ ├── Globomantics.Shared.assets.cache │ │ ├── Globomantics.Shared.csproj.AssemblyReference.cache │ │ ├── Globomantics.Shared.csproj.BuildWithSkipAnalyzers │ │ ├── Globomantics.Shared.csproj.CoreCompileInputs.cache │ │ ├── Globomantics.Shared.csproj.FileListAbsolute.txt │ │ ├── Globomantics.Shared.dll │ │ ├── Globomantics.Shared.pdb │ │ ├── ref │ │ └── Globomantics.Shared.dll │ │ └── refint │ │ └── Globomantics.Shared.dll │ ├── Globomantics.Shared.csproj.nuget.dgspec.json │ ├── Globomantics.Shared.csproj.nuget.g.props │ ├── Globomantics.Shared.csproj.nuget.g.targets │ ├── Release │ └── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── Globomantics.Shared.AssemblyInfo.cs │ │ ├── Globomantics.Shared.AssemblyInfoInputs.cache │ │ ├── Globomantics.Shared.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Globomantics.Shared.GlobalUsings.g.cs │ │ ├── Globomantics.Shared.assets.cache │ │ └── Globomantics.Shared.csproj.AssemblyReference.cache │ ├── project.assets.json │ └── project.nuget.cache ├── m3 ├── OAuthClientCredentials │ ├── .vs │ │ ├── Globomantics │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ ├── FileContentIndex │ │ │ │ └── read.lock │ │ │ ├── config │ │ │ │ └── applicationhost.config │ │ │ └── v17 │ │ │ │ ├── .futdcache.v2 │ │ │ │ └── .suo │ │ └── ProjectEvaluation │ │ │ ├── globomantics.metadata.v5.2 │ │ │ ├── globomantics.metadata.v6.1 │ │ │ ├── globomantics.projects.v5.2 │ │ │ └── globomantics.projects.v6.1 │ ├── Globomantics.Api │ │ ├── Controllers │ │ │ ├── ConferenceController.cs │ │ │ └── ProposalController.cs │ │ ├── Globomantics.Api.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Repositories │ │ │ ├── ConferenceRepository.cs │ │ │ ├── IConferenceRepository.cs │ │ │ ├── IProposalRepository.cs │ │ │ └── ProposalRepository.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── bin │ │ │ └── Debug │ │ │ │ ├── net6.0 │ │ │ │ ├── Globomantics.Api.deps.json │ │ │ │ ├── Globomantics.Api.dll │ │ │ │ ├── Globomantics.Api.exe │ │ │ │ ├── Globomantics.Api.pdb │ │ │ │ ├── Globomantics.Api.runtimeconfig.json │ │ │ │ ├── Globomantics.Shared.dll │ │ │ │ ├── Globomantics.Shared.pdb │ │ │ │ ├── Microsoft.AspNetCore.Authentication.JwtBearer.dll │ │ │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ │ │ ├── Microsoft.OpenApi.dll │ │ │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ │ │ ├── appsettings.Development.json │ │ │ │ └── appsettings.json │ │ │ │ └── net7.0 │ │ │ │ ├── Globomantics.Api.deps.json │ │ │ │ ├── Globomantics.Api.dll │ │ │ │ ├── Globomantics.Api.exe │ │ │ │ ├── Globomantics.Api.pdb │ │ │ │ ├── Globomantics.Api.runtimeconfig.json │ │ │ │ ├── Globomantics.Shared.dll │ │ │ │ ├── Globomantics.Shared.pdb │ │ │ │ ├── Microsoft.AspNetCore.Authentication.JwtBearer.dll │ │ │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ │ │ ├── Microsoft.OpenApi.dll │ │ │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ │ │ ├── appsettings.Development.json │ │ │ │ └── appsettings.json │ │ └── obj │ │ │ ├── Debug │ │ │ ├── net6.0 │ │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ │ ├── Globomantics.Api.AssemblyInfo.cs │ │ │ │ ├── Globomantics.Api.AssemblyInfoInputs.cache │ │ │ │ ├── Globomantics.Api.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── Globomantics.Api.GlobalUsings.g.cs │ │ │ │ ├── Globomantics.Api.MvcApplicationPartsAssemblyInfo.cache │ │ │ │ ├── Globomantics.Api.MvcApplicationPartsAssemblyInfo.cs │ │ │ │ ├── Globomantics.Api.assets.cache │ │ │ │ ├── Globomantics.Api.csproj.AssemblyReference.cache │ │ │ │ ├── Globomantics.Api.csproj.BuildWithSkipAnalyzers │ │ │ │ ├── Globomantics.Api.csproj.CopyComplete │ │ │ │ ├── Globomantics.Api.csproj.CoreCompileInputs.cache │ │ │ │ ├── Globomantics.Api.csproj.FileListAbsolute.txt │ │ │ │ ├── Globomantics.Api.dll │ │ │ │ ├── Globomantics.Api.genruntimeconfig.cache │ │ │ │ ├── Globomantics.Api.pdb │ │ │ │ ├── _IsIncrementalBuild │ │ │ │ ├── apphost.exe │ │ │ │ ├── project.razor.vs.json │ │ │ │ ├── ref │ │ │ │ │ └── Globomantics.Api.dll │ │ │ │ ├── refint │ │ │ │ │ └── Globomantics.Api.dll │ │ │ │ ├── staticwebassets.build.json │ │ │ │ └── staticwebassets │ │ │ │ │ ├── msbuild.build.Globomantics.Api.props │ │ │ │ │ ├── msbuild.buildMultiTargeting.Globomantics.Api.props │ │ │ │ │ └── msbuild.buildTransitive.Globomantics.Api.props │ │ │ └── net7.0 │ │ │ │ ├── .NETCoreApp,Version=v7.0.AssemblyAttributes.cs │ │ │ │ ├── Globomantics.Api.AssemblyInfo.cs │ │ │ │ ├── Globomantics.Api.AssemblyInfoInputs.cache │ │ │ │ ├── Globomantics.Api.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── Globomantics.Api.GlobalUsings.g.cs │ │ │ │ ├── Globomantics.Api.MvcApplicationPartsAssemblyInfo.cache │ │ │ │ ├── Globomantics.Api.MvcApplicationPartsAssemblyInfo.cs │ │ │ │ ├── Globomantics.Api.assets.cache │ │ │ │ ├── Globomantics.Api.csproj.AssemblyReference.cache │ │ │ │ ├── Globomantics.Api.csproj.BuildWithSkipAnalyzers │ │ │ │ ├── Globomantics.Api.csproj.CopyComplete │ │ │ │ ├── Globomantics.Api.csproj.CoreCompileInputs.cache │ │ │ │ ├── Globomantics.Api.csproj.FileListAbsolute.txt │ │ │ │ ├── Globomantics.Api.dll │ │ │ │ ├── Globomantics.Api.genruntimeconfig.cache │ │ │ │ ├── Globomantics.Api.pdb │ │ │ │ ├── apphost.exe │ │ │ │ ├── project.razor.vs.json │ │ │ │ ├── ref │ │ │ │ └── Globomantics.Api.dll │ │ │ │ ├── refint │ │ │ │ └── Globomantics.Api.dll │ │ │ │ ├── staticwebassets.build.json │ │ │ │ └── staticwebassets │ │ │ │ ├── msbuild.build.Globomantics.Api.props │ │ │ │ ├── msbuild.buildMultiTargeting.Globomantics.Api.props │ │ │ │ └── msbuild.buildTransitive.Globomantics.Api.props │ │ │ ├── Globomantics.Api.csproj.nuget.dgspec.json │ │ │ ├── Globomantics.Api.csproj.nuget.g.props │ │ │ ├── Globomantics.Api.csproj.nuget.g.targets │ │ │ ├── Release │ │ │ └── net6.0 │ │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ │ ├── Globomantics.Api.AssemblyInfo.cs │ │ │ │ ├── Globomantics.Api.AssemblyInfoInputs.cache │ │ │ │ ├── Globomantics.Api.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── Globomantics.Api.GlobalUsings.g.cs │ │ │ │ ├── Globomantics.Api.assets.cache │ │ │ │ └── Globomantics.Api.csproj.AssemblyReference.cache │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── Globomantics.Idp │ │ ├── Config.cs │ │ ├── Globomantics.Idp.csproj │ │ ├── HostingExtensions.cs │ │ ├── Pages │ │ │ ├── Account │ │ │ │ ├── AccessDenied.cshtml │ │ │ │ ├── AccessDenied.cshtml.cs │ │ │ │ ├── Login │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ ├── Index.cshtml.cs │ │ │ │ │ ├── InputModel.cs │ │ │ │ │ ├── LoginOptions.cs │ │ │ │ │ └── ViewModel.cs │ │ │ │ └── Logout │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ ├── Index.cshtml.cs │ │ │ │ │ ├── LoggedOut.cshtml │ │ │ │ │ ├── LoggedOut.cshtml.cs │ │ │ │ │ ├── LoggedOutViewModel.cs │ │ │ │ │ └── LogoutOptions.cs │ │ │ ├── Ciba │ │ │ │ ├── All.cshtml │ │ │ │ ├── All.cshtml.cs │ │ │ │ ├── Consent.cshtml │ │ │ │ ├── Consent.cshtml.cs │ │ │ │ ├── ConsentOptions.cs │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ ├── InputModel.cs │ │ │ │ ├── ViewModel.cs │ │ │ │ └── _ScopeListItem.cshtml │ │ │ ├── Consent │ │ │ │ ├── ConsentOptions.cs │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ ├── InputModel.cs │ │ │ │ ├── ViewModel.cs │ │ │ │ └── _ScopeListItem.cshtml │ │ │ ├── Device │ │ │ │ ├── DeviceOptions.cs │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ ├── InputModel.cs │ │ │ │ ├── Success.cshtml │ │ │ │ ├── Success.cshtml.cs │ │ │ │ ├── ViewModel.cs │ │ │ │ └── _ScopeListItem.cshtml │ │ │ ├── Diagnostics │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── Extensions.cs │ │ │ ├── ExternalLogin │ │ │ │ ├── Callback.cshtml │ │ │ │ ├── Callback.cshtml.cs │ │ │ │ ├── Challenge.cshtml │ │ │ │ └── Challenge.cshtml.cs │ │ │ ├── Grants │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── Home │ │ │ │ └── Error │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ ├── Index.cshtml.cs │ │ │ │ │ └── ViewModel.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── Redirect │ │ │ │ ├── Index.cshtml │ │ │ │ └── Index.cshtml.cs │ │ │ ├── SecurityHeadersAttribute.cs │ │ │ ├── ServerSideSessions │ │ │ │ ├── Index.cshtml │ │ │ │ └── Index.cshtml.cs │ │ │ ├── Shared │ │ │ │ ├── _Layout.cshtml │ │ │ │ ├── _Nav.cshtml │ │ │ │ └── _ValidationSummary.cshtml │ │ │ ├── TestUsers.cs │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net6.0 │ │ │ │ ├── Duende.IdentityServer.Storage.dll │ │ │ │ ├── Duende.IdentityServer.dll │ │ │ │ ├── Globomantics.Idp.deps.json │ │ │ │ ├── Globomantics.Idp.dll │ │ │ │ ├── Globomantics.Idp.exe │ │ │ │ ├── Globomantics.Idp.pdb │ │ │ │ ├── Globomantics.Idp.runtimeconfig.json │ │ │ │ ├── Globomantics.Idp.staticwebassets.runtime.json │ │ │ │ ├── IdentityModel.dll │ │ │ │ ├── Microsoft.AspNetCore.Authentication.Google.dll │ │ │ │ ├── Microsoft.AspNetCore.Authentication.OpenIdConnect.dll │ │ │ │ ├── Microsoft.Extensions.DependencyModel.dll │ │ │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ │ │ ├── Serilog.AspNetCore.dll │ │ │ │ ├── Serilog.Extensions.Hosting.dll │ │ │ │ ├── Serilog.Extensions.Logging.dll │ │ │ │ ├── Serilog.Formatting.Compact.dll │ │ │ │ ├── Serilog.Settings.Configuration.dll │ │ │ │ ├── Serilog.Sinks.Console.dll │ │ │ │ ├── Serilog.Sinks.Debug.dll │ │ │ │ ├── Serilog.Sinks.File.dll │ │ │ │ ├── Serilog.dll │ │ │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ │ │ └── keys │ │ │ │ └── is-signing-key-E6DE950E5103AB9AB6A44ABF8341F941.json │ │ ├── keys │ │ │ ├── is-signing-key-A60035173DE24E3C358CF2E3C2C8DF7C.json │ │ │ └── is-signing-key-E6DE950E5103AB9AB6A44ABF8341F941.json │ │ ├── obj │ │ │ ├── Debug │ │ │ │ └── net6.0 │ │ │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ │ │ ├── Globomantics.Idp.AssemblyInfo.cs │ │ │ │ │ ├── Globomantics.Idp.AssemblyInfoInputs.cache │ │ │ │ │ ├── Globomantics.Idp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ │ ├── Globomantics.Idp.GlobalUsings.g.cs │ │ │ │ │ ├── Globomantics.Idp.MvcApplicationPartsAssemblyInfo.cache │ │ │ │ │ ├── Globomantics.Idp.RazorAssemblyInfo.cache │ │ │ │ │ ├── Globomantics.Idp.RazorAssemblyInfo.cs │ │ │ │ │ ├── Globomantics.Idp.assets.cache │ │ │ │ │ ├── Globomantics.Idp.csproj.AssemblyReference.cache │ │ │ │ │ ├── Globomantics.Idp.csproj.BuildWithSkipAnalyzers │ │ │ │ │ ├── Globomantics.Idp.csproj.CopyComplete │ │ │ │ │ ├── Globomantics.Idp.csproj.CoreCompileInputs.cache │ │ │ │ │ ├── Globomantics.Idp.csproj.FileListAbsolute.txt │ │ │ │ │ ├── Globomantics.Idp.dll │ │ │ │ │ ├── Globomantics.Idp.genruntimeconfig.cache │ │ │ │ │ ├── Globomantics.Idp.pdb │ │ │ │ │ ├── _IsIncrementalBuild │ │ │ │ │ ├── apphost.exe │ │ │ │ │ ├── ref │ │ │ │ │ └── Globomantics.Idp.dll │ │ │ │ │ ├── refint │ │ │ │ │ └── Globomantics.Idp.dll │ │ │ │ │ ├── staticwebassets.build.json │ │ │ │ │ ├── staticwebassets.development.json │ │ │ │ │ ├── staticwebassets.pack.json │ │ │ │ │ └── staticwebassets │ │ │ │ │ ├── msbuild.Globomantics.Idp.Microsoft.AspNetCore.StaticWebAssets.props │ │ │ │ │ ├── msbuild.build.Globomantics.Idp.props │ │ │ │ │ ├── msbuild.buildMultiTargeting.Globomantics.Idp.props │ │ │ │ │ └── msbuild.buildTransitive.Globomantics.Idp.props │ │ │ ├── Globomantics.Idp.csproj.nuget.dgspec.json │ │ │ ├── Globomantics.Idp.csproj.nuget.g.props │ │ │ ├── Globomantics.Idp.csproj.nuget.g.targets │ │ │ ├── Release │ │ │ │ └── net6.0 │ │ │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ │ │ ├── Globomantics.Idp.AssemblyInfo.cs │ │ │ │ │ ├── Globomantics.Idp.AssemblyInfoInputs.cache │ │ │ │ │ ├── Globomantics.Idp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ │ ├── Globomantics.Idp.GlobalUsings.g.cs │ │ │ │ │ ├── Globomantics.Idp.RazorAssemblyInfo.cache │ │ │ │ │ ├── Globomantics.Idp.RazorAssemblyInfo.cs │ │ │ │ │ └── Globomantics.Idp.csproj.AssemblyReference.cache │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ │ └── wwwroot │ │ │ ├── css │ │ │ ├── site.css │ │ │ ├── site.min.css │ │ │ └── site.scss │ │ │ ├── duende-logo.svg │ │ │ ├── favicon.ico │ │ │ ├── js │ │ │ ├── signin-redirect.js │ │ │ └── signout-redirect.js │ │ │ └── lib │ │ │ ├── bootstrap │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── dist │ │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ │ ├── bootstrap4-glyphicons │ │ │ ├── LICENSE │ │ │ ├── css │ │ │ │ ├── bootstrap-glyphicons.css │ │ │ │ └── bootstrap-glyphicons.min.css │ │ │ ├── fonts │ │ │ │ └── glyphicons │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── maps │ │ │ │ ├── glyphicons-fontawesome.css │ │ │ │ ├── glyphicons-fontawesome.less │ │ │ │ └── glyphicons-fontawesome.min.css │ │ │ └── jquery │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ └── dist │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ ├── jquery.slim.js │ │ │ ├── jquery.slim.min.js │ │ │ └── jquery.slim.min.map │ ├── Globomantics.sln │ ├── Globomantics │ │ ├── ApiServices │ │ │ ├── ConferenceApiService.cs │ │ │ ├── IConferenceApiService.cs │ │ │ ├── IProposalApiService.cs │ │ │ └── ProposalApiService.cs │ │ ├── Controllers │ │ │ ├── ConferenceController.cs │ │ │ └── ProposalController.cs │ │ ├── EnsureAccessTokenFilter.cs │ │ ├── Globomantics.csproj │ │ ├── HttpClientExtensions.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Views │ │ │ ├── Conference │ │ │ │ ├── Add.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── Proposal │ │ │ │ ├── AddProposal.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ │ └── _Layout.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net6.0 │ │ │ │ ├── Globomantics.Shared.dll │ │ │ │ ├── Globomantics.Shared.pdb │ │ │ │ ├── Globomantics.deps.json │ │ │ │ ├── Globomantics.dll │ │ │ │ ├── Globomantics.exe │ │ │ │ ├── Globomantics.pdb │ │ │ │ ├── Globomantics.runtimeconfig.json │ │ │ │ ├── Globomantics.staticwebassets.runtime.json │ │ │ │ ├── IdentityModel.dll │ │ │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ │ │ ├── appsettings.Development.json │ │ │ │ └── appsettings.json │ │ ├── obj │ │ │ ├── Debug │ │ │ │ └── net6.0 │ │ │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ │ │ ├── Globomantics.AssemblyInfo.cs │ │ │ │ │ ├── Globomantics.AssemblyInfoInputs.cache │ │ │ │ │ ├── Globomantics.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ │ ├── Globomantics.GlobalUsings.g.cs │ │ │ │ │ ├── Globomantics.MvcApplicationPartsAssemblyInfo.cache │ │ │ │ │ ├── Globomantics.RazorAssemblyInfo.cache │ │ │ │ │ ├── Globomantics.RazorAssemblyInfo.cs │ │ │ │ │ ├── Globomantics.assets.cache │ │ │ │ │ ├── Globomantics.csproj.AssemblyReference.cache │ │ │ │ │ ├── Globomantics.csproj.BuildWithSkipAnalyzers │ │ │ │ │ ├── Globomantics.csproj.CopyComplete │ │ │ │ │ ├── Globomantics.csproj.CoreCompileInputs.cache │ │ │ │ │ ├── Globomantics.csproj.FileListAbsolute.txt │ │ │ │ │ ├── Globomantics.dll │ │ │ │ │ ├── Globomantics.genruntimeconfig.cache │ │ │ │ │ ├── Globomantics.pdb │ │ │ │ │ ├── _IsIncrementalBuild │ │ │ │ │ ├── apphost.exe │ │ │ │ │ ├── project.razor.vs.json │ │ │ │ │ ├── ref │ │ │ │ │ └── Globomantics.dll │ │ │ │ │ ├── refint │ │ │ │ │ └── Globomantics.dll │ │ │ │ │ ├── staticwebassets.build.json │ │ │ │ │ ├── staticwebassets.development.json │ │ │ │ │ ├── staticwebassets.pack.json │ │ │ │ │ └── staticwebassets │ │ │ │ │ ├── msbuild.Globomantics.Microsoft.AspNetCore.StaticWebAssets.props │ │ │ │ │ ├── msbuild.build.Globomantics.props │ │ │ │ │ ├── msbuild.buildMultiTargeting.Globomantics.props │ │ │ │ │ └── msbuild.buildTransitive.Globomantics.props │ │ │ ├── Globomantics.csproj.nuget.dgspec.json │ │ │ ├── Globomantics.csproj.nuget.g.props │ │ │ ├── Globomantics.csproj.nuget.g.targets │ │ │ ├── Release │ │ │ │ └── net6.0 │ │ │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ │ │ ├── Globomantics.AssemblyInfo.cs │ │ │ │ │ ├── Globomantics.AssemblyInfoInputs.cache │ │ │ │ │ ├── Globomantics.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ │ ├── Globomantics.GlobalUsings.g.cs │ │ │ │ │ ├── Globomantics.RazorAssemblyInfo.cache │ │ │ │ │ ├── Globomantics.RazorAssemblyInfo.cs │ │ │ │ │ ├── Globomantics.assets.cache │ │ │ │ │ └── Globomantics.csproj.AssemblyReference.cache │ │ │ ├── project.assets.json │ │ │ ├── project.nuget.cache │ │ │ └── staticwebassets.pack.sentinel │ │ └── wwwroot │ │ │ └── img │ │ │ └── globomantics-logo-darkblue.png │ └── Shared │ │ ├── ConferenceModel.cs │ │ ├── Globomantics.Shared.csproj │ │ ├── ProposalModel.cs │ │ ├── bin │ │ └── Debug │ │ │ └── net6.0 │ │ │ ├── Globomantics.Shared.deps.json │ │ │ ├── Globomantics.Shared.dll │ │ │ └── Globomantics.Shared.pdb │ │ └── obj │ │ ├── Debug │ │ └── net6.0 │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ ├── Globomantics.Shared.AssemblyInfo.cs │ │ │ ├── Globomantics.Shared.AssemblyInfoInputs.cache │ │ │ ├── Globomantics.Shared.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── Globomantics.Shared.GlobalUsings.g.cs │ │ │ ├── Globomantics.Shared.assets.cache │ │ │ ├── Globomantics.Shared.csproj.AssemblyReference.cache │ │ │ ├── Globomantics.Shared.csproj.BuildWithSkipAnalyzers │ │ │ ├── Globomantics.Shared.csproj.CoreCompileInputs.cache │ │ │ ├── Globomantics.Shared.csproj.FileListAbsolute.txt │ │ │ ├── Globomantics.Shared.dll │ │ │ ├── Globomantics.Shared.pdb │ │ │ ├── _IsIncrementalBuild │ │ │ ├── ref │ │ │ └── Globomantics.Shared.dll │ │ │ └── refint │ │ │ └── Globomantics.Shared.dll │ │ ├── Globomantics.Shared.csproj.nuget.dgspec.json │ │ ├── Globomantics.Shared.csproj.nuget.g.props │ │ ├── Globomantics.Shared.csproj.nuget.g.targets │ │ ├── Release │ │ └── net6.0 │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ ├── Globomantics.Shared.AssemblyInfo.cs │ │ │ ├── Globomantics.Shared.AssemblyInfoInputs.cache │ │ │ ├── Globomantics.Shared.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── Globomantics.Shared.GlobalUsings.g.cs │ │ │ ├── Globomantics.Shared.assets.cache │ │ │ └── Globomantics.Shared.csproj.AssemblyReference.cache │ │ ├── project.assets.json │ │ └── project.nuget.cache ├── OAuthClientCredentialsManaged │ ├── Globomantics.Api │ │ ├── Controllers │ │ │ ├── ConferenceController.cs │ │ │ └── ProposalController.cs │ │ ├── Globomantics.Api.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Repositories │ │ │ ├── ConferenceRepository.cs │ │ │ ├── IConferenceRepository.cs │ │ │ ├── IProposalRepository.cs │ │ │ └── ProposalRepository.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ ├── Globomantics.Idp │ │ ├── Config.cs │ │ ├── Globomantics.Idp.csproj │ │ ├── HostingExtensions.cs │ │ ├── Pages │ │ │ ├── Account │ │ │ │ ├── AccessDenied.cshtml │ │ │ │ ├── AccessDenied.cshtml.cs │ │ │ │ ├── Login │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ ├── Index.cshtml.cs │ │ │ │ │ ├── InputModel.cs │ │ │ │ │ ├── LoginOptions.cs │ │ │ │ │ └── ViewModel.cs │ │ │ │ └── Logout │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ ├── Index.cshtml.cs │ │ │ │ │ ├── LoggedOut.cshtml │ │ │ │ │ ├── LoggedOut.cshtml.cs │ │ │ │ │ ├── LoggedOutViewModel.cs │ │ │ │ │ └── LogoutOptions.cs │ │ │ ├── Ciba │ │ │ │ ├── All.cshtml │ │ │ │ ├── All.cshtml.cs │ │ │ │ ├── Consent.cshtml │ │ │ │ ├── Consent.cshtml.cs │ │ │ │ ├── ConsentOptions.cs │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ ├── InputModel.cs │ │ │ │ ├── ViewModel.cs │ │ │ │ └── _ScopeListItem.cshtml │ │ │ ├── Consent │ │ │ │ ├── ConsentOptions.cs │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ ├── InputModel.cs │ │ │ │ ├── ViewModel.cs │ │ │ │ └── _ScopeListItem.cshtml │ │ │ ├── Device │ │ │ │ ├── DeviceOptions.cs │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ ├── InputModel.cs │ │ │ │ ├── Success.cshtml │ │ │ │ ├── Success.cshtml.cs │ │ │ │ ├── ViewModel.cs │ │ │ │ └── _ScopeListItem.cshtml │ │ │ ├── Diagnostics │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── Extensions.cs │ │ │ ├── ExternalLogin │ │ │ │ ├── Callback.cshtml │ │ │ │ ├── Callback.cshtml.cs │ │ │ │ ├── Challenge.cshtml │ │ │ │ └── Challenge.cshtml.cs │ │ │ ├── Grants │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── Home │ │ │ │ └── Error │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ ├── Index.cshtml.cs │ │ │ │ │ └── ViewModel.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── Redirect │ │ │ │ ├── Index.cshtml │ │ │ │ └── Index.cshtml.cs │ │ │ ├── SecurityHeadersAttribute.cs │ │ │ ├── ServerSideSessions │ │ │ │ ├── Index.cshtml │ │ │ │ └── Index.cshtml.cs │ │ │ ├── Shared │ │ │ │ ├── _Layout.cshtml │ │ │ │ ├── _Nav.cshtml │ │ │ │ └── _ValidationSummary.cshtml │ │ │ ├── TestUsers.cs │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── keys │ │ │ ├── is-signing-key-7D97F114F34945C97D86D7C77F697BC0.json │ │ │ ├── is-signing-key-A60035173DE24E3C358CF2E3C2C8DF7C.json │ │ │ └── is-signing-key-E6DE950E5103AB9AB6A44ABF8341F941.json │ │ └── wwwroot │ │ │ ├── css │ │ │ ├── site.css │ │ │ ├── site.min.css │ │ │ └── site.scss │ │ │ ├── duende-logo.svg │ │ │ ├── favicon.ico │ │ │ ├── js │ │ │ ├── signin-redirect.js │ │ │ └── signout-redirect.js │ │ │ └── lib │ │ │ ├── bootstrap │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── dist │ │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ │ ├── bootstrap4-glyphicons │ │ │ ├── LICENSE │ │ │ ├── css │ │ │ │ ├── bootstrap-glyphicons.css │ │ │ │ └── bootstrap-glyphicons.min.css │ │ │ ├── fonts │ │ │ │ └── glyphicons │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── maps │ │ │ │ ├── glyphicons-fontawesome.css │ │ │ │ ├── glyphicons-fontawesome.less │ │ │ │ └── glyphicons-fontawesome.min.css │ │ │ └── jquery │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ └── dist │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ ├── jquery.slim.js │ │ │ ├── jquery.slim.min.js │ │ │ └── jquery.slim.min.map │ ├── Globomantics.sln │ ├── Globomantics │ │ ├── ApiServices │ │ │ ├── ConferenceApiService.cs │ │ │ ├── IConferenceApiService.cs │ │ │ ├── IProposalApiService.cs │ │ │ └── ProposalApiService.cs │ │ ├── Controllers │ │ │ ├── ConferenceController.cs │ │ │ └── ProposalController.cs │ │ ├── Globomantics.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Views │ │ │ ├── Conference │ │ │ │ ├── Add.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── Proposal │ │ │ │ ├── AddProposal.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ │ └── _Layout.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── wwwroot │ │ │ └── img │ │ │ └── globomantics-logo-darkblue.png │ └── Shared │ │ ├── ConferenceModel.cs │ │ ├── Globomantics.Shared.csproj │ │ └── ProposalModel.cs └── OAuthClientCredentialsReferenceTokens │ ├── Globomantics.Api │ ├── Controllers │ │ ├── ConferenceController.cs │ │ └── ProposalController.cs │ ├── Globomantics.Api.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Repositories │ │ ├── ConferenceRepository.cs │ │ ├── IConferenceRepository.cs │ │ ├── IProposalRepository.cs │ │ └── ProposalRepository.cs │ ├── appsettings.Development.json │ └── appsettings.json │ ├── Globomantics.Idp │ ├── Config.cs │ ├── Globomantics.Idp.csproj │ ├── HostingExtensions.cs │ ├── Pages │ │ ├── Account │ │ │ ├── AccessDenied.cshtml │ │ │ ├── AccessDenied.cshtml.cs │ │ │ ├── Login │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ ├── InputModel.cs │ │ │ │ ├── LoginOptions.cs │ │ │ │ └── ViewModel.cs │ │ │ └── Logout │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ ├── LoggedOut.cshtml │ │ │ │ ├── LoggedOut.cshtml.cs │ │ │ │ ├── LoggedOutViewModel.cs │ │ │ │ └── LogoutOptions.cs │ │ ├── Ciba │ │ │ ├── All.cshtml │ │ │ ├── All.cshtml.cs │ │ │ ├── Consent.cshtml │ │ │ ├── Consent.cshtml.cs │ │ │ ├── ConsentOptions.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── InputModel.cs │ │ │ ├── ViewModel.cs │ │ │ └── _ScopeListItem.cshtml │ │ ├── Consent │ │ │ ├── ConsentOptions.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── InputModel.cs │ │ │ ├── ViewModel.cs │ │ │ └── _ScopeListItem.cshtml │ │ ├── Device │ │ │ ├── DeviceOptions.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── InputModel.cs │ │ │ ├── Success.cshtml │ │ │ ├── Success.cshtml.cs │ │ │ ├── ViewModel.cs │ │ │ └── _ScopeListItem.cshtml │ │ ├── Diagnostics │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ └── ViewModel.cs │ │ ├── Extensions.cs │ │ ├── ExternalLogin │ │ │ ├── Callback.cshtml │ │ │ ├── Callback.cshtml.cs │ │ │ ├── Challenge.cshtml │ │ │ └── Challenge.cshtml.cs │ │ ├── Grants │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ └── ViewModel.cs │ │ ├── Home │ │ │ └── Error │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ └── ViewModel.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── Redirect │ │ │ ├── Index.cshtml │ │ │ └── Index.cshtml.cs │ │ ├── SecurityHeadersAttribute.cs │ │ ├── ServerSideSessions │ │ │ ├── Index.cshtml │ │ │ └── Index.cshtml.cs │ │ ├── Shared │ │ │ ├── _Layout.cshtml │ │ │ ├── _Nav.cshtml │ │ │ └── _ValidationSummary.cshtml │ │ ├── TestUsers.cs │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── keys │ │ ├── is-signing-key-74F0FC6137BB17C3282D36A37471071F.json │ │ ├── is-signing-key-A60035173DE24E3C358CF2E3C2C8DF7C.json │ │ └── is-signing-key-E6DE950E5103AB9AB6A44ABF8341F941.json │ └── wwwroot │ │ ├── css │ │ ├── site.css │ │ ├── site.min.css │ │ └── site.scss │ │ ├── duende-logo.svg │ │ ├── favicon.ico │ │ ├── js │ │ ├── signin-redirect.js │ │ └── signout-redirect.js │ │ └── lib │ │ ├── bootstrap │ │ ├── LICENSE │ │ ├── README.md │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── bootstrap4-glyphicons │ │ ├── LICENSE │ │ ├── css │ │ │ ├── bootstrap-glyphicons.css │ │ │ └── bootstrap-glyphicons.min.css │ │ ├── fonts │ │ │ └── glyphicons │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── maps │ │ │ ├── glyphicons-fontawesome.css │ │ │ ├── glyphicons-fontawesome.less │ │ │ └── glyphicons-fontawesome.min.css │ │ └── jquery │ │ ├── LICENSE.txt │ │ ├── README.md │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ ├── jquery.slim.js │ │ ├── jquery.slim.min.js │ │ └── jquery.slim.min.map │ ├── Globomantics.sln │ ├── Globomantics │ ├── ApiServices │ │ ├── ConferenceApiService.cs │ │ ├── IConferenceApiService.cs │ │ ├── IProposalApiService.cs │ │ └── ProposalApiService.cs │ ├── Controllers │ │ ├── ConferenceController.cs │ │ └── ProposalController.cs │ ├── EnsureAccessTokenFilter.cs │ ├── Globomantics.csproj │ ├── HttpClientExtensions.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Views │ │ ├── Conference │ │ │ ├── Add.cshtml │ │ │ └── Index.cshtml │ │ ├── Proposal │ │ │ ├── AddProposal.cshtml │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ └── _Layout.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ │ └── img │ │ └── globomantics-logo-darkblue.png │ └── Shared │ ├── ConferenceModel.cs │ ├── Globomantics.Shared.csproj │ └── ProposalModel.cs ├── m4 └── AuthorizationCode │ ├── Globomantics.Api │ ├── Controllers │ │ ├── ConferenceController.cs │ │ └── ProposalController.cs │ ├── Globomantics.Api.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Repositories │ │ ├── ConferenceRepository.cs │ │ ├── IConferenceRepository.cs │ │ ├── IProposalRepository.cs │ │ └── ProposalRepository.cs │ ├── appsettings.Development.json │ └── appsettings.json │ ├── Globomantics.Idp │ ├── Config.cs │ ├── Globomantics.Idp.csproj │ ├── HostingExtensions.cs │ ├── Pages │ │ ├── Account │ │ │ ├── AccessDenied.cshtml │ │ │ ├── AccessDenied.cshtml.cs │ │ │ ├── Login │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ ├── InputModel.cs │ │ │ │ ├── LoginOptions.cs │ │ │ │ └── ViewModel.cs │ │ │ └── Logout │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ ├── LoggedOut.cshtml │ │ │ │ ├── LoggedOut.cshtml.cs │ │ │ │ ├── LoggedOutViewModel.cs │ │ │ │ └── LogoutOptions.cs │ │ ├── Ciba │ │ │ ├── All.cshtml │ │ │ ├── All.cshtml.cs │ │ │ ├── Consent.cshtml │ │ │ ├── Consent.cshtml.cs │ │ │ ├── ConsentOptions.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── InputModel.cs │ │ │ ├── ViewModel.cs │ │ │ └── _ScopeListItem.cshtml │ │ ├── Consent │ │ │ ├── ConsentOptions.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── InputModel.cs │ │ │ ├── ViewModel.cs │ │ │ └── _ScopeListItem.cshtml │ │ ├── Device │ │ │ ├── DeviceOptions.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── InputModel.cs │ │ │ ├── Success.cshtml │ │ │ ├── Success.cshtml.cs │ │ │ ├── ViewModel.cs │ │ │ └── _ScopeListItem.cshtml │ │ ├── Diagnostics │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ └── ViewModel.cs │ │ ├── Extensions.cs │ │ ├── ExternalLogin │ │ │ ├── Callback.cshtml │ │ │ ├── Callback.cshtml.cs │ │ │ ├── Challenge.cshtml │ │ │ └── Challenge.cshtml.cs │ │ ├── Grants │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ └── ViewModel.cs │ │ ├── Home │ │ │ └── Error │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ └── ViewModel.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── Redirect │ │ │ ├── Index.cshtml │ │ │ └── Index.cshtml.cs │ │ ├── SecurityHeadersAttribute.cs │ │ ├── ServerSideSessions │ │ │ ├── Index.cshtml │ │ │ └── Index.cshtml.cs │ │ ├── Shared │ │ │ ├── _Layout.cshtml │ │ │ ├── _Nav.cshtml │ │ │ └── _ValidationSummary.cshtml │ │ ├── TestUsers.cs │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── keys │ │ ├── is-signing-key-A60035173DE24E3C358CF2E3C2C8DF7C.json │ │ ├── is-signing-key-B0AE27C178F7A4EB501230376174E46E.json │ │ └── is-signing-key-E6DE950E5103AB9AB6A44ABF8341F941.json │ └── wwwroot │ │ ├── css │ │ ├── site.css │ │ ├── site.min.css │ │ └── site.scss │ │ ├── duende-logo.svg │ │ ├── favicon.ico │ │ ├── js │ │ ├── signin-redirect.js │ │ └── signout-redirect.js │ │ └── lib │ │ ├── bootstrap │ │ ├── LICENSE │ │ ├── README.md │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── bootstrap4-glyphicons │ │ ├── LICENSE │ │ ├── css │ │ │ ├── bootstrap-glyphicons.css │ │ │ └── bootstrap-glyphicons.min.css │ │ ├── fonts │ │ │ └── glyphicons │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── maps │ │ │ ├── glyphicons-fontawesome.css │ │ │ ├── glyphicons-fontawesome.less │ │ │ └── glyphicons-fontawesome.min.css │ │ └── jquery │ │ ├── LICENSE.txt │ │ ├── README.md │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ ├── jquery.slim.js │ │ ├── jquery.slim.min.js │ │ └── jquery.slim.min.map │ ├── Globomantics.sln │ ├── Globomantics │ ├── ApiServices │ │ ├── ConferenceApiService.cs │ │ ├── IConferenceApiService.cs │ │ ├── IProposalApiService.cs │ │ └── ProposalApiService.cs │ ├── Controllers │ │ ├── ConferenceController.cs │ │ └── ProposalController.cs │ ├── EnsureAccessTokenFilter.cs │ ├── Globomantics.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Views │ │ ├── Conference │ │ │ ├── Add.cshtml │ │ │ └── Index.cshtml │ │ ├── Proposal │ │ │ ├── AddProposal.cshtml │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ └── _Layout.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ │ └── img │ │ └── globomantics-logo-darkblue.png │ └── Shared │ ├── ConferenceModel.cs │ ├── Globomantics.Shared.csproj │ └── ProposalModel.cs └── m5 ├── Authorization ├── Globomantics.Api │ ├── Controllers │ │ ├── ConferenceController.cs │ │ └── ProposalController.cs │ ├── Globomantics.Api.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Repositories │ │ ├── ConferenceRepository.cs │ │ ├── IConferenceRepository.cs │ │ ├── IProposalRepository.cs │ │ └── ProposalRepository.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── Globomantics.Idp │ ├── Config.cs │ ├── Globomantics.Idp.csproj │ ├── HostingExtensions.cs │ ├── Pages │ │ ├── Account │ │ │ ├── AccessDenied.cshtml │ │ │ ├── AccessDenied.cshtml.cs │ │ │ ├── Login │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ ├── InputModel.cs │ │ │ │ ├── LoginOptions.cs │ │ │ │ └── ViewModel.cs │ │ │ └── Logout │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ ├── LoggedOut.cshtml │ │ │ │ ├── LoggedOut.cshtml.cs │ │ │ │ ├── LoggedOutViewModel.cs │ │ │ │ └── LogoutOptions.cs │ │ ├── Ciba │ │ │ ├── All.cshtml │ │ │ ├── All.cshtml.cs │ │ │ ├── Consent.cshtml │ │ │ ├── Consent.cshtml.cs │ │ │ ├── ConsentOptions.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── InputModel.cs │ │ │ ├── ViewModel.cs │ │ │ └── _ScopeListItem.cshtml │ │ ├── Consent │ │ │ ├── ConsentOptions.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── InputModel.cs │ │ │ ├── ViewModel.cs │ │ │ └── _ScopeListItem.cshtml │ │ ├── Device │ │ │ ├── DeviceOptions.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── InputModel.cs │ │ │ ├── Success.cshtml │ │ │ ├── Success.cshtml.cs │ │ │ ├── ViewModel.cs │ │ │ └── _ScopeListItem.cshtml │ │ ├── Diagnostics │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ └── ViewModel.cs │ │ ├── Extensions.cs │ │ ├── ExternalLogin │ │ │ ├── Callback.cshtml │ │ │ ├── Callback.cshtml.cs │ │ │ ├── Challenge.cshtml │ │ │ └── Challenge.cshtml.cs │ │ ├── Grants │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ └── ViewModel.cs │ │ ├── Home │ │ │ └── Error │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ └── ViewModel.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── Redirect │ │ │ ├── Index.cshtml │ │ │ └── Index.cshtml.cs │ │ ├── SecurityHeadersAttribute.cs │ │ ├── ServerSideSessions │ │ │ ├── Index.cshtml │ │ │ └── Index.cshtml.cs │ │ ├── Shared │ │ │ ├── _Layout.cshtml │ │ │ ├── _Nav.cshtml │ │ │ └── _ValidationSummary.cshtml │ │ ├── TestUsers.cs │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── keys │ │ ├── is-signing-key-969668CC5445A19C8A1F2CFDCDC8CC70.json │ │ ├── is-signing-key-A60035173DE24E3C358CF2E3C2C8DF7C.json │ │ ├── is-signing-key-B0AE27C178F7A4EB501230376174E46E.json │ │ └── is-signing-key-E6DE950E5103AB9AB6A44ABF8341F941.json │ └── wwwroot │ │ ├── css │ │ ├── site.css │ │ ├── site.min.css │ │ └── site.scss │ │ ├── duende-logo.svg │ │ ├── favicon.ico │ │ ├── js │ │ ├── signin-redirect.js │ │ └── signout-redirect.js │ │ └── lib │ │ ├── bootstrap │ │ ├── LICENSE │ │ ├── README.md │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── bootstrap4-glyphicons │ │ ├── LICENSE │ │ ├── css │ │ │ ├── bootstrap-glyphicons.css │ │ │ └── bootstrap-glyphicons.min.css │ │ ├── fonts │ │ │ └── glyphicons │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── maps │ │ │ ├── glyphicons-fontawesome.css │ │ │ ├── glyphicons-fontawesome.less │ │ │ └── glyphicons-fontawesome.min.css │ │ └── jquery │ │ ├── LICENSE.txt │ │ ├── README.md │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ ├── jquery.slim.js │ │ ├── jquery.slim.min.js │ │ └── jquery.slim.min.map ├── Globomantics.sln ├── Globomantics │ ├── ApiServices │ │ ├── ConferenceApiService.cs │ │ ├── IConferenceApiService.cs │ │ ├── IProposalApiService.cs │ │ └── ProposalApiService.cs │ ├── Controllers │ │ ├── ConferenceController.cs │ │ └── ProposalController.cs │ ├── EnsureAccessTokenFilter.cs │ ├── Globomantics.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Views │ │ ├── Conference │ │ │ ├── Add.cshtml │ │ │ └── Index.cshtml │ │ ├── Proposal │ │ │ ├── AddProposal.cshtml │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ └── _Layout.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ │ └── img │ │ └── globomantics-logo-darkblue.png └── Shared │ ├── ConferenceModel.cs │ ├── Globomantics.Shared.csproj │ └── ProposalModel.cs └── AuthorizationService ├── Globomantics.Api ├── ApiServices │ ├── AuthorizationApiService.cs │ └── IAuthorizationApiService.cs ├── Authorization │ ├── IsInRoleHandler.cs │ └── IsInRoleRequirement.cs ├── Controllers │ ├── ConferenceController.cs │ └── ProposalController.cs ├── Globomantics.Api.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── Repositories │ ├── ConferenceRepository.cs │ ├── IConferenceRepository.cs │ ├── IProposalRepository.cs │ └── ProposalRepository.cs ├── appsettings.Development.json └── appsettings.json ├── Globomantics.AuthorizationService ├── Globomantics.AuthorizationService.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.Development.json └── appsettings.json ├── Globomantics.Idp ├── Config.cs ├── Globomantics.Idp.csproj ├── HostingExtensions.cs ├── Pages │ ├── Account │ │ ├── AccessDenied.cshtml │ │ ├── AccessDenied.cshtml.cs │ │ ├── Login │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── InputModel.cs │ │ │ ├── LoginOptions.cs │ │ │ └── ViewModel.cs │ │ └── Logout │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── LoggedOut.cshtml │ │ │ ├── LoggedOut.cshtml.cs │ │ │ ├── LoggedOutViewModel.cs │ │ │ └── LogoutOptions.cs │ ├── Ciba │ │ ├── All.cshtml │ │ ├── All.cshtml.cs │ │ ├── Consent.cshtml │ │ ├── Consent.cshtml.cs │ │ ├── ConsentOptions.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── InputModel.cs │ │ ├── ViewModel.cs │ │ └── _ScopeListItem.cshtml │ ├── Consent │ │ ├── ConsentOptions.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── InputModel.cs │ │ ├── ViewModel.cs │ │ └── _ScopeListItem.cshtml │ ├── Device │ │ ├── DeviceOptions.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── InputModel.cs │ │ ├── Success.cshtml │ │ ├── Success.cshtml.cs │ │ ├── ViewModel.cs │ │ └── _ScopeListItem.cshtml │ ├── Diagnostics │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ └── ViewModel.cs │ ├── Extensions.cs │ ├── ExternalLogin │ │ ├── Callback.cshtml │ │ ├── Callback.cshtml.cs │ │ ├── Challenge.cshtml │ │ └── Challenge.cshtml.cs │ ├── Grants │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ └── ViewModel.cs │ ├── Home │ │ └── Error │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ └── ViewModel.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── Redirect │ │ ├── Index.cshtml │ │ └── Index.cshtml.cs │ ├── SecurityHeadersAttribute.cs │ ├── ServerSideSessions │ │ ├── Index.cshtml │ │ └── Index.cshtml.cs │ ├── Shared │ │ ├── _Layout.cshtml │ │ ├── _Nav.cshtml │ │ └── _ValidationSummary.cshtml │ ├── TestUsers.cs │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── Program.cs ├── Properties │ └── launchSettings.json ├── keys │ ├── is-signing-key-969668CC5445A19C8A1F2CFDCDC8CC70.json │ ├── is-signing-key-A60035173DE24E3C358CF2E3C2C8DF7C.json │ ├── is-signing-key-B0AE27C178F7A4EB501230376174E46E.json │ ├── is-signing-key-D7FA3CD4D76A24F723F47195034BDA99.json │ └── is-signing-key-E6DE950E5103AB9AB6A44ABF8341F941.json └── wwwroot │ ├── css │ ├── site.css │ ├── site.min.css │ └── site.scss │ ├── duende-logo.svg │ ├── favicon.ico │ ├── js │ ├── signin-redirect.js │ └── signout-redirect.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ ├── README.md │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── bootstrap4-glyphicons │ ├── LICENSE │ ├── css │ │ ├── bootstrap-glyphicons.css │ │ └── bootstrap-glyphicons.min.css │ ├── fonts │ │ └── glyphicons │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ └── maps │ │ ├── glyphicons-fontawesome.css │ │ ├── glyphicons-fontawesome.less │ │ └── glyphicons-fontawesome.min.css │ └── jquery │ ├── LICENSE.txt │ ├── README.md │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ ├── jquery.min.map │ ├── jquery.slim.js │ ├── jquery.slim.min.js │ └── jquery.slim.min.map ├── Globomantics.sln ├── Globomantics ├── ApiServices │ ├── ConferenceApiService.cs │ ├── IConferenceApiService.cs │ ├── IProposalApiService.cs │ └── ProposalApiService.cs ├── Controllers │ ├── ConferenceController.cs │ └── ProposalController.cs ├── EnsureAccessTokenFilter.cs ├── Globomantics.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── Views │ ├── Conference │ │ ├── Add.cshtml │ │ └── Index.cshtml │ ├── Proposal │ │ ├── AddProposal.cshtml │ │ └── Index.cshtml │ ├── Shared │ │ └── _Layout.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json └── wwwroot │ └── img │ └── globomantics-logo-darkblue.png └── Shared ├── ConferenceModel.cs ├── Globomantics.Shared.csproj └── ProposalModel.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /.vs/ps-aspnetcore6apiauth/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/ps-aspnetcore6apiauth/v17/.wsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/.vs/ps-aspnetcore6apiauth/v17/.wsuo -------------------------------------------------------------------------------- /.vs/ps-aspnetcore6apiauth/v17/workspaceFileList.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/.vs/ps-aspnetcore6apiauth/v17/workspaceFileList.bin -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /m2/ApiKey/.vs/Globomantics/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/.vs/Globomantics/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /m2/ApiKey/.vs/Globomantics/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m2/ApiKey/.vs/Globomantics/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/.vs/Globomantics/config/applicationhost.config -------------------------------------------------------------------------------- /m2/ApiKey/.vs/Globomantics/v17/.futdcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/.vs/Globomantics/v17/.futdcache.v2 -------------------------------------------------------------------------------- /m2/ApiKey/.vs/Globomantics/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/.vs/Globomantics/v17/.suo -------------------------------------------------------------------------------- /m2/ApiKey/.vs/ProjectEvaluation/globomantics.metadata.v5.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/.vs/ProjectEvaluation/globomantics.metadata.v5.1 -------------------------------------------------------------------------------- /m2/ApiKey/.vs/ProjectEvaluation/globomantics.metadata.v5.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/.vs/ProjectEvaluation/globomantics.metadata.v5.2 -------------------------------------------------------------------------------- /m2/ApiKey/.vs/ProjectEvaluation/globomantics.projects.v5.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/.vs/ProjectEvaluation/globomantics.projects.v5.1 -------------------------------------------------------------------------------- /m2/ApiKey/.vs/ProjectEvaluation/globomantics.projects.v5.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/.vs/ProjectEvaluation/globomantics.projects.v5.2 -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/ApiKeyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics.Api/ApiKeyAttribute.cs -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/ApiKeyMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics.Api/ApiKeyMiddleware.cs -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/Controllers/ConferenceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics.Api/Controllers/ConferenceController.cs -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/Controllers/ProposalController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics.Api/Controllers/ProposalController.cs -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/Globomantics.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics.Api/Globomantics.Api.csproj -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics.Api/Program.cs -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics.Api/Properties/launchSettings.json -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/Repositories/ConferenceRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics.Api/Repositories/ConferenceRepository.cs -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/Repositories/IConferenceRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics.Api/Repositories/IConferenceRepository.cs -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/Repositories/IProposalRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics.Api/Repositories/IProposalRepository.cs -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/Repositories/ProposalRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics.Api/Repositories/ProposalRepository.cs -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/SwaggerApiKeySecurity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics.Api/SwaggerApiKeySecurity.cs -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics.Api/appsettings.Development.json -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics.Api/appsettings.json -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/bin/Debug/net6.0/Globomantics.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics.Api/bin/Debug/net6.0/Globomantics.Api.dll -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/bin/Debug/net6.0/Globomantics.Api.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics.Api/bin/Debug/net6.0/Globomantics.Api.exe -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/bin/Debug/net6.0/Globomantics.Api.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics.Api/bin/Debug/net6.0/Globomantics.Api.pdb -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/bin/Debug/net6.0/Globomantics.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics.Api/bin/Debug/net6.0/Globomantics.Shared.dll -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/bin/Debug/net6.0/Globomantics.Shared.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics.Api/bin/Debug/net6.0/Globomantics.Shared.pdb -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/bin/Debug/net6.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics.Api/bin/Debug/net6.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/bin/Debug/net6.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics.Api/bin/Debug/net6.0/appsettings.json -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/obj/Debug/net6.0/Globomantics.Api.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/obj/Debug/net6.0/Globomantics.Api.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/obj/Debug/net6.0/Globomantics.Api.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/obj/Debug/net6.0/Globomantics.Api.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0dd1a5eab15c3e4e49e140b9be5c4b4f605ba1ba 2 | -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/obj/Debug/net6.0/Globomantics.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics.Api/obj/Debug/net6.0/Globomantics.Api.dll -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/obj/Debug/net6.0/Globomantics.Api.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | f7bba35948c1613ee0fbdbec4f63307daf96b1a6 2 | -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/obj/Debug/net6.0/Globomantics.Api.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics.Api/obj/Debug/net6.0/Globomantics.Api.pdb -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics.Api/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/obj/Debug/net6.0/project.razor.vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics.Api/obj/Debug/net6.0/project.razor.vs.json -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/obj/Debug/net6.0/ref/Globomantics.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics.Api/obj/Debug/net6.0/ref/Globomantics.Api.dll -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/obj/Globomantics.Api.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics.Api/obj/Globomantics.Api.csproj.nuget.g.props -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/obj/Release/net6.0/Globomantics.Api.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 16294cf9c72a5fd001512c14a00efc98ed744d68 2 | -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics.Api/obj/project.assets.json -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.Api/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics.Api/obj/project.nuget.cache -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics.sln -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/ApiServices/ConferenceApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/ApiServices/ConferenceApiService.cs -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/ApiServices/IConferenceApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/ApiServices/IConferenceApiService.cs -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/ApiServices/IProposalApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/ApiServices/IProposalApiService.cs -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/ApiServices/ProposalApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/ApiServices/ProposalApiService.cs -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/Controllers/ConferenceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/Controllers/ConferenceController.cs -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/Controllers/ProposalController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/Controllers/ProposalController.cs -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/Globomantics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/Globomantics.csproj -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/Program.cs -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/Properties/launchSettings.json -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/Views/Conference/Add.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/Views/Conference/Add.cshtml -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/Views/Conference/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/Views/Conference/Index.cshtml -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/Views/Proposal/AddProposal.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/Views/Proposal/AddProposal.cshtml -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/Views/Proposal/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/Views/Proposal/Index.cshtml -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/appsettings.Development.json -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/appsettings.json -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/bin/Debug/net6.0/Globomantics.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/bin/Debug/net6.0/Globomantics.Shared.dll -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/bin/Debug/net6.0/Globomantics.Shared.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/bin/Debug/net6.0/Globomantics.Shared.pdb -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/bin/Debug/net6.0/Globomantics.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/bin/Debug/net6.0/Globomantics.deps.json -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/bin/Debug/net6.0/Globomantics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/bin/Debug/net6.0/Globomantics.dll -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/bin/Debug/net6.0/Globomantics.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/bin/Debug/net6.0/Globomantics.exe -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/bin/Debug/net6.0/Globomantics.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/bin/Debug/net6.0/Globomantics.pdb -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/bin/Debug/net6.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/bin/Debug/net6.0/appsettings.Development.json -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/bin/Debug/net6.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/bin/Debug/net6.0/appsettings.json -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/obj/Debug/net6.0/Globomantics.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/obj/Debug/net6.0/Globomantics.AssemblyInfo.cs -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/obj/Debug/net6.0/Globomantics.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | bc7f37637059da4354fad31d2c67c588fa525ccf 2 | -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/obj/Debug/net6.0/Globomantics.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/obj/Debug/net6.0/Globomantics.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 5860763757f4f08c7ebdea1b3a94a18109f17861 2 | -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/obj/Debug/net6.0/Globomantics.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/obj/Debug/net6.0/Globomantics.assets.cache -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/obj/Debug/net6.0/Globomantics.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/obj/Debug/net6.0/Globomantics.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/obj/Debug/net6.0/Globomantics.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4b08c7ae91e3cb03a22437e7dee17f77935ae92a 2 | -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/obj/Debug/net6.0/Globomantics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/obj/Debug/net6.0/Globomantics.dll -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/obj/Debug/net6.0/Globomantics.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 209031241f4282140b00db38db2a86b7b99a1815 2 | -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/obj/Debug/net6.0/Globomantics.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/obj/Debug/net6.0/Globomantics.pdb -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/obj/Debug/net6.0/project.razor.vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/obj/Debug/net6.0/project.razor.vs.json -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/obj/Debug/net6.0/ref/Globomantics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/obj/Debug/net6.0/ref/Globomantics.dll -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/obj/Debug/net6.0/refint/Globomantics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/obj/Debug/net6.0/refint/Globomantics.dll -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/obj/Debug/net6.0/staticwebassets.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/obj/Debug/net6.0/staticwebassets.build.json -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/obj/Debug/net6.0/staticwebassets.pack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/obj/Debug/net6.0/staticwebassets.pack.json -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/obj/Globomantics.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/obj/Globomantics.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/obj/Globomantics.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/obj/Globomantics.csproj.nuget.g.props -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/obj/Globomantics.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/obj/Globomantics.csproj.nuget.g.targets -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/obj/Release/net6.0/Globomantics.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 5860763757f4f08c7ebdea1b3a94a18109f17861 2 | -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/obj/Release/net6.0/Globomantics.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/obj/Release/net6.0/Globomantics.assets.cache -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/obj/project.assets.json -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/obj/project.nuget.cache -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/obj/staticwebassets.pack.sentinel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/obj/staticwebassets.pack.sentinel -------------------------------------------------------------------------------- /m2/ApiKey/Globomantics/wwwroot/img/globomantics-logo-darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Globomantics/wwwroot/img/globomantics-logo-darkblue.png -------------------------------------------------------------------------------- /m2/ApiKey/Shared/ConferenceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Shared/ConferenceModel.cs -------------------------------------------------------------------------------- /m2/ApiKey/Shared/Globomantics.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Shared/Globomantics.Shared.csproj -------------------------------------------------------------------------------- /m2/ApiKey/Shared/ProposalModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Shared/ProposalModel.cs -------------------------------------------------------------------------------- /m2/ApiKey/Shared/bin/Debug/net6.0/Globomantics.Shared.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Shared/bin/Debug/net6.0/Globomantics.Shared.deps.json -------------------------------------------------------------------------------- /m2/ApiKey/Shared/bin/Debug/net6.0/Globomantics.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Shared/bin/Debug/net6.0/Globomantics.Shared.dll -------------------------------------------------------------------------------- /m2/ApiKey/Shared/bin/Debug/net6.0/Globomantics.Shared.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Shared/bin/Debug/net6.0/Globomantics.Shared.pdb -------------------------------------------------------------------------------- /m2/ApiKey/Shared/obj/Debug/net6.0/Globomantics.Shared.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Shared/obj/Debug/net6.0/Globomantics.Shared.AssemblyInfo.cs -------------------------------------------------------------------------------- /m2/ApiKey/Shared/obj/Debug/net6.0/Globomantics.Shared.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 46cbe809705a244bc0e1cecc67e46c16dd661fcd 2 | -------------------------------------------------------------------------------- /m2/ApiKey/Shared/obj/Debug/net6.0/Globomantics.Shared.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Shared/obj/Debug/net6.0/Globomantics.Shared.assets.cache -------------------------------------------------------------------------------- /m2/ApiKey/Shared/obj/Debug/net6.0/Globomantics.Shared.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m2/ApiKey/Shared/obj/Debug/net6.0/Globomantics.Shared.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 96f07a07430bffb2baa926425d2a000c5960117c 2 | -------------------------------------------------------------------------------- /m2/ApiKey/Shared/obj/Debug/net6.0/Globomantics.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Shared/obj/Debug/net6.0/Globomantics.Shared.dll -------------------------------------------------------------------------------- /m2/ApiKey/Shared/obj/Debug/net6.0/Globomantics.Shared.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Shared/obj/Debug/net6.0/Globomantics.Shared.pdb -------------------------------------------------------------------------------- /m2/ApiKey/Shared/obj/Debug/net6.0/ref/Globomantics.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Shared/obj/Debug/net6.0/ref/Globomantics.Shared.dll -------------------------------------------------------------------------------- /m2/ApiKey/Shared/obj/Debug/net6.0/refint/Globomantics.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Shared/obj/Debug/net6.0/refint/Globomantics.Shared.dll -------------------------------------------------------------------------------- /m2/ApiKey/Shared/obj/Globomantics.Shared.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Shared/obj/Globomantics.Shared.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /m2/ApiKey/Shared/obj/Globomantics.Shared.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Shared/obj/Globomantics.Shared.csproj.nuget.g.props -------------------------------------------------------------------------------- /m2/ApiKey/Shared/obj/Globomantics.Shared.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Shared/obj/Globomantics.Shared.csproj.nuget.g.targets -------------------------------------------------------------------------------- /m2/ApiKey/Shared/obj/Release/net6.0/Globomantics.Shared.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 07a72e594b915245b2d95655481b1a3c245f0c5e 2 | -------------------------------------------------------------------------------- /m2/ApiKey/Shared/obj/Release/net6.0/Globomantics.Shared.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Shared/obj/Release/net6.0/Globomantics.Shared.assets.cache -------------------------------------------------------------------------------- /m2/ApiKey/Shared/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Shared/obj/project.assets.json -------------------------------------------------------------------------------- /m2/ApiKey/Shared/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/ApiKey/Shared/obj/project.nuget.cache -------------------------------------------------------------------------------- /m2/Cookie/Globomantics.Api/obj/Release/net6.0/Globomantics.Api.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 16294cf9c72a5fd001512c14a00efc98ed744d68 2 | -------------------------------------------------------------------------------- /m2/Cookie/Shared/obj/Release/net6.0/Globomantics.Shared.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 07a72e594b915245b2d95655481b1a3c245f0c5e 2 | -------------------------------------------------------------------------------- /m2/Cookie/Shared/obj/Release/net6.0/Globomantics.Shared.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Cookie/Shared/obj/Release/net6.0/Globomantics.Shared.assets.cache -------------------------------------------------------------------------------- /m2/CookieSPA/.vs/Globomantics/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/.vs/Globomantics/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /m2/CookieSPA/.vs/Globomantics/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m2/CookieSPA/.vs/Globomantics/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/.vs/Globomantics/config/applicationhost.config -------------------------------------------------------------------------------- /m2/CookieSPA/.vs/Globomantics/v17/.futdcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/.vs/Globomantics/v17/.futdcache.v2 -------------------------------------------------------------------------------- /m2/CookieSPA/.vs/Globomantics/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/.vs/Globomantics/v17/.suo -------------------------------------------------------------------------------- /m2/CookieSPA/.vs/ProjectEvaluation/globomantics.metadata.v5.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/.vs/ProjectEvaluation/globomantics.metadata.v5.2 -------------------------------------------------------------------------------- /m2/CookieSPA/.vs/ProjectEvaluation/globomantics.projects.v5.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/.vs/ProjectEvaluation/globomantics.projects.v5.2 -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics.sln -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/ApiServices/ConferenceApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/ApiServices/ConferenceApiService.cs -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/ApiServices/IConferenceApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/ApiServices/IConferenceApiService.cs -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/ApiServices/IProposalApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/ApiServices/IProposalApiService.cs -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/ApiServices/ProposalApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/ApiServices/ProposalApiService.cs -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/App.razor -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/Components/ConferenceListItem.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/Components/ConferenceListItem.razor -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/Components/ProposalListItem.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/Components/ProposalListItem.razor -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/Globomantics.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/Globomantics.Client.csproj -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/Pages/AddConference.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/Pages/AddConference.razor -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/Pages/AddProposal.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/Pages/AddProposal.razor -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/Pages/ConferenceList.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/Pages/ConferenceList.razor -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/Pages/ProposalList.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/Pages/ProposalList.razor -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/Pages/ProposalListModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/Pages/ProposalListModel.cs -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/Program.cs -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/Properties/launchSettings.json -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/ServerAuthenticationStateProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/ServerAuthenticationStateProvider.cs -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/Shared/MainLayout.razor -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/Shared/MainLayout.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/Shared/MainLayout.razor.css -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/_Imports.razor -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Buffers.dll -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Console.dll -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Core.dll -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Data.dll -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Drawing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Drawing.dll -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.IO.Pipes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.IO.Pipes.dll -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.IO.dll -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Linq.dll -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Memory.dll -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Net.Http.dll -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Net.Mail.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Net.Mail.dll -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Net.Ping.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Net.Ping.dll -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Net.Quic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Net.Quic.dll -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Net.dll -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Numerics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Numerics.dll -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Runtime.dll -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Security.dll -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Web.dll -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Windows.dll -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Xml.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Xml.Linq.dll -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.Xml.dll -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/System.dll -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/WindowsBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/WindowsBase.dll -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/dotnet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/dotnet.js -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/dotnet.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/dotnet.wasm -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/icudt.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/icudt.dat -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/icudt_CJK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/icudt_CJK.dat -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/icudt_EFIGS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/icudt_EFIGS.dat -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/icudt_no_CJK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/icudt_no_CJK.dat -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/mscorlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/mscorlib.dll -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/netstandard.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/bin/Debug/net6.0/netstandard.dll -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/obj/Debug/net6.0/Globomantics.Client.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/obj/Debug/net6.0/Globomantics.Client.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/obj/Debug/net6.0/Globomantics.Client.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/obj/Debug/net6.0/Globomantics.Client.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 1adabf8d5a15b9848bbc55e132b876da6c733759 2 | -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/obj/Debug/net6.0/blazor.boot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/obj/Debug/net6.0/blazor.boot.json -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/obj/project.assets.json -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/obj/project.nuget.cache -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/wwwroot/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/wwwroot/css/app.css -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/wwwroot/css/open-iconic/FONT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/wwwroot/css/open-iconic/FONT-LICENSE -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/wwwroot/css/open-iconic/ICON-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/wwwroot/css/open-iconic/ICON-LICENSE -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/wwwroot/css/open-iconic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/wwwroot/css/open-iconic/README.md -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/wwwroot/favicon.ico -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/wwwroot/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/wwwroot/icon-192.png -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/wwwroot/img/globomantics-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/wwwroot/img/globomantics-logo.png -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Client/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Client/wwwroot/index.html -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Server/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Server/Controllers/AccountController.cs -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Server/Controllers/ConferenceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Server/Controllers/ConferenceController.cs -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Server/Controllers/ProposalController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Server/Controllers/ProposalController.cs -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Server/Globomantics.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Server/Globomantics.Server.csproj -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Server/Models/LoginModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Server/Models/LoginModel.cs -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Server/Models/UserModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Server/Models/UserModel.cs -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Server/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Server/Pages/Error.cshtml -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Server/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Server/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Server/Program.cs -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Server/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Server/Properties/launchSettings.json -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Server/Repositories/ConferenceRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Server/Repositories/ConferenceRepository.cs -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Server/Repositories/IProposalRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Server/Repositories/IProposalRepository.cs -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Server/Repositories/IUserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Server/Repositories/IUserRepository.cs -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Server/Repositories/ProposalRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Server/Repositories/ProposalRepository.cs -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Server/Repositories/UserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Server/Repositories/UserRepository.cs -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Server/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Server/StringExtensions.cs -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Server/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Server/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Server/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Server/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Server/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Server/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Server/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Server/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Server/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Server/appsettings.Development.json -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Server/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Server/appsettings.json -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Server/bin/Debug/net6.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Server/bin/Debug/net6.0/appsettings.json -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Server/obj/Debug/net6.0/Globomantics.Server.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 6a54f72a95d42d9fbc0f8884d788bcd717704635 2 | -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Server/obj/Debug/net6.0/Globomantics.Server.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Server/obj/Debug/net6.0/Globomantics.Server.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 5860763757f4f08c7ebdea1b3a94a18109f17861 2 | -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Server/obj/Debug/net6.0/Globomantics.Server.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Server/obj/Debug/net6.0/Globomantics.Server.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Server/obj/Debug/net6.0/Globomantics.Server.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | e4d77eb849c642c8c6ffe4111143ba209008514e 2 | -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Server/obj/Debug/net6.0/Globomantics.Server.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 843cca20c4f05ad019791c1b61bd8c87798a3945 2 | -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Server/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Server/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Server/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Server/obj/project.assets.json -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Server/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Server/obj/project.nuget.cache -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Shared/ConferenceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Shared/ConferenceModel.cs -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Shared/Globomantics.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Shared/Globomantics.Shared.csproj -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Shared/ProposalModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Shared/ProposalModel.cs -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Shared/UserClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Shared/UserClaim.cs -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Shared/obj/Debug/net6.0/Globomantics.Shared.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 46cbe809705a244bc0e1cecc67e46c16dd661fcd 2 | -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Shared/obj/Debug/net6.0/Globomantics.Shared.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Shared/obj/Debug/net6.0/Globomantics.Shared.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 484473cf8d129475401f8c894a27aebdaf0ee513 2 | -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Shared/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Shared/obj/project.assets.json -------------------------------------------------------------------------------- /m2/CookieSPA/Globomantics/Shared/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/CookieSPA/Globomantics/Shared/obj/project.nuget.cache -------------------------------------------------------------------------------- /m2/Start/.vs/Globomantics/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/.vs/Globomantics/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /m2/Start/.vs/Globomantics/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m2/Start/.vs/Globomantics/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/.vs/Globomantics/config/applicationhost.config -------------------------------------------------------------------------------- /m2/Start/.vs/Globomantics/v17/.futdcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/.vs/Globomantics/v17/.futdcache.v2 -------------------------------------------------------------------------------- /m2/Start/.vs/Globomantics/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/.vs/Globomantics/v17/.suo -------------------------------------------------------------------------------- /m2/Start/.vs/ProjectEvaluation/globomantics.metadata.v5.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/.vs/ProjectEvaluation/globomantics.metadata.v5.2 -------------------------------------------------------------------------------- /m2/Start/.vs/ProjectEvaluation/globomantics.projects.v5.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/.vs/ProjectEvaluation/globomantics.projects.v5.1 -------------------------------------------------------------------------------- /m2/Start/.vs/ProjectEvaluation/globomantics.projects.v5.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/.vs/ProjectEvaluation/globomantics.projects.v5.2 -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/Controllers/ConferenceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics.Api/Controllers/ConferenceController.cs -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/Controllers/ProposalController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics.Api/Controllers/ProposalController.cs -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/Globomantics.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics.Api/Globomantics.Api.csproj -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics.Api/Program.cs -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics.Api/Properties/launchSettings.json -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/Repositories/ConferenceRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics.Api/Repositories/ConferenceRepository.cs -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/Repositories/IConferenceRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics.Api/Repositories/IConferenceRepository.cs -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/Repositories/IProposalRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics.Api/Repositories/IProposalRepository.cs -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/Repositories/ProposalRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics.Api/Repositories/ProposalRepository.cs -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics.Api/appsettings.Development.json -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics.Api/appsettings.json -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/bin/Debug/net6.0/Globomantics.Api.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics.Api/bin/Debug/net6.0/Globomantics.Api.deps.json -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/bin/Debug/net6.0/Globomantics.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics.Api/bin/Debug/net6.0/Globomantics.Api.dll -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/bin/Debug/net6.0/Globomantics.Api.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics.Api/bin/Debug/net6.0/Globomantics.Api.exe -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/bin/Debug/net6.0/Globomantics.Api.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics.Api/bin/Debug/net6.0/Globomantics.Api.pdb -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/bin/Debug/net6.0/Globomantics.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics.Api/bin/Debug/net6.0/Globomantics.Shared.dll -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/bin/Debug/net6.0/Globomantics.Shared.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics.Api/bin/Debug/net6.0/Globomantics.Shared.pdb -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/bin/Debug/net6.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics.Api/bin/Debug/net6.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/bin/Debug/net6.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics.Api/bin/Debug/net6.0/appsettings.json -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/obj/Debug/net6.0/Globomantics.Api.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/obj/Debug/net6.0/Globomantics.Api.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/obj/Debug/net6.0/Globomantics.Api.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/obj/Debug/net6.0/Globomantics.Api.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 73b5da20f498c726b8b09949f3ca8626cdff0d10 2 | -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/obj/Debug/net6.0/Globomantics.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics.Api/obj/Debug/net6.0/Globomantics.Api.dll -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/obj/Debug/net6.0/Globomantics.Api.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | d564f782a0aa3f2800165b1bcde805fb0dfa293e 2 | -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/obj/Debug/net6.0/Globomantics.Api.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics.Api/obj/Debug/net6.0/Globomantics.Api.pdb -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics.Api/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/obj/Debug/net6.0/project.razor.vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics.Api/obj/Debug/net6.0/project.razor.vs.json -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/obj/Debug/net6.0/ref/Globomantics.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics.Api/obj/Debug/net6.0/ref/Globomantics.Api.dll -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/obj/Debug/net6.0/staticwebassets.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics.Api/obj/Debug/net6.0/staticwebassets.build.json -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/obj/Globomantics.Api.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics.Api/obj/Globomantics.Api.csproj.nuget.g.props -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/obj/Globomantics.Api.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics.Api/obj/Globomantics.Api.csproj.nuget.g.targets -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/obj/Release/net6.0/Globomantics.Api.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 16294cf9c72a5fd001512c14a00efc98ed744d68 2 | -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics.Api/obj/project.assets.json -------------------------------------------------------------------------------- /m2/Start/Globomantics.Api/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics.Api/obj/project.nuget.cache -------------------------------------------------------------------------------- /m2/Start/Globomantics.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics.sln -------------------------------------------------------------------------------- /m2/Start/Globomantics/ApiServices/ConferenceApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/ApiServices/ConferenceApiService.cs -------------------------------------------------------------------------------- /m2/Start/Globomantics/ApiServices/IConferenceApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/ApiServices/IConferenceApiService.cs -------------------------------------------------------------------------------- /m2/Start/Globomantics/ApiServices/IProposalApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/ApiServices/IProposalApiService.cs -------------------------------------------------------------------------------- /m2/Start/Globomantics/ApiServices/ProposalApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/ApiServices/ProposalApiService.cs -------------------------------------------------------------------------------- /m2/Start/Globomantics/Controllers/ConferenceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/Controllers/ConferenceController.cs -------------------------------------------------------------------------------- /m2/Start/Globomantics/Controllers/ProposalController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/Controllers/ProposalController.cs -------------------------------------------------------------------------------- /m2/Start/Globomantics/Globomantics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/Globomantics.csproj -------------------------------------------------------------------------------- /m2/Start/Globomantics/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/Program.cs -------------------------------------------------------------------------------- /m2/Start/Globomantics/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/Properties/launchSettings.json -------------------------------------------------------------------------------- /m2/Start/Globomantics/Views/Conference/Add.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/Views/Conference/Add.cshtml -------------------------------------------------------------------------------- /m2/Start/Globomantics/Views/Conference/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/Views/Conference/Index.cshtml -------------------------------------------------------------------------------- /m2/Start/Globomantics/Views/Proposal/AddProposal.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/Views/Proposal/AddProposal.cshtml -------------------------------------------------------------------------------- /m2/Start/Globomantics/Views/Proposal/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/Views/Proposal/Index.cshtml -------------------------------------------------------------------------------- /m2/Start/Globomantics/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /m2/Start/Globomantics/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /m2/Start/Globomantics/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /m2/Start/Globomantics/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/appsettings.Development.json -------------------------------------------------------------------------------- /m2/Start/Globomantics/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/appsettings.json -------------------------------------------------------------------------------- /m2/Start/Globomantics/bin/Debug/net6.0/Globomantics.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/bin/Debug/net6.0/Globomantics.Shared.dll -------------------------------------------------------------------------------- /m2/Start/Globomantics/bin/Debug/net6.0/Globomantics.Shared.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/bin/Debug/net6.0/Globomantics.Shared.pdb -------------------------------------------------------------------------------- /m2/Start/Globomantics/bin/Debug/net6.0/Globomantics.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/bin/Debug/net6.0/Globomantics.deps.json -------------------------------------------------------------------------------- /m2/Start/Globomantics/bin/Debug/net6.0/Globomantics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/bin/Debug/net6.0/Globomantics.dll -------------------------------------------------------------------------------- /m2/Start/Globomantics/bin/Debug/net6.0/Globomantics.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/bin/Debug/net6.0/Globomantics.exe -------------------------------------------------------------------------------- /m2/Start/Globomantics/bin/Debug/net6.0/Globomantics.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/bin/Debug/net6.0/Globomantics.pdb -------------------------------------------------------------------------------- /m2/Start/Globomantics/bin/Debug/net6.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/bin/Debug/net6.0/appsettings.Development.json -------------------------------------------------------------------------------- /m2/Start/Globomantics/bin/Debug/net6.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/bin/Debug/net6.0/appsettings.json -------------------------------------------------------------------------------- /m2/Start/Globomantics/obj/Debug/net6.0/Globomantics.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/obj/Debug/net6.0/Globomantics.AssemblyInfo.cs -------------------------------------------------------------------------------- /m2/Start/Globomantics/obj/Debug/net6.0/Globomantics.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | bc7f37637059da4354fad31d2c67c588fa525ccf 2 | -------------------------------------------------------------------------------- /m2/Start/Globomantics/obj/Debug/net6.0/Globomantics.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/obj/Debug/net6.0/Globomantics.GlobalUsings.g.cs -------------------------------------------------------------------------------- /m2/Start/Globomantics/obj/Debug/net6.0/Globomantics.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m2/Start/Globomantics/obj/Debug/net6.0/Globomantics.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 5860763757f4f08c7ebdea1b3a94a18109f17861 2 | -------------------------------------------------------------------------------- /m2/Start/Globomantics/obj/Debug/net6.0/Globomantics.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/obj/Debug/net6.0/Globomantics.assets.cache -------------------------------------------------------------------------------- /m2/Start/Globomantics/obj/Debug/net6.0/Globomantics.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m2/Start/Globomantics/obj/Debug/net6.0/Globomantics.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m2/Start/Globomantics/obj/Debug/net6.0/Globomantics.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6cd13a02b902fc691ddb64ed9a41b8d20979c24b 2 | -------------------------------------------------------------------------------- /m2/Start/Globomantics/obj/Debug/net6.0/Globomantics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/obj/Debug/net6.0/Globomantics.dll -------------------------------------------------------------------------------- /m2/Start/Globomantics/obj/Debug/net6.0/Globomantics.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/obj/Debug/net6.0/Globomantics.pdb -------------------------------------------------------------------------------- /m2/Start/Globomantics/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /m2/Start/Globomantics/obj/Debug/net6.0/project.razor.vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/obj/Debug/net6.0/project.razor.vs.json -------------------------------------------------------------------------------- /m2/Start/Globomantics/obj/Debug/net6.0/ref/Globomantics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/obj/Debug/net6.0/ref/Globomantics.dll -------------------------------------------------------------------------------- /m2/Start/Globomantics/obj/Debug/net6.0/refint/Globomantics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/obj/Debug/net6.0/refint/Globomantics.dll -------------------------------------------------------------------------------- /m2/Start/Globomantics/obj/Debug/net6.0/staticwebassets.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/obj/Debug/net6.0/staticwebassets.build.json -------------------------------------------------------------------------------- /m2/Start/Globomantics/obj/Debug/net6.0/staticwebassets.pack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/obj/Debug/net6.0/staticwebassets.pack.json -------------------------------------------------------------------------------- /m2/Start/Globomantics/obj/Globomantics.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/obj/Globomantics.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /m2/Start/Globomantics/obj/Globomantics.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/obj/Globomantics.csproj.nuget.g.props -------------------------------------------------------------------------------- /m2/Start/Globomantics/obj/Globomantics.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/obj/Globomantics.csproj.nuget.g.targets -------------------------------------------------------------------------------- /m2/Start/Globomantics/obj/Release/net6.0/Globomantics.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/obj/Release/net6.0/Globomantics.AssemblyInfo.cs -------------------------------------------------------------------------------- /m2/Start/Globomantics/obj/Release/net6.0/Globomantics.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 5860763757f4f08c7ebdea1b3a94a18109f17861 2 | -------------------------------------------------------------------------------- /m2/Start/Globomantics/obj/Release/net6.0/Globomantics.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/obj/Release/net6.0/Globomantics.assets.cache -------------------------------------------------------------------------------- /m2/Start/Globomantics/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/obj/project.assets.json -------------------------------------------------------------------------------- /m2/Start/Globomantics/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/obj/project.nuget.cache -------------------------------------------------------------------------------- /m2/Start/Globomantics/obj/staticwebassets.pack.sentinel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/obj/staticwebassets.pack.sentinel -------------------------------------------------------------------------------- /m2/Start/Globomantics/wwwroot/img/globomantics-logo-darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Globomantics/wwwroot/img/globomantics-logo-darkblue.png -------------------------------------------------------------------------------- /m2/Start/Shared/ConferenceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Shared/ConferenceModel.cs -------------------------------------------------------------------------------- /m2/Start/Shared/Globomantics.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Shared/Globomantics.Shared.csproj -------------------------------------------------------------------------------- /m2/Start/Shared/ProposalModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Shared/ProposalModel.cs -------------------------------------------------------------------------------- /m2/Start/Shared/bin/Debug/net6.0/Globomantics.Shared.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Shared/bin/Debug/net6.0/Globomantics.Shared.deps.json -------------------------------------------------------------------------------- /m2/Start/Shared/bin/Debug/net6.0/Globomantics.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Shared/bin/Debug/net6.0/Globomantics.Shared.dll -------------------------------------------------------------------------------- /m2/Start/Shared/bin/Debug/net6.0/Globomantics.Shared.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Shared/bin/Debug/net6.0/Globomantics.Shared.pdb -------------------------------------------------------------------------------- /m2/Start/Shared/obj/Debug/net6.0/Globomantics.Shared.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Shared/obj/Debug/net6.0/Globomantics.Shared.AssemblyInfo.cs -------------------------------------------------------------------------------- /m2/Start/Shared/obj/Debug/net6.0/Globomantics.Shared.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 46cbe809705a244bc0e1cecc67e46c16dd661fcd 2 | -------------------------------------------------------------------------------- /m2/Start/Shared/obj/Debug/net6.0/Globomantics.Shared.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Shared/obj/Debug/net6.0/Globomantics.Shared.assets.cache -------------------------------------------------------------------------------- /m2/Start/Shared/obj/Debug/net6.0/Globomantics.Shared.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m2/Start/Shared/obj/Debug/net6.0/Globomantics.Shared.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 96f07a07430bffb2baa926425d2a000c5960117c 2 | -------------------------------------------------------------------------------- /m2/Start/Shared/obj/Debug/net6.0/Globomantics.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Shared/obj/Debug/net6.0/Globomantics.Shared.dll -------------------------------------------------------------------------------- /m2/Start/Shared/obj/Debug/net6.0/Globomantics.Shared.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Shared/obj/Debug/net6.0/Globomantics.Shared.pdb -------------------------------------------------------------------------------- /m2/Start/Shared/obj/Debug/net6.0/ref/Globomantics.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Shared/obj/Debug/net6.0/ref/Globomantics.Shared.dll -------------------------------------------------------------------------------- /m2/Start/Shared/obj/Debug/net6.0/refint/Globomantics.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Shared/obj/Debug/net6.0/refint/Globomantics.Shared.dll -------------------------------------------------------------------------------- /m2/Start/Shared/obj/Globomantics.Shared.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Shared/obj/Globomantics.Shared.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /m2/Start/Shared/obj/Globomantics.Shared.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Shared/obj/Globomantics.Shared.csproj.nuget.g.props -------------------------------------------------------------------------------- /m2/Start/Shared/obj/Globomantics.Shared.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Shared/obj/Globomantics.Shared.csproj.nuget.g.targets -------------------------------------------------------------------------------- /m2/Start/Shared/obj/Release/net6.0/Globomantics.Shared.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 07a72e594b915245b2d95655481b1a3c245f0c5e 2 | -------------------------------------------------------------------------------- /m2/Start/Shared/obj/Release/net6.0/Globomantics.Shared.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Shared/obj/Release/net6.0/Globomantics.Shared.assets.cache -------------------------------------------------------------------------------- /m2/Start/Shared/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Shared/obj/project.assets.json -------------------------------------------------------------------------------- /m2/Start/Shared/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m2/Start/Shared/obj/project.nuget.cache -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/.vs/Globomantics/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/.vs/Globomantics/v17/.futdcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/.vs/Globomantics/v17/.futdcache.v2 -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/.vs/Globomantics/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/.vs/Globomantics/v17/.suo -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Api/Globomantics.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Api/Globomantics.Api.csproj -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Api/Program.cs -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Api/appsettings.json -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Api/obj/Debug/net6.0/Globomantics.Api.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 1734c087119eb0d4d98afc4ef6b929e76f37f8b3 2 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Api/obj/Debug/net6.0/Globomantics.Api.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Api/obj/Debug/net6.0/Globomantics.Api.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Api/obj/Debug/net6.0/Globomantics.Api.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Api/obj/Debug/net6.0/Globomantics.Api.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a572b2c5a8a0d8ea856bb37fd14ffd5c2ac8ca11 2 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Api/obj/Debug/net6.0/_IsIncrementalBuild: -------------------------------------------------------------------------------- 1 | obj\Debug\net6.0\\_IsIncrementalBuild 2 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Api/obj/Debug/net7.0/Globomantics.Api.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 1734c087119eb0d4d98afc4ef6b929e76f37f8b3 2 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Api/obj/Debug/net7.0/Globomantics.Api.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Api/obj/Debug/net7.0/Globomantics.Api.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Api/obj/Debug/net7.0/Globomantics.Api.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Api/obj/Debug/net7.0/Globomantics.Api.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4f4c71a0533f21ff9cd74837398b2e0c0a1b0f8d 2 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Api/obj/Debug/net7.0/Globomantics.Api.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | c6be1292ba45eef58ae40c00ad6077db2f548ef8 2 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Api/obj/Release/net6.0/Globomantics.Api.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 16294cf9c72a5fd001512c14a00efc98ed744d68 2 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Api/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Api/obj/project.assets.json -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Api/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Api/obj/project.nuget.cache -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Idp/Config.cs -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/Globomantics.Idp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Idp/Globomantics.Idp.csproj -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/HostingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Idp/HostingExtensions.cs -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/Pages/Ciba/All.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Idp/Pages/Ciba/All.cshtml -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/Pages/Ciba/All.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Idp/Pages/Ciba/All.cshtml.cs -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/Pages/Ciba/Consent.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Idp/Pages/Ciba/Consent.cshtml -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/Pages/Ciba/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Idp/Pages/Ciba/Index.cshtml -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/Pages/Ciba/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Idp/Pages/Ciba/Index.cshtml.cs -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/Pages/Ciba/InputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Idp/Pages/Ciba/InputModel.cs -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/Pages/Ciba/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Idp/Pages/Ciba/ViewModel.cs -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/Pages/Consent/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Idp/Pages/Consent/Index.cshtml -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/Pages/Consent/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Idp/Pages/Consent/ViewModel.cs -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/Pages/Device/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Idp/Pages/Device/Index.cshtml -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/Pages/Device/InputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Idp/Pages/Device/InputModel.cs -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/Pages/Device/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Idp/Pages/Device/ViewModel.cs -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/Pages/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Idp/Pages/Extensions.cs -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/Pages/Grants/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Idp/Pages/Grants/Index.cshtml -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/Pages/Grants/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Idp/Pages/Grants/ViewModel.cs -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Idp/Pages/Index.cshtml -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Idp/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/Pages/Shared/_Nav.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Idp/Pages/Shared/_Nav.cshtml -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/Pages/TestUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Idp/Pages/TestUsers.cs -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Idp/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Idp/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Idp/Program.cs -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/obj/Debug/net6.0/Globomantics.Idp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 03b3d8727d9a87cc32e5bfc435869ceb479e7097 2 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/obj/Debug/net6.0/Globomantics.Idp.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/obj/Debug/net6.0/Globomantics.Idp.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 5860763757f4f08c7ebdea1b3a94a18109f17861 2 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/obj/Debug/net6.0/Globomantics.Idp.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/obj/Debug/net6.0/Globomantics.Idp.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/obj/Debug/net6.0/Globomantics.Idp.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | aee2818e728c56fa32e20935a2a71fd0e90009c2 2 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/obj/Debug/net6.0/Globomantics.Idp.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | c62fea6947b0e2b7b9bdac7e2779b05191b21c4a 2 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/obj/Debug/net6.0/_IsIncrementalBuild: -------------------------------------------------------------------------------- 1 | obj\Debug\net6.0\\_IsIncrementalBuild 2 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/obj/Release/net6.0/Globomantics.Idp.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 5860763757f4f08c7ebdea1b3a94a18109f17861 2 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Idp/obj/project.assets.json -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Idp/obj/project.nuget.cache -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Idp/wwwroot/css/site.css -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Idp/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/wwwroot/css/site.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Idp/wwwroot/css/site.scss -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/wwwroot/duende-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Idp/wwwroot/duende-logo.svg -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.Idp/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.Idp/wwwroot/favicon.ico -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics.sln -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics/EnsureAccessTokenFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics/EnsureAccessTokenFilter.cs -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics/Globomantics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics/Globomantics.csproj -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics/HttpClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics/HttpClientExtensions.cs -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics/Program.cs -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics/Properties/launchSettings.json -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics/Views/Conference/Add.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics/Views/Conference/Add.cshtml -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics/Views/Conference/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics/Views/Conference/Index.cshtml -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics/Views/Proposal/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics/Views/Proposal/Index.cshtml -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics/appsettings.Development.json -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics/appsettings.json -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics/obj/Debug/net6.0/Globomantics.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | bc7f37637059da4354fad31d2c67c588fa525ccf 2 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics/obj/Debug/net6.0/Globomantics.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics/obj/Debug/net6.0/Globomantics.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 5860763757f4f08c7ebdea1b3a94a18109f17861 2 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics/obj/Debug/net6.0/Globomantics.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics/obj/Debug/net6.0/Globomantics.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics/obj/Debug/net6.0/Globomantics.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 065bb8c6f12b06f6c8954d308bc3777637be9285 2 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics/obj/Debug/net6.0/_IsIncrementalBuild: -------------------------------------------------------------------------------- 1 | obj\Debug\net6.0\\_IsIncrementalBuild 2 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics/obj/Release/net6.0/Globomantics.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 5860763757f4f08c7ebdea1b3a94a18109f17861 2 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics/obj/project.assets.json -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Globomantics/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Globomantics/obj/project.nuget.cache -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Shared/ConferenceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Shared/ConferenceModel.cs -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Shared/Globomantics.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Shared/Globomantics.Shared.csproj -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Shared/ProposalModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Shared/ProposalModel.cs -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Shared/obj/Debug/net6.0/Globomantics.Shared.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 46cbe809705a244bc0e1cecc67e46c16dd661fcd 2 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Shared/obj/Debug/net6.0/Globomantics.Shared.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Shared/obj/Debug/net6.0/Globomantics.Shared.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 96f07a07430bffb2baa926425d2a000c5960117c 2 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Shared/obj/Debug/net6.0/_IsIncrementalBuild: -------------------------------------------------------------------------------- 1 | obj\Debug\net6.0\\_IsIncrementalBuild 2 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Shared/obj/Release/net6.0/Globomantics.Shared.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 07a72e594b915245b2d95655481b1a3c245f0c5e 2 | -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Shared/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Shared/obj/project.assets.json -------------------------------------------------------------------------------- /m3/OAuthClientCredentials/Shared/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentials/Shared/obj/project.nuget.cache -------------------------------------------------------------------------------- /m3/OAuthClientCredentialsManaged/Globomantics.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentialsManaged/Globomantics.Api/Program.cs -------------------------------------------------------------------------------- /m3/OAuthClientCredentialsManaged/Globomantics.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentialsManaged/Globomantics.Api/appsettings.json -------------------------------------------------------------------------------- /m3/OAuthClientCredentialsManaged/Globomantics.Idp/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentialsManaged/Globomantics.Idp/Config.cs -------------------------------------------------------------------------------- /m3/OAuthClientCredentialsManaged/Globomantics.Idp/Pages/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentialsManaged/Globomantics.Idp/Pages/Extensions.cs -------------------------------------------------------------------------------- /m3/OAuthClientCredentialsManaged/Globomantics.Idp/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentialsManaged/Globomantics.Idp/Pages/Index.cshtml -------------------------------------------------------------------------------- /m3/OAuthClientCredentialsManaged/Globomantics.Idp/Pages/TestUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentialsManaged/Globomantics.Idp/Pages/TestUsers.cs -------------------------------------------------------------------------------- /m3/OAuthClientCredentialsManaged/Globomantics.Idp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentialsManaged/Globomantics.Idp/Program.cs -------------------------------------------------------------------------------- /m3/OAuthClientCredentialsManaged/Globomantics.Idp/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentialsManaged/Globomantics.Idp/wwwroot/favicon.ico -------------------------------------------------------------------------------- /m3/OAuthClientCredentialsManaged/Globomantics.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentialsManaged/Globomantics.sln -------------------------------------------------------------------------------- /m3/OAuthClientCredentialsManaged/Globomantics/Globomantics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentialsManaged/Globomantics/Globomantics.csproj -------------------------------------------------------------------------------- /m3/OAuthClientCredentialsManaged/Globomantics/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentialsManaged/Globomantics/Program.cs -------------------------------------------------------------------------------- /m3/OAuthClientCredentialsManaged/Globomantics/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentialsManaged/Globomantics/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /m3/OAuthClientCredentialsManaged/Globomantics/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentialsManaged/Globomantics/appsettings.json -------------------------------------------------------------------------------- /m3/OAuthClientCredentialsManaged/Shared/ConferenceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentialsManaged/Shared/ConferenceModel.cs -------------------------------------------------------------------------------- /m3/OAuthClientCredentialsManaged/Shared/Globomantics.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentialsManaged/Shared/Globomantics.Shared.csproj -------------------------------------------------------------------------------- /m3/OAuthClientCredentialsManaged/Shared/ProposalModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentialsManaged/Shared/ProposalModel.cs -------------------------------------------------------------------------------- /m3/OAuthClientCredentialsReferenceTokens/Globomantics.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentialsReferenceTokens/Globomantics.Api/Program.cs -------------------------------------------------------------------------------- /m3/OAuthClientCredentialsReferenceTokens/Globomantics.Idp/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentialsReferenceTokens/Globomantics.Idp/Config.cs -------------------------------------------------------------------------------- /m3/OAuthClientCredentialsReferenceTokens/Globomantics.Idp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentialsReferenceTokens/Globomantics.Idp/Program.cs -------------------------------------------------------------------------------- /m3/OAuthClientCredentialsReferenceTokens/Globomantics.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentialsReferenceTokens/Globomantics.sln -------------------------------------------------------------------------------- /m3/OAuthClientCredentialsReferenceTokens/Globomantics/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentialsReferenceTokens/Globomantics/Program.cs -------------------------------------------------------------------------------- /m3/OAuthClientCredentialsReferenceTokens/Shared/ConferenceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentialsReferenceTokens/Shared/ConferenceModel.cs -------------------------------------------------------------------------------- /m3/OAuthClientCredentialsReferenceTokens/Shared/ProposalModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m3/OAuthClientCredentialsReferenceTokens/Shared/ProposalModel.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Api/Globomantics.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Api/Globomantics.Api.csproj -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Api/Program.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Api/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Api/Properties/launchSettings.json -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Api/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Api/appsettings.Development.json -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Api/appsettings.json -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Config.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Globomantics.Idp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Globomantics.Idp.csproj -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/HostingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/HostingExtensions.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Ciba/All.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Ciba/All.cshtml -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Ciba/All.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Ciba/All.cshtml.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Ciba/Consent.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Ciba/Consent.cshtml -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Ciba/Consent.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Ciba/Consent.cshtml.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Ciba/ConsentOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Ciba/ConsentOptions.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Ciba/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Ciba/Index.cshtml -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Ciba/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Ciba/Index.cshtml.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Ciba/InputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Ciba/InputModel.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Ciba/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Ciba/ViewModel.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Consent/ConsentOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Consent/ConsentOptions.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Consent/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Consent/Index.cshtml -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Consent/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Consent/Index.cshtml.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Consent/InputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Consent/InputModel.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Consent/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Consent/ViewModel.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Device/DeviceOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Device/DeviceOptions.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Device/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Device/Index.cshtml -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Device/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Device/Index.cshtml.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Device/InputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Device/InputModel.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Device/Success.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Device/Success.cshtml -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Device/Success.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Device/Success.cshtml.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Device/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Device/ViewModel.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Diagnostics/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Diagnostics/Index.cshtml -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Diagnostics/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Diagnostics/ViewModel.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Extensions.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Grants/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Grants/Index.cshtml -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Grants/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Grants/Index.cshtml.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Grants/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Grants/ViewModel.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Home/Error/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Home/Error/Index.cshtml -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Home/Error/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Home/Error/ViewModel.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Index.cshtml -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Redirect/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Redirect/Index.cshtml -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Redirect/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Redirect/Index.cshtml.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/Shared/_Nav.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/Shared/_Nav.cshtml -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/TestUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/TestUsers.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Program.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/Properties/launchSettings.json -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/wwwroot/css/site.css -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/wwwroot/css/site.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/wwwroot/css/site.scss -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/wwwroot/duende-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/wwwroot/duende-logo.svg -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/wwwroot/favicon.ico -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/wwwroot/js/signin-redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/wwwroot/js/signin-redirect.js -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/wwwroot/js/signout-redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/wwwroot/js/signout-redirect.js -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/wwwroot/lib/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/wwwroot/lib/bootstrap/README.md -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.Idp/wwwroot/lib/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.Idp/wwwroot/lib/jquery/README.md -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics.sln -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics/ApiServices/ConferenceApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics/ApiServices/ConferenceApiService.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics/ApiServices/IProposalApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics/ApiServices/IProposalApiService.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics/ApiServices/ProposalApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics/ApiServices/ProposalApiService.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics/Controllers/ConferenceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics/Controllers/ConferenceController.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics/Controllers/ProposalController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics/Controllers/ProposalController.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics/EnsureAccessTokenFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics/EnsureAccessTokenFilter.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics/Globomantics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics/Globomantics.csproj -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics/Program.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics/Properties/launchSettings.json -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics/Views/Conference/Add.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics/Views/Conference/Add.cshtml -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics/Views/Conference/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics/Views/Conference/Index.cshtml -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics/Views/Proposal/AddProposal.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics/Views/Proposal/AddProposal.cshtml -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics/Views/Proposal/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics/Views/Proposal/Index.cshtml -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics/appsettings.Development.json -------------------------------------------------------------------------------- /m4/AuthorizationCode/Globomantics/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Globomantics/appsettings.json -------------------------------------------------------------------------------- /m4/AuthorizationCode/Shared/ConferenceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Shared/ConferenceModel.cs -------------------------------------------------------------------------------- /m4/AuthorizationCode/Shared/Globomantics.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Shared/Globomantics.Shared.csproj -------------------------------------------------------------------------------- /m4/AuthorizationCode/Shared/ProposalModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m4/AuthorizationCode/Shared/ProposalModel.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Api/Controllers/ConferenceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Api/Controllers/ConferenceController.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Api/Controllers/ProposalController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Api/Controllers/ProposalController.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Api/Globomantics.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Api/Globomantics.Api.csproj -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Api/Program.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Api/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Api/Properties/launchSettings.json -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Api/Repositories/IProposalRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Api/Repositories/IProposalRepository.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Api/Repositories/ProposalRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Api/Repositories/ProposalRepository.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Api/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Api/appsettings.Development.json -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Api/appsettings.json -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Config.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Globomantics.Idp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Globomantics.Idp.csproj -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/HostingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/HostingExtensions.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Account/AccessDenied.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Account/AccessDenied.cshtml -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Account/Login/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Account/Login/Index.cshtml -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Account/Login/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Account/Login/Index.cshtml.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Account/Login/InputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Account/Login/InputModel.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Account/Login/LoginOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Account/Login/LoginOptions.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Account/Login/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Account/Login/ViewModel.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Account/Logout/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Account/Logout/Index.cshtml -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Ciba/All.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Ciba/All.cshtml -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Ciba/All.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Ciba/All.cshtml.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Ciba/Consent.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Ciba/Consent.cshtml -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Ciba/Consent.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Ciba/Consent.cshtml.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Ciba/ConsentOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Ciba/ConsentOptions.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Ciba/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Ciba/Index.cshtml -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Ciba/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Ciba/Index.cshtml.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Ciba/InputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Ciba/InputModel.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Ciba/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Ciba/ViewModel.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Ciba/_ScopeListItem.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Ciba/_ScopeListItem.cshtml -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Consent/ConsentOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Consent/ConsentOptions.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Consent/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Consent/Index.cshtml -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Consent/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Consent/Index.cshtml.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Consent/InputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Consent/InputModel.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Consent/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Consent/ViewModel.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Device/DeviceOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Device/DeviceOptions.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Device/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Device/Index.cshtml -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Device/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Device/Index.cshtml.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Device/InputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Device/InputModel.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Device/Success.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Device/Success.cshtml -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Device/Success.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Device/Success.cshtml.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Device/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Device/ViewModel.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Diagnostics/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Diagnostics/Index.cshtml -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Diagnostics/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Diagnostics/Index.cshtml.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Diagnostics/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Diagnostics/ViewModel.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Extensions.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Grants/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Grants/Index.cshtml -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Grants/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Grants/Index.cshtml.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Grants/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Grants/ViewModel.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Home/Error/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Home/Error/Index.cshtml -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Home/Error/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Home/Error/Index.cshtml.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Home/Error/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Home/Error/ViewModel.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Index.cshtml -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Redirect/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Redirect/Index.cshtml -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Redirect/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Redirect/Index.cshtml.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/SecurityHeadersAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/SecurityHeadersAttribute.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/Shared/_Nav.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/Shared/_Nav.cshtml -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/TestUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/TestUsers.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Program.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/Properties/launchSettings.json -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/wwwroot/css/site.css -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/wwwroot/css/site.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/wwwroot/css/site.scss -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/wwwroot/duende-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/wwwroot/duende-logo.svg -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/wwwroot/favicon.ico -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/wwwroot/js/signin-redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/wwwroot/js/signin-redirect.js -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/wwwroot/js/signout-redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/wwwroot/js/signout-redirect.js -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/wwwroot/lib/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/wwwroot/lib/bootstrap/README.md -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/wwwroot/lib/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/wwwroot/lib/jquery/README.md -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.Idp/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.Idp/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /m5/Authorization/Globomantics.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics.sln -------------------------------------------------------------------------------- /m5/Authorization/Globomantics/ApiServices/ConferenceApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics/ApiServices/ConferenceApiService.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics/ApiServices/IConferenceApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics/ApiServices/IConferenceApiService.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics/ApiServices/IProposalApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics/ApiServices/IProposalApiService.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics/ApiServices/ProposalApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics/ApiServices/ProposalApiService.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics/Controllers/ConferenceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics/Controllers/ConferenceController.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics/Controllers/ProposalController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics/Controllers/ProposalController.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics/EnsureAccessTokenFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics/EnsureAccessTokenFilter.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics/Globomantics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics/Globomantics.csproj -------------------------------------------------------------------------------- /m5/Authorization/Globomantics/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics/Program.cs -------------------------------------------------------------------------------- /m5/Authorization/Globomantics/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics/Properties/launchSettings.json -------------------------------------------------------------------------------- /m5/Authorization/Globomantics/Views/Conference/Add.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics/Views/Conference/Add.cshtml -------------------------------------------------------------------------------- /m5/Authorization/Globomantics/Views/Conference/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics/Views/Conference/Index.cshtml -------------------------------------------------------------------------------- /m5/Authorization/Globomantics/Views/Proposal/AddProposal.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics/Views/Proposal/AddProposal.cshtml -------------------------------------------------------------------------------- /m5/Authorization/Globomantics/Views/Proposal/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics/Views/Proposal/Index.cshtml -------------------------------------------------------------------------------- /m5/Authorization/Globomantics/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /m5/Authorization/Globomantics/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /m5/Authorization/Globomantics/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /m5/Authorization/Globomantics/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics/appsettings.Development.json -------------------------------------------------------------------------------- /m5/Authorization/Globomantics/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Globomantics/appsettings.json -------------------------------------------------------------------------------- /m5/Authorization/Shared/ConferenceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Shared/ConferenceModel.cs -------------------------------------------------------------------------------- /m5/Authorization/Shared/Globomantics.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Shared/Globomantics.Shared.csproj -------------------------------------------------------------------------------- /m5/Authorization/Shared/ProposalModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/Authorization/Shared/ProposalModel.cs -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.Api/Globomantics.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.Api/Globomantics.Api.csproj -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.Api/Program.cs -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.Api/appsettings.json -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.Idp/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.Idp/Config.cs -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.Idp/Globomantics.Idp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.Idp/Globomantics.Idp.csproj -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.Idp/HostingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.Idp/HostingExtensions.cs -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.Idp/Pages/Ciba/All.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.Idp/Pages/Ciba/All.cshtml -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.Idp/Pages/Ciba/All.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.Idp/Pages/Ciba/All.cshtml.cs -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.Idp/Pages/Ciba/Consent.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.Idp/Pages/Ciba/Consent.cshtml -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.Idp/Pages/Ciba/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.Idp/Pages/Ciba/Index.cshtml -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.Idp/Pages/Ciba/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.Idp/Pages/Ciba/Index.cshtml.cs -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.Idp/Pages/Ciba/InputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.Idp/Pages/Ciba/InputModel.cs -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.Idp/Pages/Ciba/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.Idp/Pages/Ciba/ViewModel.cs -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.Idp/Pages/Consent/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.Idp/Pages/Consent/Index.cshtml -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.Idp/Pages/Consent/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.Idp/Pages/Consent/ViewModel.cs -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.Idp/Pages/Device/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.Idp/Pages/Device/Index.cshtml -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.Idp/Pages/Device/InputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.Idp/Pages/Device/InputModel.cs -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.Idp/Pages/Device/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.Idp/Pages/Device/ViewModel.cs -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.Idp/Pages/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.Idp/Pages/Extensions.cs -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.Idp/Pages/Grants/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.Idp/Pages/Grants/Index.cshtml -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.Idp/Pages/Grants/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.Idp/Pages/Grants/ViewModel.cs -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.Idp/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.Idp/Pages/Index.cshtml -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.Idp/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.Idp/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.Idp/Pages/Shared/_Nav.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.Idp/Pages/Shared/_Nav.cshtml -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.Idp/Pages/TestUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.Idp/Pages/TestUsers.cs -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.Idp/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.Idp/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.Idp/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.Idp/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.Idp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.Idp/Program.cs -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.Idp/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.Idp/wwwroot/css/site.css -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.Idp/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.Idp/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.Idp/wwwroot/css/site.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.Idp/wwwroot/css/site.scss -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.Idp/wwwroot/duende-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.Idp/wwwroot/duende-logo.svg -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.Idp/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.Idp/wwwroot/favicon.ico -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics.sln -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics/EnsureAccessTokenFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics/EnsureAccessTokenFilter.cs -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics/Globomantics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics/Globomantics.csproj -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics/Program.cs -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics/Properties/launchSettings.json -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics/Views/Conference/Add.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics/Views/Conference/Add.cshtml -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics/Views/Conference/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics/Views/Conference/Index.cshtml -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics/Views/Proposal/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics/Views/Proposal/Index.cshtml -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics/appsettings.Development.json -------------------------------------------------------------------------------- /m5/AuthorizationService/Globomantics/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Globomantics/appsettings.json -------------------------------------------------------------------------------- /m5/AuthorizationService/Shared/ConferenceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Shared/ConferenceModel.cs -------------------------------------------------------------------------------- /m5/AuthorizationService/Shared/Globomantics.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Shared/Globomantics.Shared.csproj -------------------------------------------------------------------------------- /m5/AuthorizationService/Shared/ProposalModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/ps-aspnetcore6apiauth/HEAD/m5/AuthorizationService/Shared/ProposalModel.cs --------------------------------------------------------------------------------