├── HangfireApp ├── obj │ ├── Debug │ │ └── netcoreapp3.1 │ │ │ ├── HangfireApp.csproj.CopyComplete │ │ │ ├── HangfireApp.TagHelpers.input.cache │ │ │ ├── HangfireApp.MvcApplicationPartsAssemblyInfo.cache │ │ │ ├── staticwebassets │ │ │ └── HangfireApp.StaticWebAssets.Manifest.cache │ │ │ ├── HangfireApp.AssemblyInfoInputs.cache │ │ │ ├── HangfireApp.RazorAssemblyInfo.cache │ │ │ ├── HangfireApp.RazorCoreGenerate.cache │ │ │ ├── HangfireApp.genruntimeconfig.cache │ │ │ ├── HangfireApp.RazorTargetAssemblyInfo.cache │ │ │ ├── HangfireApp.csproj.CoreCompileInputs.cache │ │ │ ├── apphost.exe │ │ │ ├── HangfireApp.dll │ │ │ ├── HangfireApp.pdb │ │ │ ├── HangfireApp.Views.dll │ │ │ ├── HangfireApp.Views.pdb │ │ │ ├── HangfireApp.assets.cache │ │ │ ├── HangfireApp.csproj.AssemblyReference.cache │ │ │ ├── HangfireApp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ ├── HangfireApp.MvcApplicationPartsAssemblyInfo.cs │ │ │ ├── HangfireApp.RazorAssemblyInfo.cs │ │ │ ├── HangfireApp.AssemblyInfo.cs │ │ │ ├── HangfireApp.RazorTargetAssemblyInfo.cs │ │ │ └── Razor │ │ │ └── Views │ │ │ ├── _ViewImports.cshtml.g.cs │ │ │ ├── _ViewStart.cshtml.g.cs │ │ │ ├── Home │ │ │ ├── Index.cshtml.g.cs │ │ │ ├── Privacy.cshtml.g.cs │ │ │ └── HangfireTest.cshtml.g.cs │ │ │ └── Shared │ │ │ ├── Error.cshtml.g.cs │ │ │ └── _ValidationScriptsPartial.cshtml.g.cs │ ├── HangfireApp.csproj.nuget.g.targets │ ├── HangfireApp.csproj.nuget.g.props │ ├── HangfireApp.csproj.nuget.dgspec.json │ └── project.nuget.cache ├── Views │ ├── _ViewStart.cshtml │ ├── _ViewImports.cshtml │ ├── Home │ │ ├── Privacy.cshtml │ │ ├── Index.cshtml │ │ └── HangfireTest.cshtml │ └── Shared │ │ ├── _ValidationScriptsPartial.cshtml │ │ ├── Error.cshtml │ │ └── _Layout.cshtml ├── wwwroot │ ├── favicon.ico │ ├── js │ │ └── site.js │ ├── lib │ │ ├── jquery-validation-unobtrusive │ │ │ ├── LICENSE.txt │ │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ │ └── LICENSE.md │ │ ├── bootstrap │ │ │ ├── LICENSE │ │ │ └── dist │ │ │ │ └── css │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ └── bootstrap-reboot.css │ │ └── jquery │ │ │ └── LICENSE.txt │ └── css │ │ └── site.css ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── HangfireApp.dll │ │ ├── HangfireApp.exe │ │ ├── HangfireApp.pdb │ │ ├── refs │ │ ├── System.dll │ │ ├── System.IO.dll │ │ ├── mscorlib.dll │ │ ├── System.Core.dll │ │ ├── System.Data.dll │ │ ├── System.Linq.dll │ │ ├── System.Net.dll │ │ ├── System.Web.dll │ │ ├── System.Xml.dll │ │ ├── WindowsBase.dll │ │ ├── netstandard.dll │ │ ├── System.Buffers.dll │ │ ├── System.Console.dll │ │ ├── System.Drawing.dll │ │ ├── System.Memory.dll │ │ ├── System.Runtime.dll │ │ ├── System.Windows.dll │ │ ├── Microsoft.CSharp.dll │ │ ├── System.IO.Pipes.dll │ │ ├── System.Net.Http.dll │ │ ├── System.Net.Mail.dll │ │ ├── System.Net.Ping.dll │ │ ├── System.Numerics.dll │ │ ├── System.Security.dll │ │ ├── System.Threading.dll │ │ ├── System.Xml.Linq.dll │ │ ├── System.Xml.XPath.dll │ │ ├── Microsoft.JSInterop.dll │ │ ├── System.AppContext.dll │ │ ├── System.Collections.dll │ │ ├── System.Data.Common.dll │ │ ├── System.IO.Pipelines.dll │ │ ├── System.Net.Requests.dll │ │ ├── System.Net.Security.dll │ │ ├── System.Net.Sockets.dll │ │ ├── System.Net.WebProxy.dll │ │ ├── System.ObjectModel.dll │ │ ├── System.Reflection.dll │ │ ├── System.Transactions.dll │ │ ├── System.ValueTuple.dll │ │ ├── Microsoft.AspNetCore.dll │ │ ├── Microsoft.VisualBasic.dll │ │ ├── System.ComponentModel.dll │ │ ├── System.Configuration.dll │ │ ├── System.Globalization.dll │ │ ├── System.IO.Compression.dll │ │ ├── System.IO.FileSystem.dll │ │ ├── System.Linq.Parallel.dll │ │ ├── System.Linq.Queryable.dll │ │ ├── System.Net.Primitives.dll │ │ ├── System.Net.WebClient.dll │ │ ├── System.Net.WebSockets.dll │ │ ├── System.Runtime.Loader.dll │ │ ├── System.ServiceProcess.dll │ │ ├── System.Text.Encoding.dll │ │ ├── System.Xml.XDocument.dll │ │ ├── Microsoft.AspNetCore.Mvc.dll │ │ ├── Microsoft.Win32.Registry.dll │ │ ├── System.Diagnostics.Debug.dll │ │ ├── System.Diagnostics.Tools.dll │ │ ├── System.Dynamic.Runtime.dll │ │ ├── System.Linq.Expressions.dll │ │ ├── System.Net.HttpListener.dll │ │ ├── System.Net.ServicePoint.dll │ │ ├── System.Numerics.Vectors.dll │ │ ├── System.Reflection.Emit.dll │ │ ├── System.Resources.Reader.dll │ │ ├── System.Resources.Writer.dll │ │ ├── System.Runtime.Handles.dll │ │ ├── System.Runtime.Numerics.dll │ │ ├── System.Security.Claims.dll │ │ ├── System.ServiceModel.Web.dll │ │ ├── System.Threading.Tasks.dll │ │ ├── System.Threading.Thread.dll │ │ ├── System.Threading.Timer.dll │ │ ├── System.Web.HttpUtility.dll │ │ ├── System.Xml.ReaderWriter.dll │ │ ├── System.Xml.Serialization.dll │ │ ├── System.Xml.XmlDocument.dll │ │ ├── System.Xml.XmlSerializer.dll │ │ ├── Microsoft.AspNetCore.Cors.dll │ │ ├── Microsoft.AspNetCore.Http.dll │ │ ├── Microsoft.AspNetCore.Razor.dll │ │ ├── Microsoft.Extensions.Http.dll │ │ ├── Microsoft.Net.Http.Headers.dll │ │ ├── Microsoft.VisualBasic.Core.dll │ │ ├── Microsoft.Win32.Primitives.dll │ │ ├── System.Diagnostics.Process.dll │ │ ├── System.Diagnostics.Tracing.dll │ │ ├── System.Drawing.Primitives.dll │ │ ├── System.IO.IsolatedStorage.dll │ │ ├── System.Net.NameResolution.dll │ │ ├── System.Reflection.Metadata.dll │ │ ├── System.Runtime.Extensions.dll │ │ ├── System.Runtime.Intrinsics.dll │ │ ├── System.Security.Principal.dll │ │ ├── System.Threading.Channels.dll │ │ ├── System.Transactions.Local.dll │ │ ├── System.Windows.Extensions.dll │ │ ├── System.Xml.XPath.XDocument.dll │ │ ├── Microsoft.AspNetCore.Hosting.dll │ │ ├── Microsoft.AspNetCore.Identity.dll │ │ ├── Microsoft.AspNetCore.Metadata.dll │ │ ├── Microsoft.AspNetCore.Mvc.Core.dll │ │ ├── Microsoft.AspNetCore.Mvc.Cors.dll │ │ ├── Microsoft.AspNetCore.Rewrite.dll │ │ ├── Microsoft.AspNetCore.Routing.dll │ │ ├── Microsoft.AspNetCore.Session.dll │ │ ├── Microsoft.AspNetCore.SignalR.dll │ │ ├── Microsoft.Extensions.Hosting.dll │ │ ├── Microsoft.Extensions.Logging.dll │ │ ├── Microsoft.Extensions.Options.dll │ │ ├── System.Collections.Concurrent.dll │ │ ├── System.Collections.Immutable.dll │ │ ├── System.Collections.NonGeneric.dll │ │ ├── System.Data.DataSetExtensions.dll │ │ ├── System.Diagnostics.Contracts.dll │ │ ├── System.Diagnostics.EventLog.dll │ │ ├── System.Diagnostics.StackTrace.dll │ │ ├── System.IO.Compression.Brotli.dll │ │ ├── System.IO.Compression.ZipFile.dll │ │ ├── System.IO.FileSystem.Watcher.dll │ │ ├── System.IO.MemoryMappedFiles.dll │ │ ├── System.Net.NetworkInformation.dll │ │ ├── System.Net.WebSockets.Client.dll │ │ ├── System.Reflection.Extensions.dll │ │ ├── System.Reflection.Primitives.dll │ │ ├── System.Runtime.Serialization.dll │ │ ├── System.Security.AccessControl.dll │ │ ├── System.Security.Permissions.dll │ │ ├── System.Security.SecureString.dll │ │ ├── System.Threading.Overlapped.dll │ │ ├── System.Threading.ThreadPool.dll │ │ ├── Microsoft.AspNetCore.Components.dll │ │ ├── Microsoft.AspNetCore.Mvc.Razor.dll │ │ ├── Microsoft.AspNetCore.Server.IIS.dll │ │ ├── Microsoft.AspNetCore.WebSockets.dll │ │ ├── Microsoft.Extensions.ObjectPool.dll │ │ ├── Microsoft.Extensions.Primitives.dll │ │ ├── System.Collections.Specialized.dll │ │ ├── System.Diagnostics.TraceSource.dll │ │ ├── System.Globalization.Calendars.dll │ │ ├── System.Globalization.Extensions.dll │ │ ├── System.IO.FileSystem.DriveInfo.dll │ │ ├── System.IO.FileSystem.Primitives.dll │ │ ├── System.IO.UnmanagedMemoryStream.dll │ │ ├── System.Net.WebHeaderCollection.dll │ │ ├── System.Reflection.DispatchProxy.dll │ │ ├── System.Runtime.InteropServices.dll │ │ ├── System.Text.Encoding.CodePages.dll │ │ ├── System.Text.Encoding.Extensions.dll │ │ ├── System.Text.RegularExpressions.dll │ │ ├── System.Threading.Tasks.Dataflow.dll │ │ ├── System.Threading.Tasks.Parallel.dll │ │ ├── Microsoft.AspNetCore.Antiforgery.dll │ │ ├── Microsoft.AspNetCore.Authorization.dll │ │ ├── Microsoft.AspNetCore.CookiePolicy.dll │ │ ├── Microsoft.AspNetCore.Diagnostics.dll │ │ ├── Microsoft.AspNetCore.HostFiltering.dll │ │ ├── Microsoft.AspNetCore.Http.Features.dll │ │ ├── Microsoft.AspNetCore.HttpOverrides.dll │ │ ├── Microsoft.AspNetCore.HttpsPolicy.dll │ │ ├── Microsoft.AspNetCore.Localization.dll │ │ ├── Microsoft.AspNetCore.Razor.Runtime.dll │ │ ├── Microsoft.AspNetCore.SignalR.Core.dll │ │ ├── Microsoft.AspNetCore.StaticFiles.dll │ │ ├── Microsoft.AspNetCore.WebUtilities.dll │ │ ├── Microsoft.Extensions.Configuration.dll │ │ ├── Microsoft.Extensions.Identity.Core.dll │ │ ├── Microsoft.Extensions.Localization.dll │ │ ├── Microsoft.Extensions.Logging.Debug.dll │ │ ├── Microsoft.Extensions.WebEncoders.dll │ │ ├── System.ComponentModel.Annotations.dll │ │ ├── System.ComponentModel.Primitives.dll │ │ ├── System.Diagnostics.FileVersionInfo.dll │ │ ├── System.IO.Compression.FileSystem.dll │ │ ├── System.Reflection.Emit.Lightweight.dll │ │ ├── System.Reflection.TypeExtensions.dll │ │ ├── System.Resources.ResourceManager.dll │ │ ├── System.Runtime.Serialization.Json.dll │ │ ├── System.Runtime.Serialization.Xml.dll │ │ ├── System.Security.Cryptography.Cng.dll │ │ ├── System.Security.Cryptography.Csp.dll │ │ ├── System.Security.Cryptography.Xml.dll │ │ ├── System.Security.Principal.Windows.dll │ │ ├── System.Threading.Tasks.Extensions.dll │ │ ├── Microsoft.AspNetCore.Authentication.dll │ │ ├── Microsoft.AspNetCore.Components.Web.dll │ │ ├── Microsoft.AspNetCore.DataProtection.dll │ │ ├── Microsoft.AspNetCore.Http.Extensions.dll │ │ ├── Microsoft.AspNetCore.Mvc.ApiExplorer.dll │ │ ├── Microsoft.AspNetCore.Mvc.RazorPages.dll │ │ ├── Microsoft.AspNetCore.Mvc.TagHelpers.dll │ │ ├── Microsoft.AspNetCore.ResponseCaching.dll │ │ ├── Microsoft.AspNetCore.Server.HttpSys.dll │ │ ├── Microsoft.AspNetCore.Server.Kestrel.dll │ │ ├── Microsoft.AspNetCore.SignalR.Common.dll │ │ ├── Microsoft.Extensions.Caching.Memory.dll │ │ ├── Microsoft.Extensions.Identity.Stores.dll │ │ ├── Microsoft.Extensions.Logging.Console.dll │ │ ├── System.ComponentModel.TypeConverter.dll │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ ├── System.Reflection.Emit.ILGeneration.dll │ │ ├── Microsoft.AspNetCore.Components.Forms.dll │ │ ├── Microsoft.AspNetCore.Components.Server.dll │ │ ├── Microsoft.AspNetCore.Html.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Http.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Http.Connections.dll │ │ ├── Microsoft.AspNetCore.Mvc.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Mvc.Formatters.Xml.dll │ │ ├── Microsoft.AspNetCore.Mvc.Localization.dll │ │ ├── Microsoft.AspNetCore.Mvc.ViewFeatures.dll │ │ ├── Microsoft.Extensions.Configuration.Ini.dll │ │ ├── Microsoft.Extensions.Configuration.Json.dll │ │ ├── Microsoft.Extensions.Configuration.Xml.dll │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ ├── Microsoft.Extensions.Logging.EventLog.dll │ │ ├── System.ComponentModel.DataAnnotations.dll │ │ ├── System.ComponentModel.EventBasedAsync.dll │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ ├── System.Runtime.CompilerServices.VisualC.dll │ │ ├── System.Runtime.Serialization.Formatters.dll │ │ ├── System.Runtime.Serialization.Primitives.dll │ │ ├── System.Security.Cryptography.Algorithms.dll │ │ ├── System.Security.Cryptography.Encoding.dll │ │ ├── System.Security.Cryptography.Primitives.dll │ │ ├── Microsoft.AspNetCore.Authentication.Core.dll │ │ ├── Microsoft.AspNetCore.Authentication.OAuth.dll │ │ ├── Microsoft.AspNetCore.Authorization.Policy.dll │ │ ├── Microsoft.AspNetCore.Hosting.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Localization.Routing.dll │ │ ├── Microsoft.AspNetCore.Mvc.DataAnnotations.dll │ │ ├── Microsoft.AspNetCore.Mvc.Formatters.Json.dll │ │ ├── Microsoft.AspNetCore.ResponseCompression.dll │ │ ├── Microsoft.AspNetCore.Routing.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Server.Kestrel.Core.dll │ │ ├── Microsoft.Extensions.Caching.Abstractions.dll │ │ ├── Microsoft.Extensions.Configuration.Binder.dll │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ ├── Microsoft.Extensions.Hosting.Abstractions.dll │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ ├── Microsoft.Extensions.Logging.EventSource.dll │ │ ├── Microsoft.Extensions.Logging.TraceSource.dll │ │ ├── Microsoft.AspNetCore.Authentication.Cookies.dll │ │ ├── Microsoft.AspNetCore.Cryptography.Internal.dll │ │ ├── Microsoft.AspNetCore.Http.Connections.Common.dll │ │ ├── Microsoft.AspNetCore.Server.IISIntegration.dll │ │ ├── Microsoft.AspNetCore.SignalR.Protocols.Json.dll │ │ ├── Microsoft.Extensions.FileProviders.Composite.dll │ │ ├── Microsoft.Extensions.FileProviders.Embedded.dll │ │ ├── Microsoft.Extensions.FileProviders.Physical.dll │ │ ├── Microsoft.Extensions.Logging.Configuration.dll │ │ ├── Microsoft.Extensions.Options.DataAnnotations.dll │ │ ├── System.Diagnostics.TextWriterTraceListener.dll │ │ ├── Microsoft.AspNetCore.Components.Authorization.dll │ │ ├── Microsoft.AspNetCore.Connections.Abstractions.dll │ │ ├── Microsoft.AspNetCore.DataProtection.Extensions.dll │ │ ├── Microsoft.AspNetCore.Diagnostics.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Diagnostics.HealthChecks.dll │ │ ├── Microsoft.Extensions.Configuration.CommandLine.dll │ │ ├── Microsoft.Extensions.Configuration.KeyPerFile.dll │ │ ├── Microsoft.Extensions.Configuration.UserSecrets.dll │ │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.dll │ │ ├── Microsoft.Extensions.Localization.Abstractions.dll │ │ ├── System.Runtime.InteropServices.WindowsRuntime.dll │ │ ├── System.Security.Cryptography.X509Certificates.dll │ │ ├── Microsoft.AspNetCore.Authentication.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Cryptography.KeyDerivation.dll │ │ ├── Microsoft.AspNetCore.DataProtection.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Hosting.Server.Abstractions.dll │ │ ├── Microsoft.AspNetCore.ResponseCaching.Abstractions.dll │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ │ ├── System.Runtime.InteropServices.RuntimeInformation.dll │ │ ├── Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ ├── Microsoft.Extensions.Options.ConfigurationExtensions.dll │ │ ├── Microsoft.Extensions.Configuration.EnvironmentVariables.dll │ │ └── Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll │ │ ├── Hangfire.Core.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── System.Text.Json.dll │ │ ├── Hangfire.AspNetCore.dll │ │ ├── Hangfire.SqlServer.dll │ │ ├── HangfireApp.Views.dll │ │ ├── HangfireApp.Views.pdb │ │ ├── System.Data.SqlClient.dll │ │ ├── Microsoft.CodeAnalysis.dll │ │ ├── System.Text.Encodings.Web.dll │ │ ├── ca │ │ └── Hangfire.Core.resources.dll │ │ ├── de │ │ ├── Hangfire.Core.resources.dll │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ └── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── es │ │ ├── Hangfire.Core.resources.dll │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ └── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── fa │ │ └── Hangfire.Core.resources.dll │ │ ├── fr │ │ ├── Hangfire.Core.resources.dll │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ └── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── nb │ │ └── Hangfire.Core.resources.dll │ │ ├── nl │ │ └── Hangfire.Core.resources.dll │ │ ├── pt │ │ └── Hangfire.Core.resources.dll │ │ ├── sv │ │ └── Hangfire.Core.resources.dll │ │ ├── zh │ │ └── Hangfire.Core.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.dll │ │ ├── Microsoft.CodeAnalysis.Razor.dll │ │ ├── pt-BR │ │ ├── Hangfire.Core.resources.dll │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ └── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── pt-PT │ │ └── Hangfire.Core.resources.dll │ │ ├── runtimes │ │ ├── win-arm64 │ │ │ └── native │ │ │ │ └── sni.dll │ │ ├── win-x64 │ │ │ └── native │ │ │ │ └── sni.dll │ │ ├── win-x86 │ │ │ └── native │ │ │ │ └── sni.dll │ │ ├── unix │ │ │ └── lib │ │ │ │ └── netstandard2.0 │ │ │ │ └── System.Data.SqlClient.dll │ │ └── win │ │ │ └── lib │ │ │ └── netstandard2.0 │ │ │ └── System.Data.SqlClient.dll │ │ ├── tr-TR │ │ └── Hangfire.Core.resources.dll │ │ ├── zh-TW │ │ └── Hangfire.Core.resources.dll │ │ ├── Microsoft.AspNetCore.Razor.Language.dll │ │ ├── Microsoft.Extensions.DependencyModel.dll │ │ ├── cs │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ └── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── it │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ └── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── ja │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ └── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── ko │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ └── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── pl │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ └── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── ru │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ └── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── tr │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ └── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.AspNetCore.Mvc.Razor.Extensions.dll │ │ ├── zh-Hans │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ └── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── zh-Hant │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ └── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll │ │ ├── appsettings.Development.json │ │ ├── HangfireApp.runtimeconfig.dev.json │ │ ├── HangfireApp.runtimeconfig.json │ │ └── appsettings.json ├── appsettings.Development.json ├── Models │ └── ErrorViewModel.cs ├── appsettings.json ├── HangfireApp.csproj.user ├── HangfireApp.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── Controllers │ └── HomeController.cs └── Startup.cs ├── .vs └── HangfireApp │ ├── v16 │ └── .suo │ └── DesignTimeBuild │ └── .dtbcache.v2 └── HangfireApp.sln /HangfireApp/obj/Debug/netcoreapp3.1/HangfireApp.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HangfireApp/obj/Debug/netcoreapp3.1/HangfireApp.TagHelpers.input.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HangfireApp/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /HangfireApp/obj/Debug/netcoreapp3.1/HangfireApp.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HangfireApp/obj/Debug/netcoreapp3.1/staticwebassets/HangfireApp.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/HangfireApp/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/.vs/HangfireApp/v16/.suo -------------------------------------------------------------------------------- /HangfireApp/obj/Debug/netcoreapp3.1/HangfireApp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | fbc8d58b4e9ee40772b40d206e4849b158ba0395 2 | -------------------------------------------------------------------------------- /HangfireApp/obj/Debug/netcoreapp3.1/HangfireApp.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 921da6a519a8c0c3f7437f3f04dbc4a3301fa1da 2 | -------------------------------------------------------------------------------- /HangfireApp/obj/Debug/netcoreapp3.1/HangfireApp.RazorCoreGenerate.cache: -------------------------------------------------------------------------------- 1 | e391201d385731d35a4a9cd45d2faeaa57bcce9a 2 | -------------------------------------------------------------------------------- /HangfireApp/obj/Debug/netcoreapp3.1/HangfireApp.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 89495b8d6d8e8c75823b7589405e0dcf94049cbc 2 | -------------------------------------------------------------------------------- /HangfireApp/obj/Debug/netcoreapp3.1/HangfireApp.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | d2f78e7c263fe66f13167d969e237e7eb8a9dcdf 2 | -------------------------------------------------------------------------------- /HangfireApp/obj/Debug/netcoreapp3.1/HangfireApp.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | ad2155679ae43a7558ddf6c26d69f2cd115a7343 2 | -------------------------------------------------------------------------------- /HangfireApp/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/wwwroot/favicon.ico -------------------------------------------------------------------------------- /.vs/HangfireApp/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/.vs/HangfireApp/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /HangfireApp/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using HangfireApp 2 | @using HangfireApp.Models 3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 4 | -------------------------------------------------------------------------------- /HangfireApp/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/HangfireApp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/HangfireApp.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/HangfireApp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/HangfireApp.exe -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/HangfireApp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/HangfireApp.pdb -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.dll -------------------------------------------------------------------------------- /HangfireApp/obj/Debug/netcoreapp3.1/HangfireApp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/obj/Debug/netcoreapp3.1/HangfireApp.dll -------------------------------------------------------------------------------- /HangfireApp/obj/Debug/netcoreapp3.1/HangfireApp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/obj/Debug/netcoreapp3.1/HangfireApp.pdb -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/Hangfire.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/Hangfire.Core.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.IO.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/mscorlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/mscorlib.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/System.Text.Json.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Core.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Data.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Linq.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Web.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Xml.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/WindowsBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/WindowsBase.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/netstandard.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/netstandard.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/Hangfire.AspNetCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/Hangfire.AspNetCore.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/Hangfire.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/Hangfire.SqlServer.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/HangfireApp.Views.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/HangfireApp.Views.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/HangfireApp.Views.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/HangfireApp.Views.pdb -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Buffers.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Console.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Drawing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Drawing.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Memory.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Runtime.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Windows.dll -------------------------------------------------------------------------------- /HangfireApp/obj/Debug/netcoreapp3.1/HangfireApp.Views.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/obj/Debug/netcoreapp3.1/HangfireApp.Views.dll -------------------------------------------------------------------------------- /HangfireApp/obj/Debug/netcoreapp3.1/HangfireApp.Views.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/obj/Debug/netcoreapp3.1/HangfireApp.Views.pdb -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.CSharp.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.IO.Pipes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.IO.Pipes.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.Http.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.Mail.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.Mail.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.Ping.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.Ping.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Numerics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Numerics.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Security.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Threading.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Xml.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Xml.Linq.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Xml.XPath.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Xml.XPath.dll -------------------------------------------------------------------------------- /HangfireApp/obj/Debug/netcoreapp3.1/HangfireApp.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/obj/Debug/netcoreapp3.1/HangfireApp.assets.cache -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.JSInterop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.JSInterop.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.AppContext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.AppContext.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Collections.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Data.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Data.Common.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.IO.Pipelines.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.IO.Pipelines.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.Requests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.Requests.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.Security.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.Sockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.Sockets.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.WebProxy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.WebProxy.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.ObjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.ObjectModel.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Reflection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Reflection.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Transactions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Transactions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.ValueTuple.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/System.Text.Encodings.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/System.Text.Encodings.Web.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/ca/Hangfire.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/ca/Hangfire.Core.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/de/Hangfire.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/de/Hangfire.Core.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/es/Hangfire.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/es/Hangfire.Core.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/fa/Hangfire.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/fa/Hangfire.Core.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/fr/Hangfire.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/fr/Hangfire.Core.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/nb/Hangfire.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/nb/Hangfire.Core.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/nl/Hangfire.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/nl/Hangfire.Core.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/pt/Hangfire.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/pt/Hangfire.Core.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.VisualBasic.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Configuration.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Globalization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Globalization.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Linq.Parallel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Linq.Parallel.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Linq.Queryable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Linq.Queryable.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.Primitives.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.WebClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.WebClient.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.WebSockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.WebSockets.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Runtime.Loader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Runtime.Loader.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.ServiceProcess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.ServiceProcess.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Text.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Text.Encoding.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Xml.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Xml.XDocument.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/sv/Hangfire.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/sv/Hangfire.Core.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/zh/Hangfire.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/zh/Hangfire.Core.resources.dll -------------------------------------------------------------------------------- /HangfireApp/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Privacy Policy"; 3 | } 4 |
Use this page to detail your site's privacy policy.
7 | -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.Razor.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/pt-BR/Hangfire.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/pt-BR/Hangfire.Core.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/pt-PT/Hangfire.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/pt-PT/Hangfire.Core.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Debug.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Tools.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Tools.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Dynamic.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Dynamic.Runtime.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Linq.Expressions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Linq.Expressions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.HttpListener.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.HttpListener.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.ServicePoint.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.ServicePoint.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Reflection.Emit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Reflection.Emit.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Resources.Reader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Resources.Reader.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Resources.Writer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Resources.Writer.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Runtime.Handles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Runtime.Handles.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Runtime.Numerics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Runtime.Numerics.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Security.Claims.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Security.Claims.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.ServiceModel.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.ServiceModel.Web.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Threading.Thread.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Threading.Thread.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Threading.Timer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Threading.Timer.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Web.HttpUtility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Web.HttpUtility.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Xml.ReaderWriter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Xml.ReaderWriter.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Xml.Serialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Xml.Serialization.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Xml.XmlDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Xml.XmlDocument.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Xml.XmlSerializer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Xml.XmlSerializer.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/sni.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/tr-TR/Hangfire.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/tr-TR/Hangfire.Core.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/zh-TW/Hangfire.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/zh-TW/Hangfire.Core.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Cors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Cors.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Razor.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Http.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Net.Http.Headers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Net.Http.Headers.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.VisualBasic.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.VisualBasic.Core.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Win32.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Win32.Primitives.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Process.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Process.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Tracing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Tracing.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Drawing.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Drawing.Primitives.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.IO.IsolatedStorage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.IO.IsolatedStorage.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.NameResolution.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.NameResolution.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Runtime.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Runtime.Extensions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Runtime.Intrinsics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Runtime.Intrinsics.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Security.Principal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Security.Principal.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Threading.Channels.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Threading.Channels.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Transactions.Local.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Transactions.Local.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Xml.XPath.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Xml.XPath.XDocument.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Hosting.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Identity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Identity.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Metadata.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Core.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Cors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Cors.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Rewrite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Rewrite.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Routing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Routing.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Session.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Session.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Hosting.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Collections.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Collections.Concurrent.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Collections.NonGeneric.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Collections.NonGeneric.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Data.DataSetExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Data.DataSetExtensions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Contracts.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.EventLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.EventLog.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.StackTrace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.StackTrace.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.Brotli.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.Brotli.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.ZipFile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.ZipFile.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.Watcher.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.Watcher.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.IO.MemoryMappedFiles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.IO.MemoryMappedFiles.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.NetworkInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.NetworkInformation.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.WebSockets.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.WebSockets.Client.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Reflection.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Reflection.Extensions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Reflection.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Reflection.Primitives.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Security.Permissions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Security.SecureString.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Security.SecureString.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Threading.Overlapped.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Threading.Overlapped.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Threading.ThreadPool.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Threading.ThreadPool.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Razor.Language.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Razor.Language.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyModel.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Razor.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.IIS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.IIS.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.WebSockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.WebSockets.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.ObjectPool.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.ObjectPool.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Collections.Specialized.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Collections.Specialized.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.TraceSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.TraceSource.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Globalization.Calendars.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Globalization.Calendars.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Globalization.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Globalization.Extensions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.DriveInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.DriveInfo.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.Primitives.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.IO.UnmanagedMemoryStream.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.IO.UnmanagedMemoryStream.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.WebHeaderCollection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Net.WebHeaderCollection.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Reflection.DispatchProxy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Reflection.DispatchProxy.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Runtime.InteropServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Runtime.InteropServices.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Text.Encoding.CodePages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Text.Encoding.CodePages.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Text.Encoding.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Text.Encoding.Extensions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Text.RegularExpressions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Text.RegularExpressions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.Dataflow.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.Dataflow.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.Parallel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.Parallel.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Antiforgery.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Antiforgery.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authorization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authorization.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.CookiePolicy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.CookiePolicy.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Diagnostics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Diagnostics.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.HostFiltering.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.HostFiltering.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Features.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Features.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.HttpOverrides.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.HttpOverrides.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.HttpsPolicy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.HttpsPolicy.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Localization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Localization.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Razor.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Razor.Runtime.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.Core.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.StaticFiles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.StaticFiles.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.WebUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.WebUtilities.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Identity.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Identity.Core.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Localization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Localization.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.Debug.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.WebEncoders.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.WebEncoders.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.Annotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.Annotations.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.Primitives.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.FileVersionInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.FileVersionInfo.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.FileSystem.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Reflection.Emit.Lightweight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Reflection.Emit.Lightweight.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Reflection.TypeExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Reflection.TypeExtensions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Resources.ResourceManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Resources.ResourceManager.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Json.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Xml.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Cng.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Cng.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Csp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Csp.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Xml.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /HangfireApp/obj/Debug/netcoreapp3.1/HangfireApp.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/obj/Debug/netcoreapp3.1/HangfireApp.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Web.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.DataProtection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.DataProtection.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Extensions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.ResponseCaching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.ResponseCaching.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.HttpSys.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.HttpSys.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.Kestrel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.Kestrel.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.Common.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Caching.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Caching.Memory.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Identity.Stores.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Identity.Stores.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.Console.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.TypeConverter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.TypeConverter.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Reflection.Emit.ILGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Reflection.Emit.ILGeneration.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Forms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Forms.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Server.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Html.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Html.Abstractions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Abstractions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Connections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Connections.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Localization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Localization.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.Ini.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.Ini.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.Json.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.Xml.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.FileSystemGlobbing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.FileSystemGlobbing.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.EventLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.EventLog.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.DataAnnotations.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.EventBasedAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.EventBasedAsync.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Runtime.CompilerServices.VisualC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Runtime.CompilerServices.VisualC.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Formatters.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Formatters.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Primitives.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.Core.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.OAuth.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.OAuth.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authorization.Policy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authorization.Policy.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Localization.Routing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Localization.Routing.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.ResponseCompression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.ResponseCompression.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Routing.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Routing.Abstractions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Caching.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Caching.Abstractions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.Binder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.Binder.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Hosting.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Hosting.Abstractions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.EventSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.EventSource.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.TraceSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.TraceSource.dll -------------------------------------------------------------------------------- /HangfireApp/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.Cookies.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.Cookies.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Cryptography.Internal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Cryptography.Internal.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Connections.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Connections.Common.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.IISIntegration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.IISIntegration.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.FileProviders.Composite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.FileProviders.Composite.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.FileProviders.Embedded.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.FileProviders.Embedded.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.FileProviders.Physical.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.FileProviders.Physical.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.Configuration.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Options.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Options.DataAnnotations.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.TextWriterTraceListener.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.TextWriterTraceListener.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Authorization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Authorization.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Connections.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Connections.Abstractions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.CommandLine.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.UserSecrets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.UserSecrets.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Localization.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Localization.Abstractions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Runtime.InteropServices.WindowsRuntime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Runtime.InteropServices.WindowsRuntime.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /HangfireApp/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.FileExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.FileExtensions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.FileProviders.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.FileProviders.Abstractions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Runtime.InteropServices.RuntimeInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/System.Runtime.InteropServices.RuntimeInformation.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /HangfireApp/obj/Debug/netcoreapp3.1/HangfireApp.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.RootNamespace = HangfireApp 3 | build_property.ProjectDir = C:\Users\Ahkar Toe Maw\source\repos\HangfireApp\HangfireApp\ 4 | -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Options.ConfigurationExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Options.ConfigurationExtensions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.EnvironmentVariables.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.EnvironmentVariables.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkar33/asp.net-hangfire/main/HangfireApp/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /HangfireApp/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification 2 | // for details on configuring this project to bundle and minify static web assets. 3 | 4 | // Write your JavaScript code. 5 | -------------------------------------------------------------------------------- /HangfireApp/bin/Debug/netcoreapp3.1/HangfireApp.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\Ahkar Toe Maw\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\Ahkar Toe Maw\\.nuget\\packages" 6 | ] 7 | } 8 | } -------------------------------------------------------------------------------- /HangfireApp/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | //Learn about building Web apps with ASP.NET Core.
8 |
12 | Request ID: @Model.RequestId
13 |
18 | Swapping to Development environment will display more detailed information about the error that occurred. 19 |
20 |21 | The Development environment shouldn't be enabled for deployed applications. 22 | It can result in displaying sensitive information from exceptions to end users. 23 | For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development 24 | and restarting the app. 25 |
26 | -------------------------------------------------------------------------------- /HangfireApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "iisSettings": { 3 | "windowsAuthentication": false, 4 | "anonymousAuthentication": true, 5 | "iisExpress": { 6 | "applicationUrl": "http://localhost:43266", 7 | "sslPort": 44364 8 | } 9 | }, 10 | "profiles": { 11 | "IIS Express": { 12 | "commandName": "IISExpress", 13 | "launchBrowser": true, 14 | "environmentVariables": { 15 | "ASPNETCORE_ENVIRONMENT": "Development", 16 | "ASPNETCORE_HOSTINGSTARTUPASSEMBLIES": "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" 17 | } 18 | }, 19 | "HangfireApp": { 20 | "commandName": "Project", 21 | "launchBrowser": true, 22 | "applicationUrl": "https://localhost:5001;http://localhost:5000", 23 | "environmentVariables": { 24 | "ASPNETCORE_ENVIRONMENT": "Development", 25 | "ASPNETCORE_HOSTINGSTARTUPASSEMBLIES": "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" 26 | } 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /HangfireApp/obj/Debug/netcoreapp3.1/HangfireApp.RazorAssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | //Learn about building Web apps with ASP.NET Core.
\r\nUse this page to detail your site\'s privacy policy.
\r\n"); 55 | } 56 | #pragma warning restore 1998 57 | #nullable restore 58 | [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] 59 | public global::Microsoft.AspNetCore.Mvc.ViewFeatures.IModelExpressionProvider ModelExpressionProvider { get; private set; } = default!; 60 | #nullable disable 61 | #nullable restore 62 | [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] 63 | public global::Microsoft.AspNetCore.Mvc.IUrlHelper Url { get; private set; } = default!; 64 | #nullable disable 65 | #nullable restore 66 | [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] 67 | public global::Microsoft.AspNetCore.Mvc.IViewComponentHelper Component { get; private set; } = default!; 68 | #nullable disable 69 | #nullable restore 70 | [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] 71 | public global::Microsoft.AspNetCore.Mvc.Rendering.IJsonHelper Json { get; private set; } = default!; 72 | #nullable disable 73 | #nullable restore 74 | [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] 75 | public global::Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper\r\n Request ID: ");
56 | #nullable restore
57 | #line 12 "C:\Users\Ahkar Toe Maw\source\repos\HangfireApp\HangfireApp\Views\Shared\Error.cshtml"
58 | Write(Model.RequestId);
59 |
60 | #line default
61 | #line hidden
62 | #nullable disable
63 | WriteLiteral("\r\n
74 | Swapping to Development environment will display more detailed information about the error that occurred. 75 |
76 |77 | The Development environment shouldn't be enabled for deployed applications. 78 | It can result in displaying sensitive information from exceptions to end users. 79 | For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development 80 | and restarting the app. 81 |
82 | "); 83 | } 84 | #pragma warning restore 1998 85 | #nullable restore 86 | [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] 87 | public global::Microsoft.AspNetCore.Mvc.ViewFeatures.IModelExpressionProvider ModelExpressionProvider { get; private set; } = default!; 88 | #nullable disable 89 | #nullable restore 90 | [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] 91 | public global::Microsoft.AspNetCore.Mvc.IUrlHelper Url { get; private set; } = default!; 92 | #nullable disable 93 | #nullable restore 94 | [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] 95 | public global::Microsoft.AspNetCore.Mvc.IViewComponentHelper Component { get; private set; } = default!; 96 | #nullable disable 97 | #nullable restore 98 | [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] 99 | public global::Microsoft.AspNetCore.Mvc.Rendering.IJsonHelper Json { get; private set; } = default!; 100 | #nullable disable 101 | #nullable restore 102 | [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] 103 | public global::Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper