├── .vs └── Vazor │ ├── DesignTimeBuild │ └── .dtbcache.v2 │ ├── config │ └── applicationhost.config │ └── v16 │ └── .suo ├── A-Vazor-story.md ├── LICENSE.txt ├── README.md ├── Vazor.sln ├── Vazor ├── FileProvider │ ├── NoWatchChangeToken.vb │ ├── VazorFileInfo.vb │ ├── VazorViewMapper.vb │ ├── VazorViewProvider.vb │ └── ViewInfo.vb ├── TagHelpers │ ├── AnchorTagHelper.vb │ └── TagHelper.vb ├── Vazor.vbproj ├── VazorExtensions.vb ├── VazorPage.vb ├── VazorSharedView.vb ├── VazorView.vb ├── bin │ └── Release │ │ ├── Vazor.2.0.0.nupkg │ │ └── net6.0 │ │ ├── Vazor.deps.json │ │ ├── Vazor.dll │ │ ├── Vazor.pdb │ │ └── ref │ │ └── Vazor.dll └── obj │ ├── Debug │ ├── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.vb │ │ ├── Vazor.AssemblyInfo.vb │ │ ├── Vazor.AssemblyInfoInputs.cache │ │ ├── Vazor.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Vazor.assets.cache │ │ └── Vazor.vbproj.AssemblyReference.cache │ ├── netcoreapp3.0 │ │ ├── Vazor.AssemblyInfo.vb │ │ ├── Vazor.AssemblyInfoInputs.cache │ │ ├── Vazor.assets.cache │ │ ├── Vazor.dll │ │ ├── Vazor.pdb │ │ ├── Vazor.vbproj.CoreCompileInputs.cache │ │ ├── Vazor.vbproj.FileListAbsolute.txt │ │ └── Vazor.vbprojAssemblyReference.cache │ └── netcoreapp3.1 │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.vb │ │ ├── Vazor.AssemblyInfo.vb │ │ ├── Vazor.AssemblyInfoInputs.cache │ │ ├── Vazor.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Vazor.assets.cache │ │ ├── Vazor.dll │ │ ├── Vazor.pdb │ │ ├── Vazor.vbproj.AssemblyReference.cache │ │ ├── Vazor.vbproj.CoreCompileInputs.cache │ │ ├── Vazor.vbproj.FileListAbsolute.txt │ │ └── staticwebassets │ │ └── Vazor.StaticWebAssets.Manifest.cache │ ├── Release │ ├── Vazor.2.0.0.nuspec │ └── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.vb │ │ ├── Vazor.AssemblyInfo.vb │ │ ├── Vazor.AssemblyInfoInputs.cache │ │ ├── Vazor.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Vazor.assets.cache │ │ ├── Vazor.dll │ │ ├── Vazor.pdb │ │ ├── Vazor.vbproj.CoreCompileInputs.cache │ │ ├── Vazor.vbproj.FileListAbsolute.txt │ │ ├── ref │ │ └── Vazor.dll │ │ └── staticwebassets.build.json │ ├── Vazor.vbproj.nuget.cache │ ├── Vazor.vbproj.nuget.dgspec.json │ ├── Vazor.vbproj.nuget.g.props │ ├── Vazor.vbproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── VazorEx ├── VazorTemplateSetup.sln ├── VazorTemplateSetup │ ├── ItemTemplates │ │ ├── VazorPage.zip │ │ └── VazorView.zip │ ├── My Project │ │ └── AssemblyInfo.vb │ ├── ProjectTemplates │ │ ├── VazorMVC.Net6.0.zip │ │ └── VazorPages.Net6.0.zip │ ├── VazorEx.vbproj │ ├── VazorEx.vbproj.user │ ├── VazorTemplateSetup.vbproj │ ├── VazorTemplateSetup.vbproj.user │ ├── VazorTemplateSetupPackage.vb │ ├── obj │ │ ├── Release │ │ │ ├── .NETFramework,Version=v4.8.AssemblyAttributes.vb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── ItemTemplates │ │ │ │ ├── VazorPage │ │ │ │ │ ├── MyTemplate.vstemplate │ │ │ │ │ ├── View.cshtml │ │ │ │ │ ├── View.cshtml.vb │ │ │ │ │ ├── View.vbxml.vb │ │ │ │ │ └── __TemplateIcon.ico │ │ │ │ └── VazorView │ │ │ │ │ ├── MyTemplate.vstemplate │ │ │ │ │ ├── View.vazor.vb │ │ │ │ │ ├── View.vbxml.vb │ │ │ │ │ └── __TemplateIcon.ico │ │ │ ├── ProjectTemplates │ │ │ │ ├── VazorMVC.Net6.0 │ │ │ │ │ ├── $safeprojectname$.vbproj │ │ │ │ │ ├── Controllers │ │ │ │ │ │ └── HomeController.vb │ │ │ │ │ ├── Data │ │ │ │ │ │ └── SomeStudents.vb │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── ErrorViewModel.vb │ │ │ │ │ │ └── Student.vb │ │ │ │ │ ├── My Project │ │ │ │ │ │ └── launchSettings.json │ │ │ │ │ ├── MyTemplate.vstemplate │ │ │ │ │ ├── Program.vb │ │ │ │ │ ├── Startup.vb │ │ │ │ │ ├── Views │ │ │ │ │ │ ├── Home │ │ │ │ │ │ │ ├── Index.vazor.vb │ │ │ │ │ │ │ ├── Index.vbxml.vb │ │ │ │ │ │ │ └── Privacy.cshtml │ │ │ │ │ │ ├── Shared │ │ │ │ │ │ │ ├── Error.cshtml │ │ │ │ │ │ │ ├── Layout.vazor.vb │ │ │ │ │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ │ │ └── _ViewStart.cshtml │ │ │ │ │ ├── __TemplateIcon.ico │ │ │ │ │ ├── appsettings.Development.json │ │ │ │ │ ├── appsettings.json │ │ │ │ │ └── wwwroot │ │ │ │ │ │ ├── css │ │ │ │ │ │ └── site.css │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ ├── js │ │ │ │ │ │ └── site.js │ │ │ │ │ │ └── lib │ │ │ │ │ │ ├── Vazor │ │ │ │ │ │ ├── Vazor.deps.json │ │ │ │ │ │ └── Vazor.dll │ │ │ │ │ │ ├── bootstrap │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ └── dist │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ │ ├── bootstrap.js.map │ │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ │ └── bootstrap.min.js.map │ │ │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ │ │ │ ├── jquery-validation │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ └── dist │ │ │ │ │ │ │ ├── additional-methods.js │ │ │ │ │ │ │ ├── additional-methods.min.js │ │ │ │ │ │ │ ├── jquery.validate.js │ │ │ │ │ │ │ └── jquery.validate.min.js │ │ │ │ │ │ └── jquery │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ └── dist │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ │ └── jquery.min.map │ │ │ │ └── VazorPages.Net6.0 │ │ │ │ │ ├── $safeprojectname$.vbproj │ │ │ │ │ ├── Data │ │ │ │ │ ├── SomeStudents.vb │ │ │ │ │ └── Student.vb │ │ │ │ │ ├── My Project │ │ │ │ │ └── launchSettings.json │ │ │ │ │ ├── MyTemplate.vstemplate │ │ │ │ │ ├── Pages │ │ │ │ │ ├── Error.cshtml │ │ │ │ │ ├── Error.cshtml.vb │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ ├── Index.cshtml.vb │ │ │ │ │ ├── Index.vbxml.vb │ │ │ │ │ ├── Privacy.cshtml │ │ │ │ │ ├── Privacy.cshtml.vb │ │ │ │ │ ├── Shared │ │ │ │ │ │ ├── Layout.vazor.vb │ │ │ │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ │ └── _ViewStart.cshtml │ │ │ │ │ ├── Program.vb │ │ │ │ │ ├── Startup.vb │ │ │ │ │ ├── __TemplateIcon.ico │ │ │ │ │ ├── appsettings.Development.json │ │ │ │ │ ├── appsettings.json │ │ │ │ │ └── wwwroot │ │ │ │ │ ├── css │ │ │ │ │ └── site.css │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── js │ │ │ │ │ └── site.js │ │ │ │ │ └── lib │ │ │ │ │ ├── Vazor │ │ │ │ │ ├── Vazor.deps.json │ │ │ │ │ └── Vazor.dll │ │ │ │ │ ├── bootstrap │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── dist │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ │ │ └── js │ │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ ├── bootstrap.js.map │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ └── bootstrap.min.js.map │ │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ │ │ ├── jquery-validation │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ └── dist │ │ │ │ │ │ ├── additional-methods.js │ │ │ │ │ │ ├── additional-methods.min.js │ │ │ │ │ │ ├── jquery.validate.js │ │ │ │ │ │ └── jquery.validate.min.js │ │ │ │ │ └── jquery │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── dist │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ └── jquery.min.map │ │ │ ├── TemplateManifests │ │ │ │ ├── templateManifest0.noloc.vstman │ │ │ │ └── templateManifest1.noloc.vstman │ │ │ ├── VazorTemplateSetup.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── VazorTemplateSetup.dll │ │ │ ├── VazorTemplateSetup.latest.pkgdef │ │ │ ├── VazorTemplateSetup.pdb │ │ │ ├── VazorTemplateSetup.pkgdef │ │ │ ├── VazorTemplateSetup.vbproj.AssemblyReference.cache │ │ │ ├── VazorTemplateSetup.vbproj.CopyComplete │ │ │ ├── VazorTemplateSetup.vbproj.CoreCompileInputs.cache │ │ │ ├── VazorTemplateSetup.vbproj.FileListAbsolute.txt │ │ │ ├── VazorTemplateSetup.vbproj.GenerateResource.cache │ │ │ ├── VazorTemplateSetup.vbproj.VsixDeployedFileListAbsolute.txt │ │ │ ├── _EmptyResource.resources │ │ │ ├── createTemplateManifests.cache │ │ │ ├── extension.vsixmanifest │ │ │ ├── files.json │ │ │ └── templateFiles.json │ │ ├── VazorTemplateSetup.vbproj.nuget.dgspec.json │ │ ├── VazorTemplateSetup.vbproj.nuget.g.props │ │ ├── VazorTemplateSetup.vbproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache │ └── source.extension.vsixmanifest ├── VbXmlCompletionProvider │ ├── AbstractVbXmlCompletionProvider.vb │ ├── CommonCompletionItem.vb │ ├── CommonCompletionProvider.vb │ ├── Glyph.vb │ ├── GlyphTags.vb │ ├── ISyntaxFacts.vb │ ├── ISyntaxFactsService.vb │ ├── ImmutableArrayExtensions.vb │ ├── IsInsertionTrigger.vb │ ├── My Project │ │ ├── Resources.Designer.vb │ │ └── Resources.resx │ ├── RoamingProfileStorageLocation.vb │ ├── SyntaxTokenExtensions.vb │ ├── SyntaxTreeExtensions.vb │ ├── VbXmlCompletionProvider.vb │ ├── VbXmlCompletionProvider.vbproj │ ├── VbXmlCompletionProvider.vbproj.user │ ├── WellKnownTags.vb │ ├── bin │ │ └── Release │ │ │ └── netstandard2.0 │ │ │ ├── vbxmlCompletionProvider.deps.json │ │ │ ├── vbxmlCompletionProvider.dll │ │ │ └── vbxmlCompletionProvider.pdb │ └── obj │ │ ├── Release │ │ └── netstandard2.0 │ │ │ ├── .NETStandard,Version=v2.0.AssemblyAttributes.vb │ │ │ ├── VbXmlCompletionProvider.AssemblyInfo.vb │ │ │ ├── VbXmlCompletionProvider.AssemblyInfoInputs.cache │ │ │ ├── VbXmlCompletionProvider.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── VbXmlCompletionProvider.assets.cache │ │ │ ├── VbXmlCompletionProvider.vbproj.AssemblyReference.cache │ │ │ ├── VbXmlCompletionProvider.vbproj.CoreCompileInputs.cache │ │ │ ├── VbXmlCompletionProvider.vbproj.FileListAbsolute.txt │ │ │ ├── VbXmlCompletionProvider.vbproj.GenerateResource.cache │ │ │ ├── vbxmlCompProv.Resources.resources │ │ │ ├── vbxmlCompletionProvider.dll │ │ │ └── vbxmlCompletionProvider.pdb │ │ ├── VbXmlCompletionProvider.vbproj.nuget.dgspec.json │ │ ├── VbXmlCompletionProvider.vbproj.nuget.g.props │ │ ├── VbXmlCompletionProvider.vbproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache ├── commonHTML5Types.xsd └── html_5.xsd ├── VazorPages1 ├── .vs │ ├── RazorPages1 │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache │ │ ├── config │ │ │ └── applicationhost.config │ │ └── v16 │ │ │ ├── .suo │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ └── VazorPages1 │ │ ├── DesignTimeBuild │ │ └── .dtbcache │ │ ├── config │ │ └── applicationhost.config │ │ └── v16 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ └── storage.ide ├── Data │ ├── SomeStudents.vb │ └── Student.vb ├── My Project │ └── launchSettings.json ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.vb │ ├── Index.cshtml │ ├── Index.cshtml.vb │ ├── Index.vbxml.vb │ ├── Privacy.cshtml │ ├── Privacy.cshtml.vb │ ├── Shared │ │ ├── Layout.vbxml.vb │ │ ├── _CookieConsentPartial.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── Program.vb ├── Startup.vb ├── VazorPages1.sln ├── VazorPages1.vbproj ├── VazorPages1.vbproj.user ├── appsettings.Development.json ├── appsettings.json ├── bin │ └── Debug │ │ └── net6.0 │ │ ├── Microsoft.AspNetCore.Mvc.Razor.Extensions.dll │ │ ├── Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll │ │ ├── Microsoft.AspNetCore.Razor.Language.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.dll │ │ ├── Microsoft.CodeAnalysis.Razor.dll │ │ ├── Microsoft.CodeAnalysis.dll │ │ ├── Microsoft.Extensions.DependencyModel.dll │ │ ├── Vazor.dll │ │ ├── Vazor.pdb │ │ ├── VazorPages1.deps.json │ │ ├── VazorPages1.dll │ │ ├── VazorPages1.exe │ │ ├── VazorPages1.pdb │ │ ├── VazorPages1.runtimeconfig.json │ │ ├── VazorPages1.staticwebassets.runtime.json │ │ ├── ZML.dll │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── cs │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── de │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── es │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── fr │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── it │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── ja │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── ko │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── pl │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── pt-BR │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── ref │ │ └── VazorPages1.dll │ │ ├── refs │ │ ├── Microsoft.AspNetCore.Antiforgery.dll │ │ ├── Microsoft.AspNetCore.Authentication.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Authentication.Cookies.dll │ │ ├── Microsoft.AspNetCore.Authentication.Core.dll │ │ ├── Microsoft.AspNetCore.Authentication.OAuth.dll │ │ ├── Microsoft.AspNetCore.Authentication.dll │ │ ├── Microsoft.AspNetCore.Authorization.Policy.dll │ │ ├── Microsoft.AspNetCore.Authorization.dll │ │ ├── Microsoft.AspNetCore.Components.Authorization.dll │ │ ├── Microsoft.AspNetCore.Components.Forms.dll │ │ ├── Microsoft.AspNetCore.Components.Server.dll │ │ ├── Microsoft.AspNetCore.Components.Web.dll │ │ ├── Microsoft.AspNetCore.Components.dll │ │ ├── Microsoft.AspNetCore.Connections.Abstractions.dll │ │ ├── Microsoft.AspNetCore.CookiePolicy.dll │ │ ├── Microsoft.AspNetCore.Cors.dll │ │ ├── Microsoft.AspNetCore.Cryptography.Internal.dll │ │ ├── Microsoft.AspNetCore.Cryptography.KeyDerivation.dll │ │ ├── Microsoft.AspNetCore.DataProtection.Abstractions.dll │ │ ├── Microsoft.AspNetCore.DataProtection.Extensions.dll │ │ ├── Microsoft.AspNetCore.DataProtection.dll │ │ ├── Microsoft.AspNetCore.Diagnostics.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Diagnostics.HealthChecks.dll │ │ ├── Microsoft.AspNetCore.Diagnostics.dll │ │ ├── Microsoft.AspNetCore.HostFiltering.dll │ │ ├── Microsoft.AspNetCore.Hosting.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Hosting.Server.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Hosting.dll │ │ ├── Microsoft.AspNetCore.Html.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Http.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Http.Connections.Common.dll │ │ ├── Microsoft.AspNetCore.Http.Connections.dll │ │ ├── Microsoft.AspNetCore.Http.Extensions.dll │ │ ├── Microsoft.AspNetCore.Http.Features.dll │ │ ├── Microsoft.AspNetCore.Http.Results.dll │ │ ├── Microsoft.AspNetCore.Http.dll │ │ ├── Microsoft.AspNetCore.HttpLogging.dll │ │ ├── Microsoft.AspNetCore.HttpOverrides.dll │ │ ├── Microsoft.AspNetCore.HttpsPolicy.dll │ │ ├── Microsoft.AspNetCore.Identity.dll │ │ ├── Microsoft.AspNetCore.Localization.Routing.dll │ │ ├── Microsoft.AspNetCore.Localization.dll │ │ ├── Microsoft.AspNetCore.Metadata.dll │ │ ├── Microsoft.AspNetCore.Mvc.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Mvc.ApiExplorer.dll │ │ ├── Microsoft.AspNetCore.Mvc.Core.dll │ │ ├── Microsoft.AspNetCore.Mvc.Cors.dll │ │ ├── Microsoft.AspNetCore.Mvc.DataAnnotations.dll │ │ ├── Microsoft.AspNetCore.Mvc.Formatters.Json.dll │ │ ├── Microsoft.AspNetCore.Mvc.Formatters.Xml.dll │ │ ├── Microsoft.AspNetCore.Mvc.Localization.dll │ │ ├── Microsoft.AspNetCore.Mvc.Razor.dll │ │ ├── Microsoft.AspNetCore.Mvc.RazorPages.dll │ │ ├── Microsoft.AspNetCore.Mvc.TagHelpers.dll │ │ ├── Microsoft.AspNetCore.Mvc.ViewFeatures.dll │ │ ├── Microsoft.AspNetCore.Mvc.dll │ │ ├── Microsoft.AspNetCore.Razor.Runtime.dll │ │ ├── Microsoft.AspNetCore.Razor.dll │ │ ├── Microsoft.AspNetCore.ResponseCaching.Abstractions.dll │ │ ├── Microsoft.AspNetCore.ResponseCaching.dll │ │ ├── Microsoft.AspNetCore.ResponseCompression.dll │ │ ├── Microsoft.AspNetCore.Rewrite.dll │ │ ├── Microsoft.AspNetCore.Routing.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Routing.dll │ │ ├── Microsoft.AspNetCore.Server.HttpSys.dll │ │ ├── Microsoft.AspNetCore.Server.IIS.dll │ │ ├── Microsoft.AspNetCore.Server.IISIntegration.dll │ │ ├── Microsoft.AspNetCore.Server.Kestrel.Core.dll │ │ ├── Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll │ │ ├── Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll │ │ ├── Microsoft.AspNetCore.Server.Kestrel.dll │ │ ├── Microsoft.AspNetCore.Session.dll │ │ ├── Microsoft.AspNetCore.SignalR.Common.dll │ │ ├── Microsoft.AspNetCore.SignalR.Core.dll │ │ ├── Microsoft.AspNetCore.SignalR.Protocols.Json.dll │ │ ├── Microsoft.AspNetCore.SignalR.dll │ │ ├── Microsoft.AspNetCore.StaticFiles.dll │ │ ├── Microsoft.AspNetCore.WebSockets.dll │ │ ├── Microsoft.AspNetCore.WebUtilities.dll │ │ ├── Microsoft.AspNetCore.dll │ │ ├── Microsoft.CSharp.dll │ │ ├── Microsoft.Extensions.Caching.Abstractions.dll │ │ ├── Microsoft.Extensions.Caching.Memory.dll │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ ├── Microsoft.Extensions.Configuration.Binder.dll │ │ ├── Microsoft.Extensions.Configuration.CommandLine.dll │ │ ├── Microsoft.Extensions.Configuration.EnvironmentVariables.dll │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll │ │ ├── Microsoft.Extensions.Configuration.Ini.dll │ │ ├── Microsoft.Extensions.Configuration.Json.dll │ │ ├── Microsoft.Extensions.Configuration.KeyPerFile.dll │ │ ├── Microsoft.Extensions.Configuration.UserSecrets.dll │ │ ├── Microsoft.Extensions.Configuration.Xml.dll │ │ ├── Microsoft.Extensions.Configuration.dll │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll │ │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.dll │ │ ├── Microsoft.Extensions.Features.dll │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ │ ├── Microsoft.Extensions.FileProviders.Composite.dll │ │ ├── Microsoft.Extensions.FileProviders.Embedded.dll │ │ ├── Microsoft.Extensions.FileProviders.Physical.dll │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ ├── Microsoft.Extensions.Hosting.Abstractions.dll │ │ ├── Microsoft.Extensions.Hosting.dll │ │ ├── Microsoft.Extensions.Http.dll │ │ ├── Microsoft.Extensions.Identity.Core.dll │ │ ├── Microsoft.Extensions.Identity.Stores.dll │ │ ├── Microsoft.Extensions.Localization.Abstractions.dll │ │ ├── Microsoft.Extensions.Localization.dll │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ ├── Microsoft.Extensions.Logging.Configuration.dll │ │ ├── Microsoft.Extensions.Logging.Console.dll │ │ ├── Microsoft.Extensions.Logging.Debug.dll │ │ ├── Microsoft.Extensions.Logging.EventLog.dll │ │ ├── Microsoft.Extensions.Logging.EventSource.dll │ │ ├── Microsoft.Extensions.Logging.TraceSource.dll │ │ ├── Microsoft.Extensions.Logging.dll │ │ ├── Microsoft.Extensions.ObjectPool.dll │ │ ├── Microsoft.Extensions.Options.ConfigurationExtensions.dll │ │ ├── Microsoft.Extensions.Options.DataAnnotations.dll │ │ ├── Microsoft.Extensions.Options.dll │ │ ├── Microsoft.Extensions.Primitives.dll │ │ ├── Microsoft.Extensions.WebEncoders.dll │ │ ├── Microsoft.JSInterop.dll │ │ ├── Microsoft.Net.Http.Headers.dll │ │ ├── Microsoft.VisualBasic.Core.dll │ │ ├── Microsoft.VisualBasic.dll │ │ ├── Microsoft.Win32.Primitives.dll │ │ ├── Microsoft.Win32.Registry.dll │ │ ├── System.AppContext.dll │ │ ├── System.Buffers.dll │ │ ├── System.Collections.Concurrent.dll │ │ ├── System.Collections.Immutable.dll │ │ ├── System.Collections.NonGeneric.dll │ │ ├── System.Collections.Specialized.dll │ │ ├── System.Collections.dll │ │ ├── System.ComponentModel.Annotations.dll │ │ ├── System.ComponentModel.DataAnnotations.dll │ │ ├── System.ComponentModel.EventBasedAsync.dll │ │ ├── System.ComponentModel.Primitives.dll │ │ ├── System.ComponentModel.TypeConverter.dll │ │ ├── System.ComponentModel.dll │ │ ├── System.Configuration.dll │ │ ├── System.Console.dll │ │ ├── System.Core.dll │ │ ├── System.Data.Common.dll │ │ ├── System.Data.DataSetExtensions.dll │ │ ├── System.Data.dll │ │ ├── System.Diagnostics.Contracts.dll │ │ ├── System.Diagnostics.Debug.dll │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ ├── System.Diagnostics.EventLog.dll │ │ ├── System.Diagnostics.FileVersionInfo.dll │ │ ├── System.Diagnostics.Process.dll │ │ ├── System.Diagnostics.StackTrace.dll │ │ ├── System.Diagnostics.TextWriterTraceListener.dll │ │ ├── System.Diagnostics.Tools.dll │ │ ├── System.Diagnostics.TraceSource.dll │ │ ├── System.Diagnostics.Tracing.dll │ │ ├── System.Drawing.Primitives.dll │ │ ├── System.Drawing.dll │ │ ├── System.Dynamic.Runtime.dll │ │ ├── System.Formats.Asn1.dll │ │ ├── System.Globalization.Calendars.dll │ │ ├── System.Globalization.Extensions.dll │ │ ├── System.Globalization.dll │ │ ├── System.IO.Compression.Brotli.dll │ │ ├── System.IO.Compression.FileSystem.dll │ │ ├── System.IO.Compression.ZipFile.dll │ │ ├── System.IO.Compression.dll │ │ ├── System.IO.FileSystem.AccessControl.dll │ │ ├── System.IO.FileSystem.DriveInfo.dll │ │ ├── System.IO.FileSystem.Primitives.dll │ │ ├── System.IO.FileSystem.Watcher.dll │ │ ├── System.IO.FileSystem.dll │ │ ├── System.IO.IsolatedStorage.dll │ │ ├── System.IO.MemoryMappedFiles.dll │ │ ├── System.IO.Pipelines.dll │ │ ├── System.IO.Pipes.AccessControl.dll │ │ ├── System.IO.Pipes.dll │ │ ├── System.IO.UnmanagedMemoryStream.dll │ │ ├── System.IO.dll │ │ ├── System.Linq.Expressions.dll │ │ ├── System.Linq.Parallel.dll │ │ ├── System.Linq.Queryable.dll │ │ ├── System.Linq.dll │ │ ├── System.Memory.dll │ │ ├── System.Net.Http.Json.dll │ │ ├── System.Net.Http.dll │ │ ├── System.Net.HttpListener.dll │ │ ├── System.Net.Mail.dll │ │ ├── System.Net.NameResolution.dll │ │ ├── System.Net.NetworkInformation.dll │ │ ├── System.Net.Ping.dll │ │ ├── System.Net.Primitives.dll │ │ ├── System.Net.Requests.dll │ │ ├── System.Net.Security.dll │ │ ├── System.Net.ServicePoint.dll │ │ ├── System.Net.Sockets.dll │ │ ├── System.Net.WebClient.dll │ │ ├── System.Net.WebHeaderCollection.dll │ │ ├── System.Net.WebProxy.dll │ │ ├── System.Net.WebSockets.Client.dll │ │ ├── System.Net.WebSockets.dll │ │ ├── System.Net.dll │ │ ├── System.Numerics.Vectors.dll │ │ ├── System.Numerics.dll │ │ ├── System.ObjectModel.dll │ │ ├── System.Reflection.DispatchProxy.dll │ │ ├── System.Reflection.Emit.ILGeneration.dll │ │ ├── System.Reflection.Emit.Lightweight.dll │ │ ├── System.Reflection.Emit.dll │ │ ├── System.Reflection.Extensions.dll │ │ ├── System.Reflection.Metadata.dll │ │ ├── System.Reflection.Primitives.dll │ │ ├── System.Reflection.TypeExtensions.dll │ │ ├── System.Reflection.dll │ │ ├── System.Resources.Reader.dll │ │ ├── System.Resources.ResourceManager.dll │ │ ├── System.Resources.Writer.dll │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ ├── System.Runtime.CompilerServices.VisualC.dll │ │ ├── System.Runtime.Extensions.dll │ │ ├── System.Runtime.Handles.dll │ │ ├── System.Runtime.InteropServices.RuntimeInformation.dll │ │ ├── System.Runtime.InteropServices.dll │ │ ├── System.Runtime.Intrinsics.dll │ │ ├── System.Runtime.Loader.dll │ │ ├── System.Runtime.Numerics.dll │ │ ├── System.Runtime.Serialization.Formatters.dll │ │ ├── System.Runtime.Serialization.Json.dll │ │ ├── System.Runtime.Serialization.Primitives.dll │ │ ├── System.Runtime.Serialization.Xml.dll │ │ ├── System.Runtime.Serialization.dll │ │ ├── System.Runtime.dll │ │ ├── System.Security.AccessControl.dll │ │ ├── System.Security.Claims.dll │ │ ├── System.Security.Cryptography.Algorithms.dll │ │ ├── System.Security.Cryptography.Cng.dll │ │ ├── System.Security.Cryptography.Csp.dll │ │ ├── System.Security.Cryptography.Encoding.dll │ │ ├── System.Security.Cryptography.OpenSsl.dll │ │ ├── System.Security.Cryptography.Primitives.dll │ │ ├── System.Security.Cryptography.X509Certificates.dll │ │ ├── System.Security.Cryptography.Xml.dll │ │ ├── System.Security.Principal.Windows.dll │ │ ├── System.Security.Principal.dll │ │ ├── System.Security.SecureString.dll │ │ ├── System.Security.dll │ │ ├── System.ServiceModel.Web.dll │ │ ├── System.ServiceProcess.dll │ │ ├── System.Text.Encoding.CodePages.dll │ │ ├── System.Text.Encoding.Extensions.dll │ │ ├── System.Text.Encoding.dll │ │ ├── System.Text.Encodings.Web.dll │ │ ├── System.Text.Json.dll │ │ ├── System.Text.RegularExpressions.dll │ │ ├── System.Threading.Channels.dll │ │ ├── System.Threading.Overlapped.dll │ │ ├── System.Threading.Tasks.Dataflow.dll │ │ ├── System.Threading.Tasks.Extensions.dll │ │ ├── System.Threading.Tasks.Parallel.dll │ │ ├── System.Threading.Tasks.dll │ │ ├── System.Threading.Thread.dll │ │ ├── System.Threading.ThreadPool.dll │ │ ├── System.Threading.Timer.dll │ │ ├── System.Threading.dll │ │ ├── System.Transactions.Local.dll │ │ ├── System.Transactions.dll │ │ ├── System.ValueTuple.dll │ │ ├── System.Web.HttpUtility.dll │ │ ├── System.Web.dll │ │ ├── System.Windows.dll │ │ ├── System.Xml.Linq.dll │ │ ├── System.Xml.ReaderWriter.dll │ │ ├── System.Xml.Serialization.dll │ │ ├── System.Xml.XDocument.dll │ │ ├── System.Xml.XPath.XDocument.dll │ │ ├── System.Xml.XPath.dll │ │ ├── System.Xml.XmlDocument.dll │ │ ├── System.Xml.XmlSerializer.dll │ │ ├── System.Xml.dll │ │ ├── System.dll │ │ ├── WindowsBase.dll │ │ ├── mscorlib.dll │ │ └── netstandard.dll │ │ ├── ru │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── tr │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── zh-Hans │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ └── zh-Hant │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll ├── obj │ ├── Debug │ │ ├── net6.0 │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.vb │ │ │ ├── VazorPages1.AssemblyInfo.vb │ │ │ ├── VazorPages1.AssemblyInfoInputs.cache │ │ │ ├── VazorPages1.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── VazorPages1.MvcApplicationPartsAssemblyInfo.cache │ │ │ ├── VazorPages1.MvcApplicationPartsAssemblyInfo.vb │ │ │ ├── VazorPages1.assets.cache │ │ │ ├── VazorPages1.dll │ │ │ ├── VazorPages1.genruntimeconfig.cache │ │ │ ├── VazorPages1.pdb │ │ │ ├── VazorPages1.vbproj.AssemblyReference.cache │ │ │ ├── VazorPages1.vbproj.CopyComplete │ │ │ ├── VazorPages1.vbproj.CoreCompileInputs.cache │ │ │ ├── VazorPages1.vbproj.FileListAbsolute.txt │ │ │ ├── apphost.exe │ │ │ ├── ref │ │ │ │ └── VazorPages1.dll │ │ │ ├── staticwebassets.build.json │ │ │ └── staticwebassets.development.json │ │ ├── netcoreapp3.0 │ │ │ ├── Razor │ │ │ │ └── Pages │ │ │ │ │ ├── Error.cshtml.g.cs │ │ │ │ │ ├── Index.cshtml.g.cs │ │ │ │ │ ├── Privacy.cshtml.g.cs │ │ │ │ │ ├── Shared │ │ │ │ │ ├── _CookieConsentPartial.cshtml.g.cs │ │ │ │ │ ├── _Layout.cshtml.g.cs │ │ │ │ │ └── _ValidationScriptsPartial.cshtml.g.cs │ │ │ │ │ ├── _ViewImports.cshtml.g.cs │ │ │ │ │ └── _ViewStart.cshtml.g.cs │ │ │ ├── RazorPages1.AssemblyInfo.cs │ │ │ ├── RazorPages1.AssemblyInfo.vb │ │ │ ├── RazorPages1.AssemblyInfoInputs.cache │ │ │ ├── RazorPages1.RazorAssemblyInfo.cache │ │ │ ├── RazorPages1.RazorAssemblyInfo.cs │ │ │ ├── RazorPages1.RazorCoreGenerate.cache │ │ │ ├── RazorPages1.RazorTargetAssemblyInfo.cache │ │ │ ├── RazorPages1.RazorTargetAssemblyInfo.cs │ │ │ ├── RazorPages1.TagHelpers.input.cache │ │ │ ├── RazorPages1.TagHelpers.output.cache │ │ │ ├── RazorPages1.Views.dll │ │ │ ├── RazorPages1.Views.pdb │ │ │ ├── RazorPages1.assets.cache │ │ │ ├── RazorPages1.csproj.CopyComplete │ │ │ ├── RazorPages1.csproj.CoreCompileInputs.cache │ │ │ ├── RazorPages1.csproj.FileListAbsolute.txt │ │ │ ├── RazorPages1.csprojAssemblyReference.cache │ │ │ ├── RazorPages1.dll │ │ │ ├── RazorPages1.exe │ │ │ ├── RazorPages1.pdb │ │ │ ├── RazorPages1.vbproj.CopyComplete │ │ │ ├── RazorPages1.vbproj.CoreCompileInputs.cache │ │ │ ├── RazorPages1.vbproj.FileListAbsolute.txt │ │ │ ├── RazorPages1.vbprojAssemblyReference.cache │ │ │ ├── VazorPages1.AssemblyInfo.vb │ │ │ ├── VazorPages1.AssemblyInfoInputs.cache │ │ │ ├── VazorPages1.assets.cache │ │ │ ├── VazorPages1.dll │ │ │ ├── VazorPages1.exe │ │ │ ├── VazorPages1.pdb │ │ │ ├── VazorPages1.vbproj.CopyComplete │ │ │ ├── VazorPages1.vbproj.CoreCompileInputs.cache │ │ │ ├── VazorPages1.vbproj.FileListAbsolute.txt │ │ │ ├── VazorPages1.vbprojAssemblyReference.cache │ │ │ ├── VazorPages2.AssemblyInfo.vb │ │ │ ├── VazorPages2.AssemblyInfoInputs.cache │ │ │ ├── VazorPages2.assets.cache │ │ │ ├── VazorPages2.vbproj.CoreCompileInputs.cache │ │ │ └── VazorPages2.vbprojAssemblyReference.cache │ │ └── netcoreapp3.1 │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.vb │ │ │ ├── VazorPages1.AssemblyInfo.vb │ │ │ ├── VazorPages1.AssemblyInfoInputs.cache │ │ │ ├── VazorPages1.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── VazorPages1.MvcApplicationPartsAssemblyInfo.cache │ │ │ ├── VazorPages1.MvcApplicationPartsAssemblyInfo.vb │ │ │ ├── VazorPages1.assets.cache │ │ │ ├── VazorPages1.dll │ │ │ ├── VazorPages1.exe │ │ │ ├── VazorPages1.genruntimeconfig.cache │ │ │ ├── VazorPages1.pdb │ │ │ ├── VazorPages1.vbproj.AssemblyReference.cache │ │ │ ├── VazorPages1.vbproj.CopyComplete │ │ │ ├── VazorPages1.vbproj.CoreCompileInputs.cache │ │ │ ├── VazorPages1.vbproj.FileListAbsolute.txt │ │ │ ├── VazorPages1.vbprojAssemblyReference.cache │ │ │ ├── apphost.exe │ │ │ └── staticwebassets │ │ │ ├── VazorPages1.StaticWebAssets.Manifest.cache │ │ │ └── VazorPages1.StaticWebAssets.xml │ ├── RazorPages1.csproj.nuget.cache │ ├── RazorPages1.csproj.nuget.dgspec.json │ ├── RazorPages1.csproj.nuget.g.props │ ├── RazorPages1.csproj.nuget.g.targets │ ├── RazorPages1.vbproj.nuget.cache │ ├── RazorPages1.vbproj.nuget.dgspec.json │ ├── RazorPages1.vbproj.nuget.g.props │ ├── RazorPages1.vbproj.nuget.g.targets │ ├── VazorPages1.vbproj.nuget.cache │ ├── VazorPages1.vbproj.nuget.dgspec.json │ ├── VazorPages1.vbproj.nuget.g.props │ ├── VazorPages1.vbproj.nuget.g.targets │ ├── VazorPages2.vbproj.nuget.cache │ ├── VazorPages2.vbproj.nuget.dgspec.json │ ├── VazorPages2.vbproj.nuget.g.props │ ├── VazorPages2.vbproj.nuget.g.targets │ ├── project.assets.json │ ├── project.nuget.cache │ └── staticwebassets.pack.sentinel └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── jquery-validation-unobtrusive │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map └── WebApp1 ├── Controllers └── HomeController.vb ├── Data └── SomeStudents.vb ├── Models ├── ErrorViewModel.vb └── Student.vb ├── My Project └── launchSettings.json ├── Program.vb ├── Views ├── Home │ ├── Index.vazor.vb │ ├── Index.vbxml.vb │ └── Privacy.cshtml ├── Shared │ ├── Error.cshtml │ ├── Layout.vbxml.vb │ ├── _CookieConsentPartial.cshtml │ └── _ValidationScriptsPartial.cshtml ├── _ViewImports.cshtml └── _ViewStart.cshtml ├── WebApp1.vbproj ├── appsettings.Development.json ├── appsettings.json ├── bin └── Debug │ └── net6.0 │ ├── Microsoft.AspNetCore.JsonPatch.dll │ ├── Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll │ ├── Microsoft.AspNetCore.Mvc.Razor.Extensions.dll │ ├── Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll │ ├── Microsoft.AspNetCore.Razor.Language.dll │ ├── Microsoft.CodeAnalysis.CSharp.dll │ ├── Microsoft.CodeAnalysis.Razor.dll │ ├── Microsoft.CodeAnalysis.dll │ ├── Microsoft.Extensions.DependencyModel.dll │ ├── Newtonsoft.Json.Bson.dll │ ├── Newtonsoft.Json.dll │ ├── Vazor.dll │ ├── Vazor.pdb │ ├── WebApp1.deps.json │ ├── WebApp1.dll │ ├── WebApp1.exe │ ├── WebApp1.pdb │ ├── WebApp1.runtimeconfig.json │ ├── WebApp1.staticwebassets.runtime.json │ ├── ZML.dll │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── cs │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── de │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── es │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── fr │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── it │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── ja │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── ko │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── pl │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── pt-BR │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── ref │ └── WebApp1.dll │ ├── refs │ ├── Microsoft.AspNetCore.Antiforgery.dll │ ├── Microsoft.AspNetCore.Authentication.Abstractions.dll │ ├── Microsoft.AspNetCore.Authentication.Cookies.dll │ ├── Microsoft.AspNetCore.Authentication.Core.dll │ ├── Microsoft.AspNetCore.Authentication.OAuth.dll │ ├── Microsoft.AspNetCore.Authentication.dll │ ├── Microsoft.AspNetCore.Authorization.Policy.dll │ ├── Microsoft.AspNetCore.Authorization.dll │ ├── Microsoft.AspNetCore.Components.Authorization.dll │ ├── Microsoft.AspNetCore.Components.Forms.dll │ ├── Microsoft.AspNetCore.Components.Server.dll │ ├── Microsoft.AspNetCore.Components.Web.dll │ ├── Microsoft.AspNetCore.Components.dll │ ├── Microsoft.AspNetCore.Connections.Abstractions.dll │ ├── Microsoft.AspNetCore.CookiePolicy.dll │ ├── Microsoft.AspNetCore.Cors.dll │ ├── Microsoft.AspNetCore.Cryptography.Internal.dll │ ├── Microsoft.AspNetCore.Cryptography.KeyDerivation.dll │ ├── Microsoft.AspNetCore.DataProtection.Abstractions.dll │ ├── Microsoft.AspNetCore.DataProtection.Extensions.dll │ ├── Microsoft.AspNetCore.DataProtection.dll │ ├── Microsoft.AspNetCore.Diagnostics.Abstractions.dll │ ├── Microsoft.AspNetCore.Diagnostics.HealthChecks.dll │ ├── Microsoft.AspNetCore.Diagnostics.dll │ ├── Microsoft.AspNetCore.HostFiltering.dll │ ├── Microsoft.AspNetCore.Hosting.Abstractions.dll │ ├── Microsoft.AspNetCore.Hosting.Server.Abstractions.dll │ ├── Microsoft.AspNetCore.Hosting.dll │ ├── Microsoft.AspNetCore.Html.Abstractions.dll │ ├── Microsoft.AspNetCore.Http.Abstractions.dll │ ├── Microsoft.AspNetCore.Http.Connections.Common.dll │ ├── Microsoft.AspNetCore.Http.Connections.dll │ ├── Microsoft.AspNetCore.Http.Extensions.dll │ ├── Microsoft.AspNetCore.Http.Features.dll │ ├── Microsoft.AspNetCore.Http.Results.dll │ ├── Microsoft.AspNetCore.Http.dll │ ├── Microsoft.AspNetCore.HttpLogging.dll │ ├── Microsoft.AspNetCore.HttpOverrides.dll │ ├── Microsoft.AspNetCore.HttpsPolicy.dll │ ├── Microsoft.AspNetCore.Identity.dll │ ├── Microsoft.AspNetCore.Localization.Routing.dll │ ├── Microsoft.AspNetCore.Localization.dll │ ├── Microsoft.AspNetCore.Metadata.dll │ ├── Microsoft.AspNetCore.Mvc.Abstractions.dll │ ├── Microsoft.AspNetCore.Mvc.ApiExplorer.dll │ ├── Microsoft.AspNetCore.Mvc.Core.dll │ ├── Microsoft.AspNetCore.Mvc.Cors.dll │ ├── Microsoft.AspNetCore.Mvc.DataAnnotations.dll │ ├── Microsoft.AspNetCore.Mvc.Formatters.Json.dll │ ├── Microsoft.AspNetCore.Mvc.Formatters.Xml.dll │ ├── Microsoft.AspNetCore.Mvc.Localization.dll │ ├── Microsoft.AspNetCore.Mvc.Razor.dll │ ├── Microsoft.AspNetCore.Mvc.RazorPages.dll │ ├── Microsoft.AspNetCore.Mvc.TagHelpers.dll │ ├── Microsoft.AspNetCore.Mvc.ViewFeatures.dll │ ├── Microsoft.AspNetCore.Mvc.dll │ ├── Microsoft.AspNetCore.Razor.Runtime.dll │ ├── Microsoft.AspNetCore.Razor.dll │ ├── Microsoft.AspNetCore.ResponseCaching.Abstractions.dll │ ├── Microsoft.AspNetCore.ResponseCaching.dll │ ├── Microsoft.AspNetCore.ResponseCompression.dll │ ├── Microsoft.AspNetCore.Rewrite.dll │ ├── Microsoft.AspNetCore.Routing.Abstractions.dll │ ├── Microsoft.AspNetCore.Routing.dll │ ├── Microsoft.AspNetCore.Server.HttpSys.dll │ ├── Microsoft.AspNetCore.Server.IIS.dll │ ├── Microsoft.AspNetCore.Server.IISIntegration.dll │ ├── Microsoft.AspNetCore.Server.Kestrel.Core.dll │ ├── Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll │ ├── Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll │ ├── Microsoft.AspNetCore.Server.Kestrel.dll │ ├── Microsoft.AspNetCore.Session.dll │ ├── Microsoft.AspNetCore.SignalR.Common.dll │ ├── Microsoft.AspNetCore.SignalR.Core.dll │ ├── Microsoft.AspNetCore.SignalR.Protocols.Json.dll │ ├── Microsoft.AspNetCore.SignalR.dll │ ├── Microsoft.AspNetCore.StaticFiles.dll │ ├── Microsoft.AspNetCore.WebSockets.dll │ ├── Microsoft.AspNetCore.WebUtilities.dll │ ├── Microsoft.AspNetCore.dll │ ├── Microsoft.CSharp.dll │ ├── Microsoft.Extensions.Caching.Abstractions.dll │ ├── Microsoft.Extensions.Caching.Memory.dll │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ ├── Microsoft.Extensions.Configuration.Binder.dll │ ├── Microsoft.Extensions.Configuration.CommandLine.dll │ ├── Microsoft.Extensions.Configuration.EnvironmentVariables.dll │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll │ ├── Microsoft.Extensions.Configuration.Ini.dll │ ├── Microsoft.Extensions.Configuration.Json.dll │ ├── Microsoft.Extensions.Configuration.KeyPerFile.dll │ ├── Microsoft.Extensions.Configuration.UserSecrets.dll │ ├── Microsoft.Extensions.Configuration.Xml.dll │ ├── Microsoft.Extensions.Configuration.dll │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ ├── Microsoft.Extensions.DependencyInjection.dll │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.dll │ ├── Microsoft.Extensions.Features.dll │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ ├── Microsoft.Extensions.FileProviders.Composite.dll │ ├── Microsoft.Extensions.FileProviders.Embedded.dll │ ├── Microsoft.Extensions.FileProviders.Physical.dll │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ ├── Microsoft.Extensions.Hosting.Abstractions.dll │ ├── Microsoft.Extensions.Hosting.dll │ ├── Microsoft.Extensions.Http.dll │ ├── Microsoft.Extensions.Identity.Core.dll │ ├── Microsoft.Extensions.Identity.Stores.dll │ ├── Microsoft.Extensions.Localization.Abstractions.dll │ ├── Microsoft.Extensions.Localization.dll │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ ├── Microsoft.Extensions.Logging.Configuration.dll │ ├── Microsoft.Extensions.Logging.Console.dll │ ├── Microsoft.Extensions.Logging.Debug.dll │ ├── Microsoft.Extensions.Logging.EventLog.dll │ ├── Microsoft.Extensions.Logging.EventSource.dll │ ├── Microsoft.Extensions.Logging.TraceSource.dll │ ├── Microsoft.Extensions.Logging.dll │ ├── Microsoft.Extensions.ObjectPool.dll │ ├── Microsoft.Extensions.Options.ConfigurationExtensions.dll │ ├── Microsoft.Extensions.Options.DataAnnotations.dll │ ├── Microsoft.Extensions.Options.dll │ ├── Microsoft.Extensions.Primitives.dll │ ├── Microsoft.Extensions.WebEncoders.dll │ ├── Microsoft.JSInterop.dll │ ├── Microsoft.Net.Http.Headers.dll │ ├── Microsoft.VisualBasic.Core.dll │ ├── Microsoft.VisualBasic.dll │ ├── Microsoft.Win32.Primitives.dll │ ├── Microsoft.Win32.Registry.dll │ ├── System.AppContext.dll │ ├── System.Buffers.dll │ ├── System.Collections.Concurrent.dll │ ├── System.Collections.Immutable.dll │ ├── System.Collections.NonGeneric.dll │ ├── System.Collections.Specialized.dll │ ├── System.Collections.dll │ ├── System.ComponentModel.Annotations.dll │ ├── System.ComponentModel.DataAnnotations.dll │ ├── System.ComponentModel.EventBasedAsync.dll │ ├── System.ComponentModel.Primitives.dll │ ├── System.ComponentModel.TypeConverter.dll │ ├── System.ComponentModel.dll │ ├── System.Configuration.dll │ ├── System.Console.dll │ ├── System.Core.dll │ ├── System.Data.Common.dll │ ├── System.Data.DataSetExtensions.dll │ ├── System.Data.dll │ ├── System.Diagnostics.Contracts.dll │ ├── System.Diagnostics.Debug.dll │ ├── System.Diagnostics.DiagnosticSource.dll │ ├── System.Diagnostics.EventLog.dll │ ├── System.Diagnostics.FileVersionInfo.dll │ ├── System.Diagnostics.Process.dll │ ├── System.Diagnostics.StackTrace.dll │ ├── System.Diagnostics.TextWriterTraceListener.dll │ ├── System.Diagnostics.Tools.dll │ ├── System.Diagnostics.TraceSource.dll │ ├── System.Diagnostics.Tracing.dll │ ├── System.Drawing.Primitives.dll │ ├── System.Drawing.dll │ ├── System.Dynamic.Runtime.dll │ ├── System.Formats.Asn1.dll │ ├── System.Globalization.Calendars.dll │ ├── System.Globalization.Extensions.dll │ ├── System.Globalization.dll │ ├── System.IO.Compression.Brotli.dll │ ├── System.IO.Compression.FileSystem.dll │ ├── System.IO.Compression.ZipFile.dll │ ├── System.IO.Compression.dll │ ├── System.IO.FileSystem.AccessControl.dll │ ├── System.IO.FileSystem.DriveInfo.dll │ ├── System.IO.FileSystem.Primitives.dll │ ├── System.IO.FileSystem.Watcher.dll │ ├── System.IO.FileSystem.dll │ ├── System.IO.IsolatedStorage.dll │ ├── System.IO.MemoryMappedFiles.dll │ ├── System.IO.Pipelines.dll │ ├── System.IO.Pipes.AccessControl.dll │ ├── System.IO.Pipes.dll │ ├── System.IO.UnmanagedMemoryStream.dll │ ├── System.IO.dll │ ├── System.Linq.Expressions.dll │ ├── System.Linq.Parallel.dll │ ├── System.Linq.Queryable.dll │ ├── System.Linq.dll │ ├── System.Memory.dll │ ├── System.Net.Http.Json.dll │ ├── System.Net.Http.dll │ ├── System.Net.HttpListener.dll │ ├── System.Net.Mail.dll │ ├── System.Net.NameResolution.dll │ ├── System.Net.NetworkInformation.dll │ ├── System.Net.Ping.dll │ ├── System.Net.Primitives.dll │ ├── System.Net.Requests.dll │ ├── System.Net.Security.dll │ ├── System.Net.ServicePoint.dll │ ├── System.Net.Sockets.dll │ ├── System.Net.WebClient.dll │ ├── System.Net.WebHeaderCollection.dll │ ├── System.Net.WebProxy.dll │ ├── System.Net.WebSockets.Client.dll │ ├── System.Net.WebSockets.dll │ ├── System.Net.dll │ ├── System.Numerics.Vectors.dll │ ├── System.Numerics.dll │ ├── System.ObjectModel.dll │ ├── System.Reflection.DispatchProxy.dll │ ├── System.Reflection.Emit.ILGeneration.dll │ ├── System.Reflection.Emit.Lightweight.dll │ ├── System.Reflection.Emit.dll │ ├── System.Reflection.Extensions.dll │ ├── System.Reflection.Metadata.dll │ ├── System.Reflection.Primitives.dll │ ├── System.Reflection.TypeExtensions.dll │ ├── System.Reflection.dll │ ├── System.Resources.Reader.dll │ ├── System.Resources.ResourceManager.dll │ ├── System.Resources.Writer.dll │ ├── System.Runtime.CompilerServices.Unsafe.dll │ ├── System.Runtime.CompilerServices.VisualC.dll │ ├── System.Runtime.Extensions.dll │ ├── System.Runtime.Handles.dll │ ├── System.Runtime.InteropServices.RuntimeInformation.dll │ ├── System.Runtime.InteropServices.dll │ ├── System.Runtime.Intrinsics.dll │ ├── System.Runtime.Loader.dll │ ├── System.Runtime.Numerics.dll │ ├── System.Runtime.Serialization.Formatters.dll │ ├── System.Runtime.Serialization.Json.dll │ ├── System.Runtime.Serialization.Primitives.dll │ ├── System.Runtime.Serialization.Xml.dll │ ├── System.Runtime.Serialization.dll │ ├── System.Runtime.dll │ ├── System.Security.AccessControl.dll │ ├── System.Security.Claims.dll │ ├── System.Security.Cryptography.Algorithms.dll │ ├── System.Security.Cryptography.Cng.dll │ ├── System.Security.Cryptography.Csp.dll │ ├── System.Security.Cryptography.Encoding.dll │ ├── System.Security.Cryptography.OpenSsl.dll │ ├── System.Security.Cryptography.Primitives.dll │ ├── System.Security.Cryptography.X509Certificates.dll │ ├── System.Security.Cryptography.Xml.dll │ ├── System.Security.Principal.Windows.dll │ ├── System.Security.Principal.dll │ ├── System.Security.SecureString.dll │ ├── System.Security.dll │ ├── System.ServiceModel.Web.dll │ ├── System.ServiceProcess.dll │ ├── System.Text.Encoding.CodePages.dll │ ├── System.Text.Encoding.Extensions.dll │ ├── System.Text.Encoding.dll │ ├── System.Text.Encodings.Web.dll │ ├── System.Text.Json.dll │ ├── System.Text.RegularExpressions.dll │ ├── System.Threading.Channels.dll │ ├── System.Threading.Overlapped.dll │ ├── System.Threading.Tasks.Dataflow.dll │ ├── System.Threading.Tasks.Extensions.dll │ ├── System.Threading.Tasks.Parallel.dll │ ├── System.Threading.Tasks.dll │ ├── System.Threading.Thread.dll │ ├── System.Threading.ThreadPool.dll │ ├── System.Threading.Timer.dll │ ├── System.Threading.dll │ ├── System.Transactions.Local.dll │ ├── System.Transactions.dll │ ├── System.ValueTuple.dll │ ├── System.Web.HttpUtility.dll │ ├── System.Web.dll │ ├── System.Windows.dll │ ├── System.Xml.Linq.dll │ ├── System.Xml.ReaderWriter.dll │ ├── System.Xml.Serialization.dll │ ├── System.Xml.XDocument.dll │ ├── System.Xml.XPath.XDocument.dll │ ├── System.Xml.XPath.dll │ ├── System.Xml.XmlDocument.dll │ ├── System.Xml.XmlSerializer.dll │ ├── System.Xml.dll │ ├── System.dll │ ├── WindowsBase.dll │ ├── mscorlib.dll │ └── netstandard.dll │ ├── ru │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── tr │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── zh-Hans │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ └── zh-Hant │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll ├── obj ├── Debug │ ├── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.vb │ │ ├── WebApp1.AssemblyInfo.vb │ │ ├── WebApp1.AssemblyInfoInputs.cache │ │ ├── WebApp1.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── WebApp1.MvcApplicationPartsAssemblyInfo.cache │ │ ├── WebApp1.MvcApplicationPartsAssemblyInfo.vb │ │ ├── WebApp1.assets.cache │ │ ├── WebApp1.dll │ │ ├── WebApp1.genruntimeconfig.cache │ │ ├── WebApp1.pdb │ │ ├── WebApp1.vbproj.AssemblyReference.cache │ │ ├── WebApp1.vbproj.CopyComplete │ │ ├── WebApp1.vbproj.CoreCompileInputs.cache │ │ ├── WebApp1.vbproj.FileListAbsolute.txt │ │ ├── apphost.exe │ │ ├── ref │ │ │ └── WebApp1.dll │ │ ├── staticwebassets.build.json │ │ └── staticwebassets.development.json │ ├── netcoreapp3.0 │ │ ├── WebApp1.AssemblyInfo.vb │ │ ├── WebApp1.AssemblyInfoInputs.cache │ │ ├── WebApp1.MvcApplicationPartsAssemblyInfo.cache │ │ ├── WebApp1.MvcApplicationPartsAssemblyInfo.vb │ │ ├── WebApp1.assets.cache │ │ ├── WebApp1.dll │ │ ├── WebApp1.exe │ │ ├── WebApp1.genruntimeconfig.cache │ │ ├── WebApp1.pdb │ │ ├── WebApp1.vbproj.CopyComplete │ │ ├── WebApp1.vbproj.CoreCompileInputs.cache │ │ ├── WebApp1.vbproj.FileListAbsolute.txt │ │ ├── WebApp1.vbprojAssemblyReference.cache │ │ └── staticwebassets │ │ │ ├── WebApp1.StaticWebAssets.Manifest.cache │ │ │ └── WebApp1.StaticWebAssets.xml │ └── netcoreapp3.1 │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.vb │ │ ├── WebApp1.AssemblyInfo.vb │ │ ├── WebApp1.AssemblyInfoInputs.cache │ │ ├── WebApp1.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── WebApp1.MvcApplicationPartsAssemblyInfo.cache │ │ ├── WebApp1.MvcApplicationPartsAssemblyInfo.vb │ │ ├── WebApp1.assets.cache │ │ ├── WebApp1.dll │ │ ├── WebApp1.exe │ │ ├── WebApp1.genruntimeconfig.cache │ │ ├── WebApp1.pdb │ │ ├── WebApp1.vbproj.AssemblyReference.cache │ │ ├── WebApp1.vbproj.CopyComplete │ │ ├── WebApp1.vbproj.CoreCompileInputs.cache │ │ ├── WebApp1.vbproj.FileListAbsolute.txt │ │ ├── WebApp1.vbprojAssemblyReference.cache │ │ ├── apphost.exe │ │ └── staticwebassets │ │ ├── WebApp1.StaticWebAssets.Manifest.cache │ │ └── WebApp1.StaticWebAssets.xml ├── WebApp1.vbproj.nuget.cache ├── WebApp1.vbproj.nuget.dgspec.json ├── WebApp1.vbproj.nuget.g.props ├── WebApp1.vbproj.nuget.g.targets ├── project.assets.json ├── project.nuget.cache └── staticwebassets.pack.sentinel └── wwwroot ├── css └── site.css ├── favicon.ico ├── js └── site.js └── lib ├── bootstrap ├── LICENSE └── dist │ ├── css │ ├── bootstrap-grid.css │ ├── bootstrap-grid.css.map │ ├── bootstrap-grid.min.css │ ├── bootstrap-grid.min.css.map │ ├── bootstrap-reboot.css │ ├── bootstrap-reboot.css.map │ ├── bootstrap-reboot.min.css │ ├── bootstrap-reboot.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ └── bootstrap.min.css.map │ └── js │ ├── bootstrap.bundle.js │ ├── bootstrap.bundle.js.map │ ├── bootstrap.bundle.min.js │ ├── bootstrap.bundle.min.js.map │ ├── bootstrap.js │ ├── bootstrap.js.map │ ├── bootstrap.min.js │ └── bootstrap.min.js.map ├── jquery-validation-unobtrusive ├── LICENSE.txt ├── jquery.validate.unobtrusive.js └── jquery.validate.unobtrusive.min.js ├── jquery-validation ├── LICENSE.md └── dist │ ├── additional-methods.js │ ├── additional-methods.min.js │ ├── jquery.validate.js │ └── jquery.validate.min.js └── jquery ├── LICENSE.txt └── dist ├── jquery.js ├── jquery.min.js └── jquery.min.map /.vs/Vazor/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/.vs/Vazor/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /.vs/Vazor/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/.vs/Vazor/v16/.suo -------------------------------------------------------------------------------- /Vazor/bin/Release/Vazor.2.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/Vazor/bin/Release/Vazor.2.0.0.nupkg -------------------------------------------------------------------------------- /Vazor/bin/Release/net6.0/Vazor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/Vazor/bin/Release/net6.0/Vazor.dll -------------------------------------------------------------------------------- /Vazor/bin/Release/net6.0/Vazor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/Vazor/bin/Release/net6.0/Vazor.pdb -------------------------------------------------------------------------------- /Vazor/bin/Release/net6.0/ref/Vazor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/Vazor/bin/Release/net6.0/ref/Vazor.dll -------------------------------------------------------------------------------- /Vazor/obj/Debug/net6.0/Vazor.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | d12e109aa59552e49b4ea73e6cb72bc4d7860773 2 | -------------------------------------------------------------------------------- /Vazor/obj/Debug/net6.0/Vazor.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/Vazor/obj/Debug/net6.0/Vazor.assets.cache -------------------------------------------------------------------------------- /Vazor/obj/Debug/net6.0/Vazor.vbproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/Vazor/obj/Debug/net6.0/Vazor.vbproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Vazor/obj/Debug/netcoreapp3.0/Vazor.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | c3bce78a1f670279ad9d748bb8991fb1570588ca 2 | -------------------------------------------------------------------------------- /Vazor/obj/Debug/netcoreapp3.0/Vazor.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/Vazor/obj/Debug/netcoreapp3.0/Vazor.assets.cache -------------------------------------------------------------------------------- /Vazor/obj/Debug/netcoreapp3.0/Vazor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/Vazor/obj/Debug/netcoreapp3.0/Vazor.dll -------------------------------------------------------------------------------- /Vazor/obj/Debug/netcoreapp3.0/Vazor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/Vazor/obj/Debug/netcoreapp3.0/Vazor.pdb -------------------------------------------------------------------------------- /Vazor/obj/Debug/netcoreapp3.0/Vazor.vbproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3316aeffc37557cfa159661bc23a6535ceb04788 2 | -------------------------------------------------------------------------------- /Vazor/obj/Debug/netcoreapp3.0/Vazor.vbprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/Vazor/obj/Debug/netcoreapp3.0/Vazor.vbprojAssemblyReference.cache -------------------------------------------------------------------------------- /Vazor/obj/Debug/netcoreapp3.1/Vazor.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | eb8289ad7f0e87bb7cbb15fb571ec2f42195de81 2 | -------------------------------------------------------------------------------- /Vazor/obj/Debug/netcoreapp3.1/Vazor.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.RootNamespace = Vazor 3 | build_property.ProjectDir = F:\_VS.NET\Vazor 3\Vazor\Vazor\ 4 | -------------------------------------------------------------------------------- /Vazor/obj/Debug/netcoreapp3.1/Vazor.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/Vazor/obj/Debug/netcoreapp3.1/Vazor.assets.cache -------------------------------------------------------------------------------- /Vazor/obj/Debug/netcoreapp3.1/Vazor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/Vazor/obj/Debug/netcoreapp3.1/Vazor.dll -------------------------------------------------------------------------------- /Vazor/obj/Debug/netcoreapp3.1/Vazor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/Vazor/obj/Debug/netcoreapp3.1/Vazor.pdb -------------------------------------------------------------------------------- /Vazor/obj/Debug/netcoreapp3.1/Vazor.vbproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /Vazor/obj/Debug/netcoreapp3.1/Vazor.vbproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 640aee9a3523c7a1427fd1ac108e23e68c07c14e 2 | -------------------------------------------------------------------------------- /Vazor/obj/Release/net6.0/Vazor.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 9a83cf8c1427d49341fd134f37a979eccb8e4835 2 | -------------------------------------------------------------------------------- /Vazor/obj/Release/net6.0/Vazor.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/Vazor/obj/Release/net6.0/Vazor.assets.cache -------------------------------------------------------------------------------- /Vazor/obj/Release/net6.0/Vazor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/Vazor/obj/Release/net6.0/Vazor.dll -------------------------------------------------------------------------------- /Vazor/obj/Release/net6.0/Vazor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/Vazor/obj/Release/net6.0/Vazor.pdb -------------------------------------------------------------------------------- /Vazor/obj/Release/net6.0/Vazor.vbproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | d3fcb034636746bda0528eaf8bfdf1871bfbd023 2 | -------------------------------------------------------------------------------- /Vazor/obj/Release/net6.0/ref/Vazor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/Vazor/obj/Release/net6.0/ref/Vazor.dll -------------------------------------------------------------------------------- /Vazor/obj/Vazor.vbproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "fCcZAfdDY9IndTsr4f4Qf1qGmEqk42ytkr8+7sLiU84HOsYlAN9xyBxNa40TP172LG3bGisi/4LDyyV5TMdBoQ==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /VazorEx/VazorTemplateSetup/ItemTemplates/VazorPage.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorEx/VazorTemplateSetup/ItemTemplates/VazorPage.zip -------------------------------------------------------------------------------- /VazorEx/VazorTemplateSetup/ItemTemplates/VazorView.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorEx/VazorTemplateSetup/ItemTemplates/VazorView.zip -------------------------------------------------------------------------------- /VazorEx/VazorTemplateSetup/ProjectTemplates/VazorMVC.Net6.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorEx/VazorTemplateSetup/ProjectTemplates/VazorMVC.Net6.0.zip -------------------------------------------------------------------------------- /VazorEx/VazorTemplateSetup/ProjectTemplates/VazorPages.Net6.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorEx/VazorTemplateSetup/ProjectTemplates/VazorPages.Net6.0.zip -------------------------------------------------------------------------------- /VazorEx/VazorTemplateSetup/obj/Release/ItemTemplates/VazorPage/View.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @model $safeitemname$Model 3 | 4 |
5 | @Html.Partial(Model.ViewName + ".cshtml") 6 |
-------------------------------------------------------------------------------- /VazorEx/VazorTemplateSetup/obj/Release/ProjectTemplates/VazorMVC.Net6.0/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using $safeprojectname$ 2 | @using $safeprojectname$.Models 3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 4 | -------------------------------------------------------------------------------- /VazorEx/VazorTemplateSetup/obj/Release/ProjectTemplates/VazorMVC.Net6.0/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /VazorEx/VazorTemplateSetup/obj/Release/ProjectTemplates/VazorPages.Net6.0/Pages/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @model IndexModel 3 | 4 |
5 | @Html.Partial(Model.ViewName + ".cshtml") 6 |
-------------------------------------------------------------------------------- /VazorEx/VazorTemplateSetup/obj/Release/ProjectTemplates/VazorPages.Net6.0/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using $safeprojectname$ 2 | @namespace $safeprojectname$.Pages 3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 4 | -------------------------------------------------------------------------------- /VazorEx/VazorTemplateSetup/obj/Release/ProjectTemplates/VazorPages.Net6.0/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /VazorEx/VazorTemplateSetup/obj/Release/VazorTemplateSetup.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorEx/VazorTemplateSetup/obj/Release/VazorTemplateSetup.dll -------------------------------------------------------------------------------- /VazorEx/VazorTemplateSetup/obj/Release/VazorTemplateSetup.latest.pkgdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorEx/VazorTemplateSetup/obj/Release/VazorTemplateSetup.latest.pkgdef -------------------------------------------------------------------------------- /VazorEx/VazorTemplateSetup/obj/Release/VazorTemplateSetup.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorEx/VazorTemplateSetup/obj/Release/VazorTemplateSetup.pdb -------------------------------------------------------------------------------- /VazorEx/VazorTemplateSetup/obj/Release/VazorTemplateSetup.pkgdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorEx/VazorTemplateSetup/obj/Release/VazorTemplateSetup.pkgdef -------------------------------------------------------------------------------- /VazorEx/VazorTemplateSetup/obj/Release/VazorTemplateSetup.vbproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | ef5003ff3fbcdb994a27cbfaf76378fef8b69372 2 | -------------------------------------------------------------------------------- /VazorEx/VazorTemplateSetup/obj/Release/_EmptyResource.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorEx/VazorTemplateSetup/obj/Release/_EmptyResource.resources -------------------------------------------------------------------------------- /VazorEx/VazorTemplateSetup/obj/Release/createTemplateManifests.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorEx/VazorTemplateSetup/obj/Release/createTemplateManifests.cache -------------------------------------------------------------------------------- /VazorEx/VbXmlCompletionProvider/obj/Release/netstandard2.0/VbXmlCompletionProvider.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 6139e7e32befbdf641a7d29f2fe236e7bfdeb58a 2 | -------------------------------------------------------------------------------- /VazorEx/VbXmlCompletionProvider/obj/Release/netstandard2.0/VbXmlCompletionProvider.vbproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | ebb2a03fd18091923fac33e3bf0acabe94197a80 2 | -------------------------------------------------------------------------------- /VazorPages1/.vs/RazorPages1/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/.vs/RazorPages1/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /VazorPages1/.vs/RazorPages1/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/.vs/RazorPages1/v16/.suo -------------------------------------------------------------------------------- /VazorPages1/.vs/RazorPages1/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/.vs/RazorPages1/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /VazorPages1/.vs/RazorPages1/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/.vs/RazorPages1/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /VazorPages1/.vs/VazorPages1/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/.vs/VazorPages1/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /VazorPages1/.vs/VazorPages1/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/.vs/VazorPages1/v16/.suo -------------------------------------------------------------------------------- /VazorPages1/.vs/VazorPages1/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/.vs/VazorPages1/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /VazorPages1/.vs/VazorPages1/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/.vs/VazorPages1/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /VazorPages1/Data/Student.vb: -------------------------------------------------------------------------------- 1 | Public Class Student 2 | Public Id As Integer 3 | Public Name As String 4 | Public Age As Integer 5 | Public Grade As Integer 6 | End Class 7 | -------------------------------------------------------------------------------- /VazorPages1/Pages/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @model IndexModel 3 | 4 |
5 | @Html.Partial(Model.ViewName + ".cshtml") 6 |
-------------------------------------------------------------------------------- /VazorPages1/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @model PrivacyModel 3 | @{ 4 | ViewData["Title"] = "Privacy Policy"; 5 | } 6 |

@ViewData["Title"]

7 | 8 |

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

9 | -------------------------------------------------------------------------------- /VazorPages1/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using VazorPages1 2 | @namespace VazorPages1.Pages 3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 4 | -------------------------------------------------------------------------------- /VazorPages1/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /VazorPages1/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Debug", 5 | "System": "Information", 6 | "Microsoft": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /VazorPages1/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Warning", 5 | "Microsoft.Hosting.Lifetime": "Information" 6 | } 7 | }, 8 | "AllowedHosts": "*" 9 | } 10 | -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/Microsoft.AspNetCore.Razor.Language.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/Microsoft.AspNetCore.Razor.Language.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/Microsoft.CodeAnalysis.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/Microsoft.CodeAnalysis.Razor.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/Microsoft.Extensions.DependencyModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/Microsoft.Extensions.DependencyModel.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/Vazor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/Vazor.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/Vazor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/Vazor.pdb -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/VazorPages1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/VazorPages1.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/VazorPages1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/VazorPages1.exe -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/VazorPages1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/VazorPages1.pdb -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/ZML.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/ZML.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/ref/VazorPages1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/ref/VazorPages1.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Antiforgery.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Antiforgery.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Authentication.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Authentication.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Authorization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Authorization.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Components.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Components.Web.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Components.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Components.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.CookiePolicy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.CookiePolicy.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Cors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Cors.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.DataProtection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.DataProtection.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Diagnostics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Diagnostics.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.HostFiltering.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.HostFiltering.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Hosting.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Http.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Http.Extensions.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Http.Features.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Http.Features.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Http.Results.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Http.Results.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Http.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.HttpLogging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.HttpLogging.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.HttpOverrides.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.HttpOverrides.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.HttpsPolicy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.HttpsPolicy.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Identity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Identity.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Localization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Localization.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Metadata.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.Core.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.Cors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.Cors.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.Razor.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Razor.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Razor.Runtime.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Razor.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.ResponseCaching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.ResponseCaching.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Rewrite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Rewrite.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Routing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Routing.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Server.HttpSys.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Server.HttpSys.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Server.IIS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Server.IIS.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Server.Kestrel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Server.Kestrel.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Session.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Session.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.SignalR.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.SignalR.Common.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.SignalR.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.SignalR.Core.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.SignalR.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.SignalR.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.StaticFiles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.StaticFiles.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.WebSockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.WebSockets.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.WebUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.WebUtilities.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.CSharp.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.Extensions.Caching.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.Extensions.Caching.Memory.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.Extensions.Features.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.Extensions.Features.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.Extensions.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.Extensions.Hosting.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.Extensions.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.Extensions.Http.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.Extensions.Identity.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.Extensions.Identity.Core.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.Extensions.Identity.Stores.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.Extensions.Identity.Stores.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.Extensions.Localization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.Extensions.Localization.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.Extensions.Logging.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.Extensions.Logging.Console.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.Extensions.Logging.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.Extensions.Logging.Debug.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.Extensions.ObjectPool.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.Extensions.ObjectPool.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.Extensions.WebEncoders.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.Extensions.WebEncoders.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.JSInterop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.JSInterop.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.Net.Http.Headers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.Net.Http.Headers.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.VisualBasic.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.VisualBasic.Core.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.VisualBasic.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.Win32.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.Win32.Primitives.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.AppContext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.AppContext.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Buffers.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Collections.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Collections.Concurrent.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Collections.NonGeneric.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Collections.NonGeneric.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Collections.Specialized.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Collections.Specialized.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Collections.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.ComponentModel.Annotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.ComponentModel.Annotations.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.ComponentModel.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.ComponentModel.Primitives.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.ComponentModel.TypeConverter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.ComponentModel.TypeConverter.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.ComponentModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.ComponentModel.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Configuration.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Console.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Core.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Data.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Data.Common.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Data.DataSetExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Data.DataSetExtensions.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Data.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Diagnostics.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Diagnostics.Contracts.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Diagnostics.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Diagnostics.Debug.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Diagnostics.EventLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Diagnostics.EventLog.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Diagnostics.FileVersionInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Diagnostics.FileVersionInfo.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Diagnostics.Process.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Diagnostics.Process.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Diagnostics.StackTrace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Diagnostics.StackTrace.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Diagnostics.Tools.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Diagnostics.Tools.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Diagnostics.TraceSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Diagnostics.TraceSource.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Diagnostics.Tracing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Diagnostics.Tracing.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Drawing.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Drawing.Primitives.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Drawing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Drawing.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Dynamic.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Dynamic.Runtime.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Formats.Asn1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Formats.Asn1.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Globalization.Calendars.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Globalization.Calendars.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Globalization.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Globalization.Extensions.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Globalization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Globalization.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.IO.Compression.Brotli.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.IO.Compression.Brotli.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.IO.Compression.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.IO.Compression.FileSystem.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.IO.Compression.ZipFile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.IO.Compression.ZipFile.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.IO.Compression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.IO.Compression.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.IO.FileSystem.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.IO.FileSystem.AccessControl.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.IO.FileSystem.DriveInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.IO.FileSystem.DriveInfo.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.IO.FileSystem.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.IO.FileSystem.Primitives.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.IO.FileSystem.Watcher.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.IO.FileSystem.Watcher.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.IO.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.IO.FileSystem.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.IO.IsolatedStorage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.IO.IsolatedStorage.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.IO.MemoryMappedFiles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.IO.MemoryMappedFiles.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.IO.Pipelines.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.IO.Pipelines.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.IO.Pipes.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.IO.Pipes.AccessControl.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.IO.Pipes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.IO.Pipes.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.IO.UnmanagedMemoryStream.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.IO.UnmanagedMemoryStream.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.IO.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Linq.Expressions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Linq.Expressions.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Linq.Parallel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Linq.Parallel.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Linq.Queryable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Linq.Queryable.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Linq.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Memory.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Net.Http.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Net.Http.Json.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Net.Http.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Net.HttpListener.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Net.HttpListener.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Net.Mail.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Net.Mail.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Net.NameResolution.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Net.NameResolution.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Net.NetworkInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Net.NetworkInformation.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Net.Ping.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Net.Ping.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Net.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Net.Primitives.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Net.Requests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Net.Requests.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Net.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Net.Security.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Net.ServicePoint.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Net.ServicePoint.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Net.Sockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Net.Sockets.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Net.WebClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Net.WebClient.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Net.WebHeaderCollection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Net.WebHeaderCollection.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Net.WebProxy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Net.WebProxy.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Net.WebSockets.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Net.WebSockets.Client.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Net.WebSockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Net.WebSockets.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Net.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Numerics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Numerics.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.ObjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.ObjectModel.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Reflection.DispatchProxy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Reflection.DispatchProxy.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Reflection.Emit.ILGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Reflection.Emit.ILGeneration.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Reflection.Emit.Lightweight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Reflection.Emit.Lightweight.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Reflection.Emit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Reflection.Emit.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Reflection.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Reflection.Extensions.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Reflection.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Reflection.Primitives.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Reflection.TypeExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Reflection.TypeExtensions.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Reflection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Reflection.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Resources.Reader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Resources.Reader.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Resources.ResourceManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Resources.ResourceManager.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Resources.Writer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Resources.Writer.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Runtime.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Runtime.Extensions.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Runtime.Handles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Runtime.Handles.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Runtime.InteropServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Runtime.InteropServices.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Runtime.Intrinsics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Runtime.Intrinsics.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Runtime.Loader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Runtime.Loader.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Runtime.Numerics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Runtime.Numerics.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Runtime.Serialization.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Runtime.Serialization.Json.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Runtime.Serialization.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Runtime.Serialization.Xml.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Runtime.Serialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Runtime.Serialization.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Runtime.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Security.Claims.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Security.Claims.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Security.Cryptography.Cng.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Security.Cryptography.Cng.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Security.Cryptography.Csp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Security.Cryptography.Csp.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Security.Cryptography.OpenSsl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Security.Cryptography.OpenSsl.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Security.Cryptography.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Security.Cryptography.Xml.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Security.Principal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Security.Principal.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Security.SecureString.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Security.SecureString.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Security.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.ServiceModel.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.ServiceModel.Web.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.ServiceProcess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.ServiceProcess.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Text.Encoding.CodePages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Text.Encoding.CodePages.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Text.Encoding.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Text.Encoding.Extensions.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Text.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Text.Encoding.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Text.Encodings.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Text.Encodings.Web.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Text.Json.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Text.RegularExpressions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Text.RegularExpressions.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Threading.Channels.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Threading.Channels.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Threading.Overlapped.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Threading.Overlapped.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Threading.Tasks.Dataflow.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Threading.Tasks.Dataflow.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Threading.Tasks.Parallel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Threading.Tasks.Parallel.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Threading.Thread.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Threading.Thread.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Threading.ThreadPool.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Threading.ThreadPool.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Threading.Timer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Threading.Timer.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Threading.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Transactions.Local.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Transactions.Local.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Transactions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Transactions.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.ValueTuple.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Web.HttpUtility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Web.HttpUtility.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Web.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Windows.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Xml.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Xml.Linq.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Xml.ReaderWriter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Xml.ReaderWriter.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Xml.Serialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Xml.Serialization.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Xml.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Xml.XDocument.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Xml.XPath.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Xml.XPath.XDocument.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Xml.XPath.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Xml.XPath.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Xml.XmlDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Xml.XmlDocument.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Xml.XmlSerializer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Xml.XmlSerializer.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.Xml.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/System.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/System.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/WindowsBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/WindowsBase.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/mscorlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/mscorlib.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/refs/netstandard.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/refs/netstandard.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /VazorPages1/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/net6.0/VazorPages1.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 500804f989f4a17be1a9d33378eef23376cde029 2 | -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/net6.0/VazorPages1.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/obj/Debug/net6.0/VazorPages1.assets.cache -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/net6.0/VazorPages1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/obj/Debug/net6.0/VazorPages1.dll -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/net6.0/VazorPages1.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | e4dd3def20ebe91c0851a8f08fc1121b8f0ed26d 2 | -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/net6.0/VazorPages1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/obj/Debug/net6.0/VazorPages1.pdb -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/net6.0/VazorPages1.vbproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/obj/Debug/net6.0/VazorPages1.vbproj.AssemblyReference.cache -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/net6.0/VazorPages1.vbproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/obj/Debug/net6.0/VazorPages1.vbproj.CopyComplete -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/net6.0/VazorPages1.vbproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 49c179c7f0a463bf1173ce3e23ccd56df61b661b 2 | -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/net6.0/ref/VazorPages1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/obj/Debug/net6.0/ref/VazorPages1.dll -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.0/RazorPages1.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 9cb2750359fac0e0d45e1edc7c6ba04382d323b5 2 | -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.0/RazorPages1.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | e0f1d1128dc8a51c2fdaf5c8c8d461969caed952 2 | -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.0/RazorPages1.RazorCoreGenerate.cache: -------------------------------------------------------------------------------- 1 | ce605d7d4aef21a6d4c69e7c842d354a95fe5cd9 2 | -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.0/RazorPages1.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 3b45004126000b96b2998451e1e76445c899134b 2 | -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.0/RazorPages1.TagHelpers.input.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/obj/Debug/netcoreapp3.0/RazorPages1.TagHelpers.input.cache -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.0/RazorPages1.Views.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/obj/Debug/netcoreapp3.0/RazorPages1.Views.dll -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.0/RazorPages1.Views.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/obj/Debug/netcoreapp3.0/RazorPages1.Views.pdb -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.0/RazorPages1.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/obj/Debug/netcoreapp3.0/RazorPages1.assets.cache -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.0/RazorPages1.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/obj/Debug/netcoreapp3.0/RazorPages1.csproj.CopyComplete -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.0/RazorPages1.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3e7739ee344adad64657c537496ff107e9f1f415 2 | -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.0/RazorPages1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/obj/Debug/netcoreapp3.0/RazorPages1.dll -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.0/RazorPages1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/obj/Debug/netcoreapp3.0/RazorPages1.exe -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.0/RazorPages1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/obj/Debug/netcoreapp3.0/RazorPages1.pdb -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.0/RazorPages1.vbproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/obj/Debug/netcoreapp3.0/RazorPages1.vbproj.CopyComplete -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.0/RazorPages1.vbproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 90343409bc07210c4e97a3dc652185506c8848e8 2 | -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.0/VazorPages1.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 500804f989f4a17be1a9d33378eef23376cde029 2 | -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.0/VazorPages1.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/obj/Debug/netcoreapp3.0/VazorPages1.assets.cache -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.0/VazorPages1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/obj/Debug/netcoreapp3.0/VazorPages1.dll -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.0/VazorPages1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/obj/Debug/netcoreapp3.0/VazorPages1.exe -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.0/VazorPages1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/obj/Debug/netcoreapp3.0/VazorPages1.pdb -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.0/VazorPages1.vbproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/obj/Debug/netcoreapp3.0/VazorPages1.vbproj.CopyComplete -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.0/VazorPages1.vbproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 927bfb9400bdc4cf8b058fdd831dbb6fe009444e 2 | -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.0/VazorPages2.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 061bd57d84e3286aec1bd43d8e331f64fd8dff41 2 | -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.0/VazorPages2.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/obj/Debug/netcoreapp3.0/VazorPages2.assets.cache -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.0/VazorPages2.vbproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 90343409bc07210c4e97a3dc652185506c8848e8 2 | -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.1/VazorPages1.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 500804f989f4a17be1a9d33378eef23376cde029 2 | -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.1/VazorPages1.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.RootNamespace = VazorPages1 3 | build_property.ProjectDir = F:\_VS.NET\Vazor 3\Vazor\VazorPages1\ 4 | -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.1/VazorPages1.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/obj/Debug/netcoreapp3.1/VazorPages1.assets.cache -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.1/VazorPages1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/obj/Debug/netcoreapp3.1/VazorPages1.dll -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.1/VazorPages1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/obj/Debug/netcoreapp3.1/VazorPages1.exe -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.1/VazorPages1.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.1/VazorPages1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/obj/Debug/netcoreapp3.1/VazorPages1.pdb -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.1/VazorPages1.vbproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/obj/Debug/netcoreapp3.1/VazorPages1.vbproj.CopyComplete -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.1/VazorPages1.vbproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 34872b59cf6549581c9ca235859bb36dea4044e0 2 | -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /VazorPages1/obj/Debug/netcoreapp3.1/staticwebassets/VazorPages1.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /VazorPages1/obj/RazorPages1.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "Ekutiv+8cywO744yZyurZs7AJdVzRQYs7NID3THpbwLiXAk3uAYQMZs3EpnX1Qchpfnqr+3XQxpbf0SOD1j8lA==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /VazorPages1/obj/RazorPages1.vbproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "fCy5LByhn75HyHTd/5lriA2k/aeBdue36TDXv2cwEQf1vfhcliRrUxqa8TtzeJVt85n4saq6m1mWAmwdo1KhZg==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /VazorPages1/obj/VazorPages1.vbproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "hhyk0mtZiaXyIcOrcUwUfEF1m35PhmIJDtyN6fyO1/wcDfs3+OIAfXhcJRmkwtzFdI4SyQ7h6GIuBrNBBkrSQw==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /VazorPages1/obj/VazorPages2.vbproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "pCLQVtTEieVwKWDewQcczMyHp4Sg96a7NpzRFzqPA8M40RwYd7Bhr9LuVHpHm0BMbwS/KA9HdWmF9jU51GZoaQ==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /VazorPages1/obj/staticwebassets.pack.sentinel: -------------------------------------------------------------------------------- 1 | 2.0 2 | -------------------------------------------------------------------------------- /VazorPages1/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/VazorPages1/wwwroot/favicon.ico -------------------------------------------------------------------------------- /WebApp1/Models/Student.vb: -------------------------------------------------------------------------------- 1 | Public Class Student 2 | Public Id As Integer 3 | Public Name As String 4 | Public Age As Integer 5 | Public Grade As Integer 6 | End Class 7 | -------------------------------------------------------------------------------- /WebApp1/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Privacy Policy"; 3 | } 4 |

@ViewData["Title"]

5 | 6 |

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

7 | -------------------------------------------------------------------------------- /WebApp1/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using WebApp1 2 | @using WebApp1.Models 3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 4 | -------------------------------------------------------------------------------- /WebApp1/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /WebApp1/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Debug", 5 | "System": "Information", 6 | "Microsoft": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /WebApp1/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Warning", 5 | "Microsoft.Hosting.Lifetime": "Information" 6 | } 7 | }, 8 | "AllowedHosts": "*" 9 | } 10 | -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/Microsoft.AspNetCore.JsonPatch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/Microsoft.AspNetCore.JsonPatch.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/Microsoft.AspNetCore.Razor.Language.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/Microsoft.AspNetCore.Razor.Language.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/Microsoft.CodeAnalysis.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/Microsoft.CodeAnalysis.Razor.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/Microsoft.Extensions.DependencyModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/Microsoft.Extensions.DependencyModel.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/Newtonsoft.Json.Bson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/Newtonsoft.Json.Bson.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/Vazor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/Vazor.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/Vazor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/Vazor.pdb -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/WebApp1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/WebApp1.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/WebApp1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/WebApp1.exe -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/WebApp1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/WebApp1.pdb -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/ZML.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/ZML.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/ref/WebApp1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/ref/WebApp1.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Antiforgery.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Antiforgery.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Authentication.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Authentication.Core.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Authentication.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Authentication.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Authorization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Authorization.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Components.Forms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Components.Forms.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Components.Server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Components.Server.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Components.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Components.Web.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Components.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Components.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.CookiePolicy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.CookiePolicy.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Cors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Cors.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.DataProtection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.DataProtection.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Diagnostics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Diagnostics.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.HostFiltering.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.HostFiltering.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Hosting.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Html.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Html.Abstractions.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Http.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Http.Abstractions.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Http.Connections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Http.Connections.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Http.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Http.Extensions.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Http.Features.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Http.Features.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Http.Results.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Http.Results.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Http.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.HttpLogging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.HttpLogging.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.HttpOverrides.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.HttpOverrides.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.HttpsPolicy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.HttpsPolicy.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Identity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Identity.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Localization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Localization.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Metadata.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.Core.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.Cors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.Cors.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.Localization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.Localization.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.Razor.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Mvc.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Razor.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Razor.Runtime.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Razor.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.ResponseCaching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.ResponseCaching.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.ResponseCompression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.ResponseCompression.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Rewrite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Rewrite.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Routing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Routing.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Server.HttpSys.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Server.HttpSys.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Server.IIS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Server.IIS.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Server.Kestrel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Server.Kestrel.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Session.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.Session.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.SignalR.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.SignalR.Common.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.SignalR.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.SignalR.Core.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.SignalR.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.SignalR.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.StaticFiles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.StaticFiles.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.WebSockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.WebSockets.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.WebUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.WebUtilities.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.AspNetCore.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.CSharp.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Caching.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Caching.Memory.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Configuration.Ini.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Configuration.Ini.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Configuration.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Configuration.Json.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Configuration.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Configuration.Xml.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Features.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Features.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.FileSystemGlobbing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.FileSystemGlobbing.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Hosting.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Http.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Identity.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Identity.Core.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Identity.Stores.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Identity.Stores.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Localization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Localization.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Logging.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Logging.Console.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Logging.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Logging.Debug.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Logging.EventLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Logging.EventLog.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.ObjectPool.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.ObjectPool.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.WebEncoders.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.Extensions.WebEncoders.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.JSInterop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.JSInterop.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.Net.Http.Headers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.Net.Http.Headers.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.VisualBasic.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.VisualBasic.Core.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.VisualBasic.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.Win32.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.Win32.Primitives.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.AppContext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.AppContext.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Buffers.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Collections.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Collections.Concurrent.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Collections.NonGeneric.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Collections.NonGeneric.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Collections.Specialized.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Collections.Specialized.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Collections.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.ComponentModel.Annotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.ComponentModel.Annotations.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.ComponentModel.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.ComponentModel.DataAnnotations.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.ComponentModel.EventBasedAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.ComponentModel.EventBasedAsync.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.ComponentModel.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.ComponentModel.Primitives.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.ComponentModel.TypeConverter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.ComponentModel.TypeConverter.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.ComponentModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.ComponentModel.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Configuration.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Console.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Core.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Data.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Data.Common.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Data.DataSetExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Data.DataSetExtensions.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Data.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Diagnostics.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Diagnostics.Contracts.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Diagnostics.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Diagnostics.Debug.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Diagnostics.EventLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Diagnostics.EventLog.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Diagnostics.FileVersionInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Diagnostics.FileVersionInfo.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Diagnostics.Process.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Diagnostics.Process.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Diagnostics.StackTrace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Diagnostics.StackTrace.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Diagnostics.Tools.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Diagnostics.Tools.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Diagnostics.TraceSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Diagnostics.TraceSource.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Diagnostics.Tracing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Diagnostics.Tracing.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Drawing.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Drawing.Primitives.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Drawing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Drawing.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Dynamic.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Dynamic.Runtime.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Formats.Asn1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Formats.Asn1.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Globalization.Calendars.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Globalization.Calendars.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Globalization.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Globalization.Extensions.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Globalization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Globalization.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.IO.Compression.Brotli.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.IO.Compression.Brotli.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.IO.Compression.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.IO.Compression.FileSystem.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.IO.Compression.ZipFile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.IO.Compression.ZipFile.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.IO.Compression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.IO.Compression.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.IO.FileSystem.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.IO.FileSystem.AccessControl.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.IO.FileSystem.DriveInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.IO.FileSystem.DriveInfo.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.IO.FileSystem.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.IO.FileSystem.Primitives.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.IO.FileSystem.Watcher.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.IO.FileSystem.Watcher.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.IO.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.IO.FileSystem.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.IO.IsolatedStorage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.IO.IsolatedStorage.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.IO.MemoryMappedFiles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.IO.MemoryMappedFiles.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.IO.Pipelines.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.IO.Pipelines.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.IO.Pipes.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.IO.Pipes.AccessControl.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.IO.Pipes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.IO.Pipes.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.IO.UnmanagedMemoryStream.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.IO.UnmanagedMemoryStream.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.IO.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Linq.Expressions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Linq.Expressions.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Linq.Parallel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Linq.Parallel.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Linq.Queryable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Linq.Queryable.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Linq.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Memory.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Net.Http.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Net.Http.Json.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Net.Http.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Net.HttpListener.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Net.HttpListener.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Net.Mail.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Net.Mail.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Net.NameResolution.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Net.NameResolution.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Net.NetworkInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Net.NetworkInformation.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Net.Ping.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Net.Ping.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Net.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Net.Primitives.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Net.Requests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Net.Requests.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Net.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Net.Security.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Net.ServicePoint.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Net.ServicePoint.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Net.Sockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Net.Sockets.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Net.WebClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Net.WebClient.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Net.WebHeaderCollection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Net.WebHeaderCollection.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Net.WebProxy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Net.WebProxy.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Net.WebSockets.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Net.WebSockets.Client.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Net.WebSockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Net.WebSockets.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Net.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Numerics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Numerics.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.ObjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.ObjectModel.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Reflection.DispatchProxy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Reflection.DispatchProxy.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Reflection.Emit.ILGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Reflection.Emit.ILGeneration.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Reflection.Emit.Lightweight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Reflection.Emit.Lightweight.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Reflection.Emit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Reflection.Emit.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Reflection.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Reflection.Extensions.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Reflection.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Reflection.Primitives.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Reflection.TypeExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Reflection.TypeExtensions.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Reflection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Reflection.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Resources.Reader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Resources.Reader.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Resources.ResourceManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Resources.ResourceManager.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Resources.Writer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Resources.Writer.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Runtime.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Runtime.Extensions.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Runtime.Handles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Runtime.Handles.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Runtime.InteropServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Runtime.InteropServices.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Runtime.Intrinsics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Runtime.Intrinsics.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Runtime.Loader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Runtime.Loader.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Runtime.Numerics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Runtime.Numerics.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Runtime.Serialization.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Runtime.Serialization.Json.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Runtime.Serialization.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Runtime.Serialization.Xml.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Runtime.Serialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Runtime.Serialization.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Runtime.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Security.Claims.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Security.Claims.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Security.Cryptography.Cng.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Security.Cryptography.Cng.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Security.Cryptography.Csp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Security.Cryptography.Csp.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Security.Cryptography.OpenSsl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Security.Cryptography.OpenSsl.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Security.Cryptography.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Security.Cryptography.Xml.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Security.Principal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Security.Principal.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Security.SecureString.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Security.SecureString.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Security.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.ServiceModel.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.ServiceModel.Web.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.ServiceProcess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.ServiceProcess.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Text.Encoding.CodePages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Text.Encoding.CodePages.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Text.Encoding.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Text.Encoding.Extensions.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Text.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Text.Encoding.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Text.Encodings.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Text.Encodings.Web.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Text.Json.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Text.RegularExpressions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Text.RegularExpressions.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Threading.Channels.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Threading.Channels.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Threading.Overlapped.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Threading.Overlapped.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Threading.Tasks.Dataflow.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Threading.Tasks.Dataflow.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Threading.Tasks.Parallel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Threading.Tasks.Parallel.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Threading.Thread.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Threading.Thread.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Threading.ThreadPool.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Threading.ThreadPool.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Threading.Timer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Threading.Timer.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Threading.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Transactions.Local.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Transactions.Local.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Transactions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Transactions.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.ValueTuple.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Web.HttpUtility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Web.HttpUtility.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Web.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Windows.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Xml.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Xml.Linq.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Xml.ReaderWriter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Xml.ReaderWriter.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Xml.Serialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Xml.Serialization.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Xml.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Xml.XDocument.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Xml.XPath.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Xml.XPath.XDocument.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Xml.XPath.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Xml.XPath.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Xml.XmlDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Xml.XmlDocument.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Xml.XmlSerializer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Xml.XmlSerializer.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.Xml.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/System.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/System.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/WindowsBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/WindowsBase.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/mscorlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/mscorlib.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/refs/netstandard.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/refs/netstandard.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /WebApp1/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /WebApp1/obj/Debug/net6.0/WebApp1.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 64fdb7dbd7963f16809119bfbaa15a1afd66caf3 2 | -------------------------------------------------------------------------------- /WebApp1/obj/Debug/net6.0/WebApp1.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/obj/Debug/net6.0/WebApp1.MvcApplicationPartsAssemblyInfo.cache -------------------------------------------------------------------------------- /WebApp1/obj/Debug/net6.0/WebApp1.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/obj/Debug/net6.0/WebApp1.assets.cache -------------------------------------------------------------------------------- /WebApp1/obj/Debug/net6.0/WebApp1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/obj/Debug/net6.0/WebApp1.dll -------------------------------------------------------------------------------- /WebApp1/obj/Debug/net6.0/WebApp1.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | a1cd99c185b594226c774deec7a5fbee9e662faa 2 | -------------------------------------------------------------------------------- /WebApp1/obj/Debug/net6.0/WebApp1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/obj/Debug/net6.0/WebApp1.pdb -------------------------------------------------------------------------------- /WebApp1/obj/Debug/net6.0/WebApp1.vbproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/obj/Debug/net6.0/WebApp1.vbproj.AssemblyReference.cache -------------------------------------------------------------------------------- /WebApp1/obj/Debug/net6.0/WebApp1.vbproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/obj/Debug/net6.0/WebApp1.vbproj.CopyComplete -------------------------------------------------------------------------------- /WebApp1/obj/Debug/net6.0/WebApp1.vbproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 2f45e773f7272c44f61ad3c9be18520c6a37690c 2 | -------------------------------------------------------------------------------- /WebApp1/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /WebApp1/obj/Debug/net6.0/ref/WebApp1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/obj/Debug/net6.0/ref/WebApp1.dll -------------------------------------------------------------------------------- /WebApp1/obj/Debug/netcoreapp3.0/WebApp1.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 64fdb7dbd7963f16809119bfbaa15a1afd66caf3 2 | -------------------------------------------------------------------------------- /WebApp1/obj/Debug/netcoreapp3.0/WebApp1.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/obj/Debug/netcoreapp3.0/WebApp1.assets.cache -------------------------------------------------------------------------------- /WebApp1/obj/Debug/netcoreapp3.0/WebApp1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/obj/Debug/netcoreapp3.0/WebApp1.dll -------------------------------------------------------------------------------- /WebApp1/obj/Debug/netcoreapp3.0/WebApp1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/obj/Debug/netcoreapp3.0/WebApp1.exe -------------------------------------------------------------------------------- /WebApp1/obj/Debug/netcoreapp3.0/WebApp1.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 328f4b4fb17a823c610727a3f51bc5ac00ef805d 2 | -------------------------------------------------------------------------------- /WebApp1/obj/Debug/netcoreapp3.0/WebApp1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/obj/Debug/netcoreapp3.0/WebApp1.pdb -------------------------------------------------------------------------------- /WebApp1/obj/Debug/netcoreapp3.0/WebApp1.vbproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/obj/Debug/netcoreapp3.0/WebApp1.vbproj.CopyComplete -------------------------------------------------------------------------------- /WebApp1/obj/Debug/netcoreapp3.0/WebApp1.vbproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 295d0ffdcd51d79b2a36bb2b322a235593f972e9 2 | -------------------------------------------------------------------------------- /WebApp1/obj/Debug/netcoreapp3.0/WebApp1.vbprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/obj/Debug/netcoreapp3.0/WebApp1.vbprojAssemblyReference.cache -------------------------------------------------------------------------------- /WebApp1/obj/Debug/netcoreapp3.0/staticwebassets/WebApp1.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /WebApp1/obj/Debug/netcoreapp3.1/WebApp1.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 64fdb7dbd7963f16809119bfbaa15a1afd66caf3 2 | -------------------------------------------------------------------------------- /WebApp1/obj/Debug/netcoreapp3.1/WebApp1.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.RootNamespace = WebApp1 3 | build_property.ProjectDir = F:\_VS.NET\Vazor 3\Vazor\WebApp1\ 4 | -------------------------------------------------------------------------------- /WebApp1/obj/Debug/netcoreapp3.1/WebApp1.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/obj/Debug/netcoreapp3.1/WebApp1.assets.cache -------------------------------------------------------------------------------- /WebApp1/obj/Debug/netcoreapp3.1/WebApp1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/obj/Debug/netcoreapp3.1/WebApp1.dll -------------------------------------------------------------------------------- /WebApp1/obj/Debug/netcoreapp3.1/WebApp1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/obj/Debug/netcoreapp3.1/WebApp1.exe -------------------------------------------------------------------------------- /WebApp1/obj/Debug/netcoreapp3.1/WebApp1.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /WebApp1/obj/Debug/netcoreapp3.1/WebApp1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/obj/Debug/netcoreapp3.1/WebApp1.pdb -------------------------------------------------------------------------------- /WebApp1/obj/Debug/netcoreapp3.1/WebApp1.vbproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/obj/Debug/netcoreapp3.1/WebApp1.vbproj.AssemblyReference.cache -------------------------------------------------------------------------------- /WebApp1/obj/Debug/netcoreapp3.1/WebApp1.vbproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/obj/Debug/netcoreapp3.1/WebApp1.vbproj.CopyComplete -------------------------------------------------------------------------------- /WebApp1/obj/Debug/netcoreapp3.1/WebApp1.vbproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | abe242a9a00fe3a4d2e5c4f17862fccef4980822 2 | -------------------------------------------------------------------------------- /WebApp1/obj/Debug/netcoreapp3.1/WebApp1.vbprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/obj/Debug/netcoreapp3.1/WebApp1.vbprojAssemblyReference.cache -------------------------------------------------------------------------------- /WebApp1/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /WebApp1/obj/Debug/netcoreapp3.1/staticwebassets/WebApp1.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /WebApp1/obj/WebApp1.vbproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "4ADB6SL7JIaemP7k/EnXDNTEuqZgBY0KULHqng9UENZk+0K2Hk5UttHM/rQgyI49+rSo08Jw5o/OyTExFAisDg==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /WebApp1/obj/staticwebassets.pack.sentinel: -------------------------------------------------------------------------------- 1 | 2.0 2 | 2.0 3 | -------------------------------------------------------------------------------- /WebApp1/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBAndCs/Vazor/007a314981752f9ab577c04d5ff15b7dbe505bf5/WebApp1/wwwroot/favicon.ico --------------------------------------------------------------------------------