├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── azure-static-web-apps-ashy-grass-03f591e10.yml │ └── azure-static-web-apps-victorious-beach-0ab88b51e.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DEPLOY.md ├── LICENSE ├── PRIVACY.md ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── architecture.png ├── assets ├── Intelligent Document Processing Customer Deck.pdf ├── Intelligent Document Processing Overview.pdf └── readme.md ├── deploy ├── apps │ ├── msrpaweb.zip │ └── msrpawebapi.zip ├── custvisiontrain │ ├── 10982020 │ │ └── Page1 │ │ │ ├── 2020_1098_1_001.jpg │ │ │ ├── 2020_1098_2_001.jpg │ │ │ ├── 2020_1098_3_001.jpg │ │ │ ├── 2020_1098_4_001.jpg │ │ │ └── 2020_1098_5_001.jpg │ ├── contosoinvoice │ │ └── Page1 │ │ │ ├── Invoice_1_001.jpg │ │ │ ├── Invoice_2_001.jpg │ │ │ ├── Invoice_3_001.jpg │ │ │ ├── Invoice_4_001.jpg │ │ │ └── Invoice_5_001.jpg │ ├── custinvoice │ │ └── Page1 │ │ │ ├── form01.png │ │ │ ├── form02.png │ │ │ ├── form03.png │ │ │ ├── form04.png │ │ │ └── form05.png │ ├── loanagreement │ │ └── Page1 │ │ │ ├── l1-page1_001.jpg │ │ │ ├── l2-page1_001.jpg │ │ │ ├── l3-page1_001.jpg │ │ │ ├── l4-page1_001.jpg │ │ │ └── l5-page1_001.jpg │ └── w22018 │ │ └── Page1 │ │ ├── 2018_W2_1.jpg │ │ ├── 2018_W2_2.jpg │ │ ├── 2018_W2_3.jpg │ │ ├── 2018_W2_4.jpg │ │ └── 2018_W2_5.jpg ├── e2etest │ ├── 10982020 │ │ ├── 2020_1098_1.pdf │ │ ├── 2020_1098_2.pdf │ │ ├── 2020_1098_3.pdf │ │ ├── 2020_1098_4.pdf │ │ └── 2020_1098_5.pdf │ ├── contosoinvoice │ │ ├── contosoinvoice_1.pdf │ │ ├── contosoinvoice_2.pdf │ │ ├── contosoinvoice_3.pdf │ │ ├── contosoinvoice_4.pdf │ │ └── contosoinvoice_5.pdf │ ├── custinvoice │ │ ├── custinvoice_1.pdf │ │ ├── custinvoice_2.pdf │ │ ├── custinvoice_3.pdf │ │ ├── custinvoice_4.pdf │ │ └── custinvoice_5.pdf │ ├── loanagreement │ │ ├── loan-agreement-1.pdf │ │ ├── loan-agreement-2.pdf │ │ ├── loan-agreement-3.pdf │ │ ├── loan-agreement-4.pdf │ │ └── loan-agreement-5.pdf │ └── w22018 │ │ ├── w2_2018_1.pdf │ │ ├── w2_2018_2.pdf │ │ ├── w2_2018_3.pdf │ │ ├── w2_2018_4.pdf │ │ └── w2_2018_5.pdf ├── formstrain │ ├── 10982020 │ │ └── Page1 │ │ │ ├── 2020_1098_1.pdf │ │ │ ├── 2020_1098_2.pdf │ │ │ ├── 2020_1098_3.pdf │ │ │ ├── 2020_1098_4.pdf │ │ │ └── 2020_1098_5.pdf │ ├── contosoinvoice │ │ └── Page1 │ │ │ ├── contosoinvoice_1.pdf │ │ │ ├── contosoinvoice_2.pdf │ │ │ ├── contosoinvoice_3.pdf │ │ │ ├── contosoinvoice_4.pdf │ │ │ └── contosoinvoice_5.pdf │ ├── custinvoice │ │ └── Page1 │ │ │ ├── form01.png │ │ │ ├── form02.png │ │ │ ├── form03.png │ │ │ ├── form04.png │ │ │ └── form05.png │ ├── insurance │ │ └── Page1 │ │ │ ├── Insurance Form 01.pdf │ │ │ ├── Insurance Form 02.pdf │ │ │ ├── Insurance Form 03.pdf │ │ │ ├── Insurance Form 04.pdf │ │ │ ├── Insurance Form 05.pdf │ │ │ ├── Insurance Form 06.pdf │ │ │ ├── Insurance Form 07.pdf │ │ │ ├── Insurance Form 08.pdf │ │ │ └── Insurance Form 09.pdf │ └── w22018 │ │ └── Page1 │ │ ├── w2_2018_1.pdf │ │ ├── w2_2018_2.pdf │ │ ├── w2_2018_3.pdf │ │ ├── w2_2018_4.pdf │ │ └── w2_2018_5.pdf ├── functions │ ├── mrrpafrskill.zip │ ├── msrpabo.zip │ ├── msrpacdbskill.zip │ ├── msrpaluisskill.zip │ └── msrpapdf.zip ├── luistrain │ └── loanagreement │ │ └── loanagreement.json ├── modeltable │ └── modelinformation.typed.csv ├── newcustvisiontrain │ └── adpstub │ │ └── Page1 │ │ ├── ADP Stub 1_001.jpg │ │ ├── ADP Stub 2_001.jpg │ │ ├── ADP Stub 3_001.jpg │ │ ├── ADP Stub 4_001.jpg │ │ └── ADP Stub 5_001.jpg ├── newe2etest │ └── adpstub │ │ ├── ADP Stub 1.pdf │ │ ├── ADP Stub 2.pdf │ │ ├── ADP Stub 3.pdf │ │ ├── ADP Stub 4.pdf │ │ └── ADP Stub 5.pdf ├── newformstrain │ └── adpstub │ │ └── Page1 │ │ ├── ADP Stub 1.pdf │ │ ├── ADP Stub 2.pdf │ │ ├── ADP Stub 3.pdf │ │ ├── ADP Stub 4.pdf │ │ └── ADP Stub 5.pdf ├── notebooks │ └── Form Recognizer.html ├── scripts │ ├── deploy.bat │ ├── deploy.ps1 │ ├── deployNewModel.ps1 │ └── newModel.bat └── templates │ ├── azureblob-parameters.json │ ├── azureblob-template.json │ ├── azureeventgrid-parameters.json │ ├── azureeventgrid-template.json │ ├── msrpaprocessEmail-parameters.json │ ├── msrpaprocessEmail-template.json │ ├── msrpaprocessPdf-parameters.json │ ├── msrpaprocessPdf-template.json │ ├── msrpaprocesspdfeg-parameters.json │ ├── msrpaprocesspdfeg-template.json │ ├── office365-parameters.json │ └── office365-template.json ├── images ├── MSUS Solution Accelerator Banner Two_981.png ├── README.md ├── architecture.png ├── authorize.png ├── authorize1.png ├── customdata.png ├── customdatapage.png ├── eventgrid.png └── signin.png ├── misc ├── deploytest │ ├── 10982020 │ │ └── 2020_1098_1 │ │ │ ├── 2020_1098_1.pdf │ │ │ └── 2020_1098_1_001.jpg │ ├── contosoinvoice │ │ └── Invoice_1 │ │ │ ├── Invoice_1.pdf │ │ │ └── Invoice_1_001.jpg │ └── w22018 │ │ └── 2018_W2_1 │ │ ├── 2018_W2_1.pdf │ │ └── 2018_W2_1_001.jpg ├── formstest │ ├── 10982020 │ │ └── 1098_1 │ │ │ ├── 2020_1098_1.pdf │ │ │ └── 2020_1098_1_001.jpg │ ├── 2018_W2_1.pdf │ ├── 2020_1098_1.pdf │ ├── 2020_1098_2.pdf │ ├── 2020_1098_3.pdf │ ├── 2020_1098_4.pdf │ ├── 2020_1098_5.pdf │ ├── Invoice_1.pdf │ ├── Invoice_2.pdf │ ├── Invoice_3.pdf │ ├── Invoice_4.pdf │ ├── Invoice_5.pdf │ ├── contosoinvoice │ │ └── Invoice_1 │ │ │ ├── Invoice_1.pdf │ │ │ └── Invoice_1_001.jpg │ ├── custinvoice │ │ ├── test_form.pdf │ │ ├── test_form_001.jpg │ │ └── test_form_001.png │ └── w22018 │ │ └── w22018_1 │ │ ├── 2018_W2_1.pdf │ │ └── 2018_W2_1_001.jpg ├── loan-agreement │ ├── Page1 │ │ ├── l1-page1.pdf │ │ ├── l1-page1_001.jpg │ │ ├── l2-page1.pdf │ │ ├── l2-page1_001.jpg │ │ ├── l3-page1.pdf │ │ ├── l3-page1_001.jpg │ │ ├── l4-page1.pdf │ │ ├── l4-page1_001.jpg │ │ ├── l5-page1.pdf │ │ └── l5-page1_001.jpg │ ├── Page3 │ │ ├── l1-page3.pdf │ │ ├── l2-page3.pdf │ │ ├── l3-page3.pdf │ │ ├── l4-page3.pdf │ │ └── l5-page3.pdf │ ├── loan-agreement-1.pdf │ ├── loan-agreement-2.pdf │ ├── loan-agreement-3.pdf │ ├── loan-agreement-4.pdf │ ├── loan-agreement-5.pdf │ └── loan-agreement-empty.pdf └── w22014 │ └── Page1 │ ├── 2014_W2_1.jpg │ ├── 2014_W2_2.png │ ├── 2014_W2_3.jpg │ ├── 2014_W2_4.jpg │ └── 2014_W2_5.png ├── mrrpafrskill ├── .gitignore ├── FormEntity.cs ├── FormRecognizer.cs ├── ModelEntity.cs ├── host.json └── mrrpafrskill.csproj ├── mrrpafrv2skill ├── FormEntity.cs ├── FormRecognizer.cs ├── ModelEntity.cs ├── Properties │ └── PublishProfiles │ │ └── formsmvpfrv2af - Web Deploy.pubxml.user ├── host.json ├── local.settings.json ├── mrrpafrv2skill.csproj.user ├── msrpafrv2skill.csproj └── obj │ ├── Debug │ └── netcoreapp2.1 │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── msrpafrv2skill.AssemblyInfo.cs │ │ ├── msrpafrv2skill.AssemblyInfoInputs.cache │ │ ├── msrpafrv2skill.assets.cache │ │ ├── msrpafrv2skill.csproj.CoreCompileInputs.cache │ │ └── msrpafrv2skill.csprojAssemblyReference.cache │ ├── msrpafrv2skill.csproj.nuget.cache │ ├── msrpafrv2skill.csproj.nuget.g.props │ ├── msrpafrv2skill.csproj.nuget.g.targets │ └── project.assets.json ├── msrpa.sln ├── msrpaazure ├── AppInsights │ └── AppInsightsConfig.cs ├── Search │ ├── DocumentResult.cs │ ├── FDGraphEdge.cs │ ├── FacetGraphGenerator.cs │ ├── SearchClient.cs │ ├── SearchConfig.cs │ ├── SearchFacet.cs │ ├── SearchModel.cs │ └── SearchSchema.cs ├── Storage │ └── Blobs │ │ ├── BlobStorageClient.cs │ │ ├── BlobStorageConfig.cs │ │ └── BlobStorageDirectory.cs ├── msrpaazure.csproj └── obj │ ├── Debug │ └── netcoreapp2.2 │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── msrpaazure.AssemblyInfo.cs │ │ ├── msrpaazure.AssemblyInfoInputs.cache │ │ ├── msrpaazure.assets.cache │ │ ├── msrpaazure.csproj.CoreCompileInputs.cache │ │ └── msrpaazure.csprojAssemblyReference.cache │ ├── msrpaazure.csproj.nuget.cache │ ├── msrpaazure.csproj.nuget.g.props │ ├── msrpaazure.csproj.nuget.g.targets │ └── project.assets.json ├── msrpabo ├── .gitignore ├── BlobHelper.cs ├── BlobOperations.cs ├── StorageHelper.cs ├── host.json └── msrpabo.csproj ├── msrpacdbskill ├── .gitignore ├── DataProcessor.cs ├── FormDoc.cs ├── FormEntity.cs ├── host.json └── msrpacdbskill.csproj ├── msrpaluiskill ├── .gitignore ├── FormEntity.cs ├── LuisEntities.cs ├── ModelEntity.cs ├── Properties │ └── PublishProfiles │ │ └── FolderProfile.pubxml ├── host.json └── msrpaluiskill.csproj ├── msrpaolay ├── FormRecognizerResponse.cs ├── OverlayHelper.cs ├── Program.cs ├── StorageHelper.cs ├── bin │ └── Debug │ │ └── netcoreapp2.2 │ │ ├── Microsoft.WindowsAzure.Storage.dll │ │ ├── Microsoft.WindowsAzure.Storage.pdb │ │ ├── msrpaolay.deps.json │ │ ├── msrpaolay.dll │ │ ├── msrpaolay.pdb │ │ ├── msrpaolay.runtimeconfig.dev.json │ │ ├── msrpaolay.runtimeconfig.json │ │ └── output.pdf ├── msrpaolay.csproj └── obj │ ├── Debug │ └── netcoreapp2.2 │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── msrpaolay.AssemblyInfo.cs │ │ ├── msrpaolay.AssemblyInfoInputs.cache │ │ ├── msrpaolay.assets.cache │ │ ├── msrpaolay.csproj.CopyComplete │ │ ├── msrpaolay.csproj.CoreCompileInputs.cache │ │ ├── msrpaolay.csproj.FileListAbsolute.txt │ │ ├── msrpaolay.csprojAssemblyReference.cache │ │ ├── msrpaolay.dll │ │ └── msrpaolay.pdb │ ├── msrpaolay.csproj.nuget.cache │ ├── msrpaolay.csproj.nuget.g.props │ ├── msrpaolay.csproj.nuget.g.targets │ └── project.assets.json ├── msrpaolayaf ├── FormRecognizerResponse.cs ├── OverlayHelper.cs ├── PdfOverlay.cs ├── StorageHelper.cs ├── bin │ └── Debug │ │ └── netcoreapp2.1 │ │ ├── PdfOverlay │ │ └── function.json │ │ ├── bin │ │ ├── Magick.NET-Q16-AnyCPU.dll │ │ ├── Microsoft.AspNetCore.Authentication.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Authentication.Core.dll │ │ ├── Microsoft.AspNetCore.Authorization.Policy.dll │ │ ├── Microsoft.AspNetCore.Authorization.dll │ │ ├── Microsoft.AspNetCore.Hosting.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Hosting.Server.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Http.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Http.Extensions.dll │ │ ├── Microsoft.AspNetCore.Http.Features.dll │ │ ├── Microsoft.AspNetCore.Http.dll │ │ ├── Microsoft.AspNetCore.JsonPatch.dll │ │ ├── Microsoft.AspNetCore.Mvc.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Mvc.Core.dll │ │ ├── Microsoft.AspNetCore.Mvc.Formatters.Json.dll │ │ ├── Microsoft.AspNetCore.Mvc.WebApiCompatShim.dll │ │ ├── Microsoft.AspNetCore.ResponseCaching.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Routing.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Routing.dll │ │ ├── Microsoft.AspNetCore.WebUtilities.dll │ │ ├── Microsoft.Azure.WebJobs.Extensions.Http.dll │ │ ├── Microsoft.Azure.WebJobs.Extensions.dll │ │ ├── Microsoft.Azure.WebJobs.Host.Storage.dll │ │ ├── Microsoft.Azure.WebJobs.Host.dll │ │ ├── Microsoft.Azure.WebJobs.dll │ │ ├── Microsoft.Build.Framework.dll │ │ ├── Microsoft.Build.Utilities.Core.dll │ │ ├── Microsoft.DotNet.PlatformAbstractions.dll │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ ├── Microsoft.Extensions.Configuration.Binder.dll │ │ ├── Microsoft.Extensions.Configuration.EnvironmentVariables.dll │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll │ │ ├── Microsoft.Extensions.Configuration.Json.dll │ │ ├── Microsoft.Extensions.Configuration.dll │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ ├── Microsoft.Extensions.DependencyModel.dll │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ │ ├── Microsoft.Extensions.FileProviders.Physical.dll │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ ├── Microsoft.Extensions.Hosting.Abstractions.dll │ │ ├── Microsoft.Extensions.Hosting.dll │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ ├── Microsoft.Extensions.Logging.Configuration.dll │ │ ├── Microsoft.Extensions.Logging.dll │ │ ├── Microsoft.Extensions.ObjectPool.dll │ │ ├── Microsoft.Extensions.Options.ConfigurationExtensions.dll │ │ ├── Microsoft.Extensions.Options.dll │ │ ├── Microsoft.Extensions.Primitives.dll │ │ ├── Microsoft.Net.Http.Headers.dll │ │ ├── Microsoft.WindowsAzure.Storage.dll │ │ ├── NCrontab.Signed.dll │ │ ├── Newtonsoft.Json.Bson.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── System.Net.Http.Formatting.dll │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ ├── System.Text.Encodings.Web.dll │ │ ├── extensions.json │ │ ├── msrpaolayaf.dll │ │ ├── msrpaolayaf.pdb │ │ └── runtimes │ │ │ ├── linux-x64 │ │ │ └── native │ │ │ │ └── Magick.Native-Q16-x64.dll.so │ │ │ ├── osx-x64 │ │ │ └── native │ │ │ │ └── Magick.Native-Q16-x64.dll.dylib │ │ │ ├── unix │ │ │ └── lib │ │ │ │ └── netstandard1.3 │ │ │ │ └── System.Text.Encoding.CodePages.dll │ │ │ ├── win-x64 │ │ │ └── native │ │ │ │ └── Magick.Native-Q16-x64.dll │ │ │ ├── win-x86 │ │ │ └── native │ │ │ │ └── Magick.Native-Q16-x86.dll │ │ │ └── win │ │ │ └── lib │ │ │ └── netstandard1.3 │ │ │ └── System.Text.Encoding.CodePages.dll │ │ ├── host.json │ │ ├── local.settings.json │ │ └── msrpaolayaf.deps.json ├── host.json ├── local.settings.json ├── msrpaolayaf.csproj └── obj │ ├── Debug │ └── netcoreapp2.1 │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── msrpaolayaf.AssemblyInfo.cs │ │ ├── msrpaolayaf.AssemblyInfoInputs.cache │ │ ├── msrpaolayaf.assets.cache │ │ ├── msrpaolayaf.csproj.CopyComplete │ │ ├── msrpaolayaf.csproj.CoreCompileInputs.cache │ │ ├── msrpaolayaf.csproj.FileListAbsolute.txt │ │ ├── msrpaolayaf.csprojAssemblyReference.cache │ │ ├── msrpaolayaf.dll │ │ └── msrpaolayaf.pdb │ ├── msrpaolayaf.csproj.nuget.cache │ ├── msrpaolayaf.csproj.nuget.g.props │ ├── msrpaolayaf.csproj.nuget.g.targets │ └── project.assets.json ├── msrpapdf ├── .gitignore ├── PdfConvertor.cs ├── PdfHelper.cs ├── StorageHelper.cs ├── host.json └── msrpapdf.csproj ├── msrpaui ├── Controllers │ └── HomeController.cs ├── Models │ └── ErrorViewModel.cs ├── Program.cs ├── Properties │ ├── PublishProfiles │ │ ├── FolderProfile.pubxml │ │ └── msrpaui - Web Deploy.pubxml │ └── launchSettings.json ├── Search │ ├── DocumentResult.cs │ ├── DocumentSearchClient.cs │ ├── FacetGraphGenerator.cs │ ├── SearchFacet.cs │ ├── SearchModel.cs │ └── SearchSchema.cs ├── Startup.cs ├── Views │ ├── Home │ │ ├── Index.cshtml │ │ └── Search.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── bundleconfig.json ├── msrpaui.csproj ├── obj │ ├── Debug │ │ └── netcoreapp2.0 │ │ │ ├── msrpaui.AssemblyInfo.cs │ │ │ ├── msrpaui.AssemblyInfoInputs.cache │ │ │ ├── msrpaui.assets.cache │ │ │ ├── msrpaui.csproj.CoreCompileInputs.cache │ │ │ └── msrpaui.csprojAssemblyReference.cache │ ├── msrpaui.csproj.nuget.cache │ ├── msrpaui.csproj.nuget.g.props │ ├── msrpaui.csproj.nuget.g.targets │ └── project.assets.json └── wwwroot │ ├── css │ ├── colors.css │ ├── site.css │ └── site.min.css │ ├── favicon.ico │ ├── images │ ├── JumboBackground.jpg │ ├── Microsoft-logo_rgb_c-gray.png │ ├── ReachNewHeights.png │ ├── Video1.PNG │ └── Video2.PNG │ ├── js │ ├── appInsights.js │ ├── details.js │ ├── entityMap.js │ ├── facets.js │ ├── results.js │ ├── search.js │ ├── site.js │ ├── site.min.js │ └── tags.js │ └── lib │ ├── bootstrap │ ├── .bower.json │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ ├── fabric-ui │ ├── fabric-9.4.0.scoped.css │ ├── fabric-9.4.0.scoped.min.css │ ├── fabric.css │ └── fabric.min.css │ ├── jquery-validation-unobtrusive │ ├── .bower.json │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── .bower.json │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── .bower.json │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── msrpaweb ├── AppInsightsConfig.cs ├── Configuration │ ├── ApiConfig.cs │ ├── AppConfig.cs │ └── OrganizationConfig.cs ├── Controllers │ ├── AdminController.cs │ ├── HomeController.cs │ ├── ReportsController.cs │ └── SearchController.cs ├── Models │ ├── ColorSettings.cs │ ├── CustomizeViewModel.cs │ ├── ErrorViewModel.cs │ └── SearchViewModel.cs ├── Program.cs ├── Properties │ ├── PublishProfiles │ │ └── FolderProfile.pubxml │ └── launchSettings.json ├── Startup.cs ├── Views │ ├── Admin │ │ ├── Customize.cshtml │ │ ├── Deploy.cshtml │ │ ├── NotAvailable.cshtml │ │ └── UploadData.cshtml │ ├── Home │ │ ├── About.cshtml │ │ ├── Index.cshtml │ │ ├── Privacy.cshtml │ │ ├── Search.cshtml │ │ └── UseOfDatasets.cshtml │ ├── Reports │ │ └── Index.cshtml │ ├── Search │ │ ├── Index.cshtml │ │ ├── Search.cshtml │ │ ├── _EntityMap.cshtml │ │ ├── _FacetSettings.cshtml │ │ ├── _SearchEmpty.cshtml │ │ ├── _SearchResults.cshtml │ │ └── _Sidebar.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Architecture.cshtml │ │ ├── _Footer.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── msrpaweb.csproj ├── obj │ ├── Debug │ │ └── netcoreapp2.2 │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ ├── msrpaweb.AssemblyInfo.cs │ │ │ ├── msrpaweb.AssemblyInfoInputs.cache │ │ │ ├── msrpaweb.RazorAssemblyInfo.cache │ │ │ ├── msrpaweb.RazorAssemblyInfo.cs │ │ │ ├── msrpaweb.assets.cache │ │ │ ├── msrpaweb.csproj.CoreCompileInputs.cache │ │ │ └── msrpaweb.csprojAssemblyReference.cache │ ├── msrpaweb.csproj.nuget.cache │ ├── msrpaweb.csproj.nuget.g.props │ ├── msrpaweb.csproj.nuget.g.targets │ └── project.assets.json └── wwwroot │ ├── css │ ├── footer.css │ ├── homepage.css │ ├── navbar.css │ └── site.css │ ├── favicon.ico │ ├── images │ ├── architecture.png │ ├── azure-search.logo.svg │ ├── cogsearch-architecture.png │ ├── collapse.png │ ├── expand.png │ ├── healthcare_launcher_icon.png │ ├── homepageimage.png │ ├── logo.png │ ├── ms-logo.svg │ ├── oilandgas_launcher_icon.png │ ├── org-logo.svg │ ├── org-logo2.svg │ ├── retail_launcher_icon.png │ ├── search-files.svg │ ├── solliance.svg │ └── test-logo.png │ ├── js │ ├── appInsights.js │ ├── details.js │ ├── entityMap.js │ ├── facets.js │ ├── results.js │ ├── search.js │ ├── site.js │ └── tags.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 │ ├── dropzone │ └── dist │ │ ├── css │ │ ├── basic.css │ │ ├── basic.min.css │ │ ├── dropzone.css │ │ └── dropzone.min.css │ │ └── js │ │ ├── dropzone-amd-module.js │ │ ├── dropzone-amd-module.min.js │ │ ├── dropzone.js │ │ └── dropzone.min.js │ ├── fabric-ui │ ├── fabric-9.4.0.scoped.css │ ├── fabric-9.4.0.scoped.min.css │ ├── fabric.css │ └── fabric.min.css │ ├── 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 ├── msrpawebapi ├── Controllers │ ├── DocumentsController.cs │ ├── FacetsController.cs │ ├── GraphController.cs │ ├── IndexerController.cs │ └── SuggestionsController.cs ├── Models │ ├── ResetIndexerRequest.cs │ └── SearchRequest.cs ├── Program.cs ├── Properties │ ├── PublishProfiles │ │ └── FolderProfile.pubxml │ └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── msrpawebapi.csproj └── obj │ ├── Debug │ └── netcoreapp2.2 │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── msrpawebapi.AssemblyInfo.cs │ │ ├── msrpawebapi.AssemblyInfoInputs.cache │ │ ├── msrpawebapi.RazorAssemblyInfo.cache │ │ ├── msrpawebapi.RazorAssemblyInfo.cs │ │ ├── msrpawebapi.assets.cache │ │ ├── msrpawebapi.csproj.CoreCompileInputs.cache │ │ └── msrpawebapi.csprojAssemblyReference.cache │ ├── msrpawebapi.csproj.nuget.cache │ ├── msrpawebapi.csproj.nuget.g.props │ ├── msrpawebapi.csproj.nuget.g.targets │ └── project.assets.json └── videos └── readme.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | **Smartphone (please complete the following information):** 32 | - Device: [e.g. iPhone6] 33 | - OS: [e.g. iOS8.1] 34 | - Browser [e.g. stock browser, safari] 35 | - Version [e.g. 22] 36 | 37 | **Additional context** 38 | Add any other context about the problem here. 39 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Microsoft Open Source Code of Conduct 2 | 3 | This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). 4 | 5 | Resources: 6 | 7 | - [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/) 8 | - [Microsoft Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) 9 | - Contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with questions or concerns 10 | -------------------------------------------------------------------------------- /DEPLOY.md: -------------------------------------------------------------------------------- 1 | # Deployment Guide 2 | 3 | ## Step 1. Download Files 4 | To start, clone or download this repository and navigate to the project's root directory. 5 | 6 | ## Step 2. Setup Resources 7 | 8 | ## Step 3. Upload Sample Dataset 9 | 10 | ## Step 4. Security Access 11 | 12 | ## Step 5. text here 13 | 14 | ## Step 6. text here 15 | 16 | # Congratulations 17 | You have completed this solution accelerator and should now have a report to explore the personalized recommendations: 18 | 19 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) Microsoft Corporation. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE 22 | -------------------------------------------------------------------------------- /architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/architecture.png -------------------------------------------------------------------------------- /assets/Intelligent Document Processing Customer Deck.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/assets/Intelligent Document Processing Customer Deck.pdf -------------------------------------------------------------------------------- /assets/Intelligent Document Processing Overview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/assets/Intelligent Document Processing Overview.pdf -------------------------------------------------------------------------------- /assets/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /deploy/apps/msrpaweb.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/apps/msrpaweb.zip -------------------------------------------------------------------------------- /deploy/apps/msrpawebapi.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/apps/msrpawebapi.zip -------------------------------------------------------------------------------- /deploy/custvisiontrain/10982020/Page1/2020_1098_1_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/custvisiontrain/10982020/Page1/2020_1098_1_001.jpg -------------------------------------------------------------------------------- /deploy/custvisiontrain/10982020/Page1/2020_1098_2_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/custvisiontrain/10982020/Page1/2020_1098_2_001.jpg -------------------------------------------------------------------------------- /deploy/custvisiontrain/10982020/Page1/2020_1098_3_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/custvisiontrain/10982020/Page1/2020_1098_3_001.jpg -------------------------------------------------------------------------------- /deploy/custvisiontrain/10982020/Page1/2020_1098_4_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/custvisiontrain/10982020/Page1/2020_1098_4_001.jpg -------------------------------------------------------------------------------- /deploy/custvisiontrain/10982020/Page1/2020_1098_5_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/custvisiontrain/10982020/Page1/2020_1098_5_001.jpg -------------------------------------------------------------------------------- /deploy/custvisiontrain/contosoinvoice/Page1/Invoice_1_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/custvisiontrain/contosoinvoice/Page1/Invoice_1_001.jpg -------------------------------------------------------------------------------- /deploy/custvisiontrain/contosoinvoice/Page1/Invoice_2_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/custvisiontrain/contosoinvoice/Page1/Invoice_2_001.jpg -------------------------------------------------------------------------------- /deploy/custvisiontrain/contosoinvoice/Page1/Invoice_3_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/custvisiontrain/contosoinvoice/Page1/Invoice_3_001.jpg -------------------------------------------------------------------------------- /deploy/custvisiontrain/contosoinvoice/Page1/Invoice_4_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/custvisiontrain/contosoinvoice/Page1/Invoice_4_001.jpg -------------------------------------------------------------------------------- /deploy/custvisiontrain/contosoinvoice/Page1/Invoice_5_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/custvisiontrain/contosoinvoice/Page1/Invoice_5_001.jpg -------------------------------------------------------------------------------- /deploy/custvisiontrain/custinvoice/Page1/form01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/custvisiontrain/custinvoice/Page1/form01.png -------------------------------------------------------------------------------- /deploy/custvisiontrain/custinvoice/Page1/form02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/custvisiontrain/custinvoice/Page1/form02.png -------------------------------------------------------------------------------- /deploy/custvisiontrain/custinvoice/Page1/form03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/custvisiontrain/custinvoice/Page1/form03.png -------------------------------------------------------------------------------- /deploy/custvisiontrain/custinvoice/Page1/form04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/custvisiontrain/custinvoice/Page1/form04.png -------------------------------------------------------------------------------- /deploy/custvisiontrain/custinvoice/Page1/form05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/custvisiontrain/custinvoice/Page1/form05.png -------------------------------------------------------------------------------- /deploy/custvisiontrain/loanagreement/Page1/l1-page1_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/custvisiontrain/loanagreement/Page1/l1-page1_001.jpg -------------------------------------------------------------------------------- /deploy/custvisiontrain/loanagreement/Page1/l2-page1_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/custvisiontrain/loanagreement/Page1/l2-page1_001.jpg -------------------------------------------------------------------------------- /deploy/custvisiontrain/loanagreement/Page1/l3-page1_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/custvisiontrain/loanagreement/Page1/l3-page1_001.jpg -------------------------------------------------------------------------------- /deploy/custvisiontrain/loanagreement/Page1/l4-page1_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/custvisiontrain/loanagreement/Page1/l4-page1_001.jpg -------------------------------------------------------------------------------- /deploy/custvisiontrain/loanagreement/Page1/l5-page1_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/custvisiontrain/loanagreement/Page1/l5-page1_001.jpg -------------------------------------------------------------------------------- /deploy/custvisiontrain/w22018/Page1/2018_W2_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/custvisiontrain/w22018/Page1/2018_W2_1.jpg -------------------------------------------------------------------------------- /deploy/custvisiontrain/w22018/Page1/2018_W2_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/custvisiontrain/w22018/Page1/2018_W2_2.jpg -------------------------------------------------------------------------------- /deploy/custvisiontrain/w22018/Page1/2018_W2_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/custvisiontrain/w22018/Page1/2018_W2_3.jpg -------------------------------------------------------------------------------- /deploy/custvisiontrain/w22018/Page1/2018_W2_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/custvisiontrain/w22018/Page1/2018_W2_4.jpg -------------------------------------------------------------------------------- /deploy/custvisiontrain/w22018/Page1/2018_W2_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/custvisiontrain/w22018/Page1/2018_W2_5.jpg -------------------------------------------------------------------------------- /deploy/e2etest/10982020/2020_1098_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/e2etest/10982020/2020_1098_1.pdf -------------------------------------------------------------------------------- /deploy/e2etest/10982020/2020_1098_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/e2etest/10982020/2020_1098_2.pdf -------------------------------------------------------------------------------- /deploy/e2etest/10982020/2020_1098_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/e2etest/10982020/2020_1098_3.pdf -------------------------------------------------------------------------------- /deploy/e2etest/10982020/2020_1098_4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/e2etest/10982020/2020_1098_4.pdf -------------------------------------------------------------------------------- /deploy/e2etest/10982020/2020_1098_5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/e2etest/10982020/2020_1098_5.pdf -------------------------------------------------------------------------------- /deploy/e2etest/contosoinvoice/contosoinvoice_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/e2etest/contosoinvoice/contosoinvoice_1.pdf -------------------------------------------------------------------------------- /deploy/e2etest/contosoinvoice/contosoinvoice_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/e2etest/contosoinvoice/contosoinvoice_2.pdf -------------------------------------------------------------------------------- /deploy/e2etest/contosoinvoice/contosoinvoice_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/e2etest/contosoinvoice/contosoinvoice_3.pdf -------------------------------------------------------------------------------- /deploy/e2etest/contosoinvoice/contosoinvoice_4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/e2etest/contosoinvoice/contosoinvoice_4.pdf -------------------------------------------------------------------------------- /deploy/e2etest/contosoinvoice/contosoinvoice_5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/e2etest/contosoinvoice/contosoinvoice_5.pdf -------------------------------------------------------------------------------- /deploy/e2etest/custinvoice/custinvoice_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/e2etest/custinvoice/custinvoice_1.pdf -------------------------------------------------------------------------------- /deploy/e2etest/custinvoice/custinvoice_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/e2etest/custinvoice/custinvoice_2.pdf -------------------------------------------------------------------------------- /deploy/e2etest/custinvoice/custinvoice_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/e2etest/custinvoice/custinvoice_3.pdf -------------------------------------------------------------------------------- /deploy/e2etest/custinvoice/custinvoice_4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/e2etest/custinvoice/custinvoice_4.pdf -------------------------------------------------------------------------------- /deploy/e2etest/custinvoice/custinvoice_5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/e2etest/custinvoice/custinvoice_5.pdf -------------------------------------------------------------------------------- /deploy/e2etest/loanagreement/loan-agreement-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/e2etest/loanagreement/loan-agreement-1.pdf -------------------------------------------------------------------------------- /deploy/e2etest/loanagreement/loan-agreement-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/e2etest/loanagreement/loan-agreement-2.pdf -------------------------------------------------------------------------------- /deploy/e2etest/loanagreement/loan-agreement-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/e2etest/loanagreement/loan-agreement-3.pdf -------------------------------------------------------------------------------- /deploy/e2etest/loanagreement/loan-agreement-4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/e2etest/loanagreement/loan-agreement-4.pdf -------------------------------------------------------------------------------- /deploy/e2etest/loanagreement/loan-agreement-5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/e2etest/loanagreement/loan-agreement-5.pdf -------------------------------------------------------------------------------- /deploy/e2etest/w22018/w2_2018_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/e2etest/w22018/w2_2018_1.pdf -------------------------------------------------------------------------------- /deploy/e2etest/w22018/w2_2018_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/e2etest/w22018/w2_2018_2.pdf -------------------------------------------------------------------------------- /deploy/e2etest/w22018/w2_2018_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/e2etest/w22018/w2_2018_3.pdf -------------------------------------------------------------------------------- /deploy/e2etest/w22018/w2_2018_4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/e2etest/w22018/w2_2018_4.pdf -------------------------------------------------------------------------------- /deploy/e2etest/w22018/w2_2018_5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/e2etest/w22018/w2_2018_5.pdf -------------------------------------------------------------------------------- /deploy/formstrain/10982020/Page1/2020_1098_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/formstrain/10982020/Page1/2020_1098_1.pdf -------------------------------------------------------------------------------- /deploy/formstrain/10982020/Page1/2020_1098_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/formstrain/10982020/Page1/2020_1098_2.pdf -------------------------------------------------------------------------------- /deploy/formstrain/10982020/Page1/2020_1098_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/formstrain/10982020/Page1/2020_1098_3.pdf -------------------------------------------------------------------------------- /deploy/formstrain/10982020/Page1/2020_1098_4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/formstrain/10982020/Page1/2020_1098_4.pdf -------------------------------------------------------------------------------- /deploy/formstrain/10982020/Page1/2020_1098_5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/formstrain/10982020/Page1/2020_1098_5.pdf -------------------------------------------------------------------------------- /deploy/formstrain/contosoinvoice/Page1/contosoinvoice_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/formstrain/contosoinvoice/Page1/contosoinvoice_1.pdf -------------------------------------------------------------------------------- /deploy/formstrain/contosoinvoice/Page1/contosoinvoice_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/formstrain/contosoinvoice/Page1/contosoinvoice_2.pdf -------------------------------------------------------------------------------- /deploy/formstrain/contosoinvoice/Page1/contosoinvoice_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/formstrain/contosoinvoice/Page1/contosoinvoice_3.pdf -------------------------------------------------------------------------------- /deploy/formstrain/contosoinvoice/Page1/contosoinvoice_4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/formstrain/contosoinvoice/Page1/contosoinvoice_4.pdf -------------------------------------------------------------------------------- /deploy/formstrain/contosoinvoice/Page1/contosoinvoice_5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/formstrain/contosoinvoice/Page1/contosoinvoice_5.pdf -------------------------------------------------------------------------------- /deploy/formstrain/custinvoice/Page1/form01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/formstrain/custinvoice/Page1/form01.png -------------------------------------------------------------------------------- /deploy/formstrain/custinvoice/Page1/form02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/formstrain/custinvoice/Page1/form02.png -------------------------------------------------------------------------------- /deploy/formstrain/custinvoice/Page1/form03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/formstrain/custinvoice/Page1/form03.png -------------------------------------------------------------------------------- /deploy/formstrain/custinvoice/Page1/form04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/formstrain/custinvoice/Page1/form04.png -------------------------------------------------------------------------------- /deploy/formstrain/custinvoice/Page1/form05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/formstrain/custinvoice/Page1/form05.png -------------------------------------------------------------------------------- /deploy/formstrain/insurance/Page1/Insurance Form 01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/formstrain/insurance/Page1/Insurance Form 01.pdf -------------------------------------------------------------------------------- /deploy/formstrain/insurance/Page1/Insurance Form 02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/formstrain/insurance/Page1/Insurance Form 02.pdf -------------------------------------------------------------------------------- /deploy/formstrain/insurance/Page1/Insurance Form 03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/formstrain/insurance/Page1/Insurance Form 03.pdf -------------------------------------------------------------------------------- /deploy/formstrain/insurance/Page1/Insurance Form 04.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/formstrain/insurance/Page1/Insurance Form 04.pdf -------------------------------------------------------------------------------- /deploy/formstrain/insurance/Page1/Insurance Form 05.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/formstrain/insurance/Page1/Insurance Form 05.pdf -------------------------------------------------------------------------------- /deploy/formstrain/insurance/Page1/Insurance Form 06.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/formstrain/insurance/Page1/Insurance Form 06.pdf -------------------------------------------------------------------------------- /deploy/formstrain/insurance/Page1/Insurance Form 07.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/formstrain/insurance/Page1/Insurance Form 07.pdf -------------------------------------------------------------------------------- /deploy/formstrain/insurance/Page1/Insurance Form 08.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/formstrain/insurance/Page1/Insurance Form 08.pdf -------------------------------------------------------------------------------- /deploy/formstrain/insurance/Page1/Insurance Form 09.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/formstrain/insurance/Page1/Insurance Form 09.pdf -------------------------------------------------------------------------------- /deploy/formstrain/w22018/Page1/w2_2018_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/formstrain/w22018/Page1/w2_2018_1.pdf -------------------------------------------------------------------------------- /deploy/formstrain/w22018/Page1/w2_2018_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/formstrain/w22018/Page1/w2_2018_2.pdf -------------------------------------------------------------------------------- /deploy/formstrain/w22018/Page1/w2_2018_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/formstrain/w22018/Page1/w2_2018_3.pdf -------------------------------------------------------------------------------- /deploy/formstrain/w22018/Page1/w2_2018_4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/formstrain/w22018/Page1/w2_2018_4.pdf -------------------------------------------------------------------------------- /deploy/formstrain/w22018/Page1/w2_2018_5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/formstrain/w22018/Page1/w2_2018_5.pdf -------------------------------------------------------------------------------- /deploy/functions/mrrpafrskill.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/functions/mrrpafrskill.zip -------------------------------------------------------------------------------- /deploy/functions/msrpabo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/functions/msrpabo.zip -------------------------------------------------------------------------------- /deploy/functions/msrpacdbskill.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/functions/msrpacdbskill.zip -------------------------------------------------------------------------------- /deploy/functions/msrpaluisskill.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/functions/msrpaluisskill.zip -------------------------------------------------------------------------------- /deploy/functions/msrpapdf.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/functions/msrpapdf.zip -------------------------------------------------------------------------------- /deploy/newcustvisiontrain/adpstub/Page1/ADP Stub 1_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/newcustvisiontrain/adpstub/Page1/ADP Stub 1_001.jpg -------------------------------------------------------------------------------- /deploy/newcustvisiontrain/adpstub/Page1/ADP Stub 2_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/newcustvisiontrain/adpstub/Page1/ADP Stub 2_001.jpg -------------------------------------------------------------------------------- /deploy/newcustvisiontrain/adpstub/Page1/ADP Stub 3_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/newcustvisiontrain/adpstub/Page1/ADP Stub 3_001.jpg -------------------------------------------------------------------------------- /deploy/newcustvisiontrain/adpstub/Page1/ADP Stub 4_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/newcustvisiontrain/adpstub/Page1/ADP Stub 4_001.jpg -------------------------------------------------------------------------------- /deploy/newcustvisiontrain/adpstub/Page1/ADP Stub 5_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/newcustvisiontrain/adpstub/Page1/ADP Stub 5_001.jpg -------------------------------------------------------------------------------- /deploy/newe2etest/adpstub/ADP Stub 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/newe2etest/adpstub/ADP Stub 1.pdf -------------------------------------------------------------------------------- /deploy/newe2etest/adpstub/ADP Stub 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/newe2etest/adpstub/ADP Stub 2.pdf -------------------------------------------------------------------------------- /deploy/newe2etest/adpstub/ADP Stub 3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/newe2etest/adpstub/ADP Stub 3.pdf -------------------------------------------------------------------------------- /deploy/newe2etest/adpstub/ADP Stub 4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/newe2etest/adpstub/ADP Stub 4.pdf -------------------------------------------------------------------------------- /deploy/newe2etest/adpstub/ADP Stub 5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/newe2etest/adpstub/ADP Stub 5.pdf -------------------------------------------------------------------------------- /deploy/newformstrain/adpstub/Page1/ADP Stub 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/newformstrain/adpstub/Page1/ADP Stub 1.pdf -------------------------------------------------------------------------------- /deploy/newformstrain/adpstub/Page1/ADP Stub 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/newformstrain/adpstub/Page1/ADP Stub 2.pdf -------------------------------------------------------------------------------- /deploy/newformstrain/adpstub/Page1/ADP Stub 3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/newformstrain/adpstub/Page1/ADP Stub 3.pdf -------------------------------------------------------------------------------- /deploy/newformstrain/adpstub/Page1/ADP Stub 4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/newformstrain/adpstub/Page1/ADP Stub 4.pdf -------------------------------------------------------------------------------- /deploy/newformstrain/adpstub/Page1/ADP Stub 5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/deploy/newformstrain/adpstub/Page1/ADP Stub 5.pdf -------------------------------------------------------------------------------- /deploy/scripts/deploy.bat: -------------------------------------------------------------------------------- 1 | .\deploy.ps1 -uniqueName '' -location '' -subscriptionId '' -resourceGroupName '' -------------------------------------------------------------------------------- /deploy/scripts/newModel.bat: -------------------------------------------------------------------------------- 1 | .\deployNewModel.ps1 -uniqueName '' -location '' -subscriptionId '' -resourceGroupName '' -------------------------------------------------------------------------------- /deploy/templates/azureblob-parameters.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", 3 | "contentVersion": "1.0.0.0", 4 | "parameters": { 5 | "subscription_id": { 6 | "value": "" 7 | }, 8 | "connections_azureblob_name": { 9 | "value": "" 10 | }, 11 | "storage_account_name": { 12 | "value": "" 13 | }, 14 | "storage_access_key": { 15 | "value": "" 16 | }, 17 | "location": { 18 | "value": "" 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /deploy/templates/azureeventgrid-parameters.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", 3 | "contentVersion": "1.0.0.0", 4 | "parameters": { 5 | "subscription_id": { 6 | "value": "" 7 | }, 8 | "connections_eventgrid_name": { 9 | "value": "" 10 | }, 11 | "location": { 12 | "value": "" 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /deploy/templates/azureeventgrid-template.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", 3 | "contentVersion": "1.0.0.0", 4 | "parameters": { 5 | "subscription_id":{ 6 | "type": "securestring" 7 | }, 8 | "connections_eventgrid_name": { 9 | "type": "string" 10 | }, 11 | "location": { 12 | "type": "string" 13 | } 14 | }, 15 | "variables": {}, 16 | "resources": [ 17 | { 18 | "type": "Microsoft.Web/connections", 19 | "apiVersion": "2016-06-01", 20 | "name": "[parameters('connections_eventgrid_name')]", 21 | "location": "[parameters('location')]", 22 | "properties": { 23 | "displayName": "[parameters('connections_eventgrid_name')]", 24 | "customParameterValues": {}, 25 | "api": { 26 | "id": "[concat('/subscriptions/', parameters('subscription_id'), '/providers/Microsoft.Web/locations/', parameters('location'), '/managedApis/', 'azureeventgrid')]" 27 | } 28 | } 29 | } 30 | ] 31 | } -------------------------------------------------------------------------------- /deploy/templates/msrpaprocessEmail-parameters.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", 3 | "contentVersion": "1.0.0.0", 4 | "parameters": { 5 | "logic_app_name": { 6 | "value": "" 7 | }, 8 | "subscription_id": { 9 | "value": "" 10 | }, 11 | "location": { 12 | "value": "" 13 | }, 14 | "office365_resource_id": { 15 | "value": "" 16 | }, 17 | "azureblob_resource_id": { 18 | "value": "" 19 | }, 20 | "storage_connection_string": { 21 | "value": "" 22 | }, 23 | "storage_url": { 24 | "value": "" 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /deploy/templates/msrpaprocessPdf-parameters.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", 3 | "contentVersion": "1.0.0.0", 4 | "parameters": { 5 | "logic_app_name": { 6 | "value": "" 7 | }, 8 | "subscription_id": { 9 | "value": "" 10 | }, 11 | "location": { 12 | "value": "southcentralus" 13 | }, 14 | "bo_resource_id": { 15 | "value": "" 16 | }, 17 | "pdf_resource_id": { 18 | "value": "" 19 | }, 20 | "azureblob_resource_id": { 21 | "value": "" 22 | }, 23 | "form_classification_key": { 24 | "value": "" 25 | }, 26 | "form_classification_url": { 27 | "value": "" 28 | }, 29 | "storage_connection_string": { 30 | "value": "" 31 | }, 32 | "storage_url": { 33 | "value": "" 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /deploy/templates/msrpaprocesspdfeg-parameters.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", 3 | "contentVersion": "1.0.0.0", 4 | "parameters": { 5 | "logic_app_name": { 6 | "value": "" 7 | }, 8 | "subscription_id": { 9 | "value": "" 10 | }, 11 | "resource_group_name": { 12 | "value": "" 13 | }, 14 | "location": { 15 | "value": "" 16 | }, 17 | "bo_resource_id": { 18 | "value": "" 19 | }, 20 | "pdf_resource_id": { 21 | "value": "" 22 | }, 23 | "azureblob_resource_id": { 24 | "value": "" 25 | }, 26 | "azureeventgrid_resource_id": { 27 | "value": "" 28 | }, 29 | "form_classification_key": { 30 | "value": "" 31 | }, 32 | "form_classification_url": { 33 | "value": "" 34 | }, 35 | "storage_connection_string": { 36 | "value": "" 37 | }, 38 | "storage_url": { 39 | "value": "" 40 | }, 41 | "storage_name": { 42 | "value": "" 43 | } 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /deploy/templates/office365-parameters.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", 3 | "contentVersion": "1.0.0.0", 4 | "parameters": { 5 | "subscription_id": { 6 | "value": "" 7 | }, 8 | "connections_office365_name": { 9 | "value": "" 10 | }, 11 | "location": { 12 | "value": "" 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /deploy/templates/office365-template.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", 3 | "contentVersion": "1.0.0.0", 4 | "parameters": { 5 | "subscription_id":{ 6 | "type": "securestring" 7 | }, 8 | "connections_office365_name": { 9 | "type": "string" 10 | }, 11 | "location": { 12 | "type": "string" 13 | } 14 | }, 15 | "variables": {}, 16 | "resources": [ 17 | { 18 | "type": "Microsoft.Web/connections", 19 | "apiVersion": "2016-06-01", 20 | "name": "[parameters('connections_office365_name')]", 21 | "location": "[parameters('location')]", 22 | "properties": { 23 | "displayName": "[parameters('connections_office365_name')]", 24 | "customParameterValues": {}, 25 | "api": { 26 | "id": "[concat('/subscriptions/', parameters('subscription_id'), '/providers/Microsoft.Web/locations/', parameters('location'), '/managedApis/', 'office365')]" 27 | } 28 | } 29 | } 30 | ] 31 | } -------------------------------------------------------------------------------- /images/MSUS Solution Accelerator Banner Two_981.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/images/MSUS Solution Accelerator Banner Two_981.png -------------------------------------------------------------------------------- /images/README.md: -------------------------------------------------------------------------------- 1 | # images -------------------------------------------------------------------------------- /images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/images/architecture.png -------------------------------------------------------------------------------- /images/authorize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/images/authorize.png -------------------------------------------------------------------------------- /images/authorize1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/images/authorize1.png -------------------------------------------------------------------------------- /images/customdata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/images/customdata.png -------------------------------------------------------------------------------- /images/customdatapage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/images/customdatapage.png -------------------------------------------------------------------------------- /images/eventgrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/images/eventgrid.png -------------------------------------------------------------------------------- /images/signin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/images/signin.png -------------------------------------------------------------------------------- /misc/deploytest/10982020/2020_1098_1/2020_1098_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/deploytest/10982020/2020_1098_1/2020_1098_1.pdf -------------------------------------------------------------------------------- /misc/deploytest/10982020/2020_1098_1/2020_1098_1_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/deploytest/10982020/2020_1098_1/2020_1098_1_001.jpg -------------------------------------------------------------------------------- /misc/deploytest/contosoinvoice/Invoice_1/Invoice_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/deploytest/contosoinvoice/Invoice_1/Invoice_1.pdf -------------------------------------------------------------------------------- /misc/deploytest/contosoinvoice/Invoice_1/Invoice_1_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/deploytest/contosoinvoice/Invoice_1/Invoice_1_001.jpg -------------------------------------------------------------------------------- /misc/deploytest/w22018/2018_W2_1/2018_W2_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/deploytest/w22018/2018_W2_1/2018_W2_1.pdf -------------------------------------------------------------------------------- /misc/deploytest/w22018/2018_W2_1/2018_W2_1_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/deploytest/w22018/2018_W2_1/2018_W2_1_001.jpg -------------------------------------------------------------------------------- /misc/formstest/10982020/1098_1/2020_1098_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/formstest/10982020/1098_1/2020_1098_1.pdf -------------------------------------------------------------------------------- /misc/formstest/10982020/1098_1/2020_1098_1_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/formstest/10982020/1098_1/2020_1098_1_001.jpg -------------------------------------------------------------------------------- /misc/formstest/2018_W2_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/formstest/2018_W2_1.pdf -------------------------------------------------------------------------------- /misc/formstest/2020_1098_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/formstest/2020_1098_1.pdf -------------------------------------------------------------------------------- /misc/formstest/2020_1098_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/formstest/2020_1098_2.pdf -------------------------------------------------------------------------------- /misc/formstest/2020_1098_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/formstest/2020_1098_3.pdf -------------------------------------------------------------------------------- /misc/formstest/2020_1098_4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/formstest/2020_1098_4.pdf -------------------------------------------------------------------------------- /misc/formstest/2020_1098_5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/formstest/2020_1098_5.pdf -------------------------------------------------------------------------------- /misc/formstest/Invoice_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/formstest/Invoice_1.pdf -------------------------------------------------------------------------------- /misc/formstest/Invoice_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/formstest/Invoice_2.pdf -------------------------------------------------------------------------------- /misc/formstest/Invoice_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/formstest/Invoice_3.pdf -------------------------------------------------------------------------------- /misc/formstest/Invoice_4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/formstest/Invoice_4.pdf -------------------------------------------------------------------------------- /misc/formstest/Invoice_5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/formstest/Invoice_5.pdf -------------------------------------------------------------------------------- /misc/formstest/contosoinvoice/Invoice_1/Invoice_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/formstest/contosoinvoice/Invoice_1/Invoice_1.pdf -------------------------------------------------------------------------------- /misc/formstest/contosoinvoice/Invoice_1/Invoice_1_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/formstest/contosoinvoice/Invoice_1/Invoice_1_001.jpg -------------------------------------------------------------------------------- /misc/formstest/custinvoice/test_form.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/formstest/custinvoice/test_form.pdf -------------------------------------------------------------------------------- /misc/formstest/custinvoice/test_form_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/formstest/custinvoice/test_form_001.jpg -------------------------------------------------------------------------------- /misc/formstest/custinvoice/test_form_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/formstest/custinvoice/test_form_001.png -------------------------------------------------------------------------------- /misc/formstest/w22018/w22018_1/2018_W2_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/formstest/w22018/w22018_1/2018_W2_1.pdf -------------------------------------------------------------------------------- /misc/formstest/w22018/w22018_1/2018_W2_1_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/formstest/w22018/w22018_1/2018_W2_1_001.jpg -------------------------------------------------------------------------------- /misc/loan-agreement/Page1/l1-page1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/loan-agreement/Page1/l1-page1.pdf -------------------------------------------------------------------------------- /misc/loan-agreement/Page1/l1-page1_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/loan-agreement/Page1/l1-page1_001.jpg -------------------------------------------------------------------------------- /misc/loan-agreement/Page1/l2-page1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/loan-agreement/Page1/l2-page1.pdf -------------------------------------------------------------------------------- /misc/loan-agreement/Page1/l2-page1_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/loan-agreement/Page1/l2-page1_001.jpg -------------------------------------------------------------------------------- /misc/loan-agreement/Page1/l3-page1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/loan-agreement/Page1/l3-page1.pdf -------------------------------------------------------------------------------- /misc/loan-agreement/Page1/l3-page1_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/loan-agreement/Page1/l3-page1_001.jpg -------------------------------------------------------------------------------- /misc/loan-agreement/Page1/l4-page1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/loan-agreement/Page1/l4-page1.pdf -------------------------------------------------------------------------------- /misc/loan-agreement/Page1/l4-page1_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/loan-agreement/Page1/l4-page1_001.jpg -------------------------------------------------------------------------------- /misc/loan-agreement/Page1/l5-page1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/loan-agreement/Page1/l5-page1.pdf -------------------------------------------------------------------------------- /misc/loan-agreement/Page1/l5-page1_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/loan-agreement/Page1/l5-page1_001.jpg -------------------------------------------------------------------------------- /misc/loan-agreement/Page3/l1-page3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/loan-agreement/Page3/l1-page3.pdf -------------------------------------------------------------------------------- /misc/loan-agreement/Page3/l2-page3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/loan-agreement/Page3/l2-page3.pdf -------------------------------------------------------------------------------- /misc/loan-agreement/Page3/l3-page3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/loan-agreement/Page3/l3-page3.pdf -------------------------------------------------------------------------------- /misc/loan-agreement/Page3/l4-page3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/loan-agreement/Page3/l4-page3.pdf -------------------------------------------------------------------------------- /misc/loan-agreement/Page3/l5-page3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/loan-agreement/Page3/l5-page3.pdf -------------------------------------------------------------------------------- /misc/loan-agreement/loan-agreement-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/loan-agreement/loan-agreement-1.pdf -------------------------------------------------------------------------------- /misc/loan-agreement/loan-agreement-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/loan-agreement/loan-agreement-2.pdf -------------------------------------------------------------------------------- /misc/loan-agreement/loan-agreement-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/loan-agreement/loan-agreement-3.pdf -------------------------------------------------------------------------------- /misc/loan-agreement/loan-agreement-4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/loan-agreement/loan-agreement-4.pdf -------------------------------------------------------------------------------- /misc/loan-agreement/loan-agreement-5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/loan-agreement/loan-agreement-5.pdf -------------------------------------------------------------------------------- /misc/loan-agreement/loan-agreement-empty.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/loan-agreement/loan-agreement-empty.pdf -------------------------------------------------------------------------------- /misc/w22014/Page1/2014_W2_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/w22014/Page1/2014_W2_1.jpg -------------------------------------------------------------------------------- /misc/w22014/Page1/2014_W2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/w22014/Page1/2014_W2_2.png -------------------------------------------------------------------------------- /misc/w22014/Page1/2014_W2_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/w22014/Page1/2014_W2_3.jpg -------------------------------------------------------------------------------- /misc/w22014/Page1/2014_W2_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/w22014/Page1/2014_W2_4.jpg -------------------------------------------------------------------------------- /misc/w22014/Page1/2014_W2_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/misc/w22014/Page1/2014_W2_5.png -------------------------------------------------------------------------------- /mrrpafrskill/FormEntity.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.WindowsAzure.Storage.Table; 2 | using System; 3 | 4 | namespace mrrpafrskill 5 | { 6 | public class FormEntity : TableEntity 7 | { 8 | public FormEntity(string partitionKey, string rowKey) 9 | { 10 | this.PartitionKey = partitionKey; 11 | this.RowKey = rowKey; 12 | } 13 | 14 | public FormEntity() { } 15 | 16 | public string Key { get; set; } 17 | 18 | public string Value { get; set; } 19 | 20 | public Int32 IsProcessed { get; set; } 21 | 22 | public string Page { get; set; } 23 | 24 | public string FormType { get; set; } 25 | 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /mrrpafrskill/ModelEntity.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.WindowsAzure.Storage.Table; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Text; 5 | 6 | namespace mrrpafrskill 7 | { 8 | public class ModelEntity : TableEntity 9 | { 10 | public ModelEntity(string partitionKey, string rowKey) 11 | { 12 | this.PartitionKey = partitionKey; 13 | this.RowKey = rowKey; 14 | } 15 | 16 | public ModelEntity() { } 17 | 18 | public string SubscriptionKey { get; set; } 19 | 20 | public string ModelId { get; set; } 21 | 22 | public Boolean IsActive { get; set; } 23 | 24 | public string Page { get; set; } 25 | 26 | public string EndPoint { get; set; } 27 | 28 | public Int32 StartIndex { get; set; } 29 | 30 | public Int32 EndIndex { get; set; } 31 | public string ModelName { get; set; } 32 | 33 | public string ImageContainerName { get; set; } 34 | public string ComputerVisionKey { get; set; } 35 | public string ComputerVisionUri { get; set; } 36 | 37 | 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /mrrpafrskill/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /mrrpafrskill/mrrpafrskill.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | netcoreapp2.1 4 | v2 5 | mrrpafrskill 6 | mrrpafrskill 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | PreserveNewest 15 | 16 | 17 | PreserveNewest 18 | Never 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /mrrpafrv2skill/FormEntity.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.WindowsAzure.Storage.Table; 2 | using System; 3 | 4 | namespace mrrpafrv2skill 5 | { 6 | public class FormEntity : TableEntity 7 | { 8 | public FormEntity(string partitionKey, string rowKey) 9 | { 10 | this.PartitionKey = partitionKey; 11 | this.RowKey = rowKey; 12 | } 13 | 14 | public FormEntity() { } 15 | 16 | public string Key { get; set; } 17 | 18 | public string Value { get; set; } 19 | 20 | public Int32 IsProcessed { get; set; } 21 | 22 | public string Page { get; set; } 23 | 24 | public string FormType { get; set; } 25 | 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /mrrpafrv2skill/ModelEntity.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.WindowsAzure.Storage.Table; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Text; 5 | 6 | namespace mrrpafrv2skill 7 | { 8 | public class ModelEntity : TableEntity 9 | { 10 | public ModelEntity(string partitionKey, string rowKey) 11 | { 12 | this.PartitionKey = partitionKey; 13 | this.RowKey = rowKey; 14 | } 15 | 16 | public ModelEntity() { } 17 | 18 | public string SubscriptionKey { get; set; } 19 | 20 | public string ModelId { get; set; } 21 | 22 | public Boolean IsActive { get; set; } 23 | 24 | public string Page { get; set; } 25 | 26 | public string EndPoint { get; set; } 27 | 28 | public Int32 StartIndex { get; set; } 29 | 30 | public Int32 EndIndex { get; set; } 31 | public string ModelName { get; set; } 32 | 33 | public string ImageContainerName { get; set; } 34 | public string ComputerVisionKey { get; set; } 35 | public string ComputerVisionUri { get; set; } 36 | 37 | 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /mrrpafrv2skill/Properties/PublishProfiles/formsmvpfrv2af - Web Deploy.pubxml.user: -------------------------------------------------------------------------------- 1 |  2 | 5 | 6 | 7 | AQAAANCMnd8BFdERjHoAwE/Cl+sBAAAAt67MNS8OuESVmF7m+MBdOAAAAAACAAAAAAADZgAAwAAAABAAAADjUTIZp54YKdHbg0QWHSY/AAAAAASAAACgAAAAEAAAAESAlBhLE0r0Ey7OB4FSRnKAAAAA+O8xc0hn9sMw+lB32ZWeooV9zWDLl4cIFxwL5g1RxQCEepwoZhcVb1TAxX9YFCE4lHzbKrXexRBGy76dFFkByG7aRUaCHBpBVkq90NM9VKiEFmQZyQ1rjt4shKgaUZarmOlfhB5FwM6wvON0vJSUOKxY6J7YzjUopPsoNEccEy0UAAAAWyI3dUI97fanKJ6bom8YoLOQlRI= 8 | 9 | -------------------------------------------------------------------------------- /mrrpafrv2skill/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /mrrpafrv2skill/local.settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "IsEncrypted": false, 3 | "Values": { 4 | "AzureWebJobsStorage": "UseDevelopmentStorage=true", 5 | "FUNCTIONS_WORKER_RUNTIME": "dotnet", 6 | "ModelTableName": "modelinformation", 7 | "EntityTableName": "entities", 8 | "StorageContainerString": "DefaultEndpointsProtocol=https;AccountName=formsmvpsa;AccountKey=4FLrdxzbI7MDgjn9TdLSYjiDI7ZGHQsh4WU/28D20szF4QdjuxUqAsivE4T1S9yZNIiH5j6LJHkHMstvpQehWg==;EndpointSuffix=core.windows.net" 9 | } 10 | } -------------------------------------------------------------------------------- /mrrpafrv2skill/mrrpafrv2skill.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | <_LastSelectedProfileId>C:\Projects\Repos\msrpa\mrrpafrv2skill\Properties\PublishProfiles\formsmvpfrv2af - Web Deploy.pubxml 5 | 6 | -------------------------------------------------------------------------------- /mrrpafrv2skill/msrpafrv2skill.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | netcoreapp2.1 4 | v2 5 | mrrpafrv2skill 6 | mrrpafrv2skill 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | PreserveNewest 15 | 16 | 17 | PreserveNewest 18 | Never 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /mrrpafrv2skill/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/mrrpafrv2skill/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /mrrpafrv2skill/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/mrrpafrv2skill/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /mrrpafrv2skill/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/mrrpafrv2skill/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /mrrpafrv2skill/obj/Debug/netcoreapp2.1/msrpafrv2skill.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("mrrpafrv2skill")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("mrrpafrv2skill")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("mrrpafrv2skill")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /mrrpafrv2skill/obj/Debug/netcoreapp2.1/msrpafrv2skill.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 9a53bdd6acad216964d075016320d6bb0a478a72 2 | -------------------------------------------------------------------------------- /mrrpafrv2skill/obj/Debug/netcoreapp2.1/msrpafrv2skill.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/mrrpafrv2skill/obj/Debug/netcoreapp2.1/msrpafrv2skill.assets.cache -------------------------------------------------------------------------------- /mrrpafrv2skill/obj/Debug/netcoreapp2.1/msrpafrv2skill.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 64184e7cafda563b7cbf1e4ab0ebb442692393ed 2 | -------------------------------------------------------------------------------- /mrrpafrv2skill/obj/Debug/netcoreapp2.1/msrpafrv2skill.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/mrrpafrv2skill/obj/Debug/netcoreapp2.1/msrpafrv2skill.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /mrrpafrv2skill/obj/msrpafrv2skill.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "p3xFQSvt1iJ7ahWUnNVUm/QBsbCHaABAD80sXyp/TzMFs/Ot3EHobN3pYo3MB2rVUwmPj7rvYJFJX2Pq34U8dA==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /msrpaazure/AppInsights/AppInsightsConfig.cs: -------------------------------------------------------------------------------- 1 | namespace msrpaazure 2 | { 3 | public class AppInsightsConfig 4 | { 5 | public string InstrumentationKey { get; set; } 6 | } 7 | } -------------------------------------------------------------------------------- /msrpaazure/Search/DocumentResult.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Azure.Search.Models; 2 | using System.Collections.Generic; 3 | 4 | namespace msrpaazure 5 | { 6 | public class DocumentResult 7 | { 8 | public List Facets { get; set; } 9 | public Document Result { get; set; } 10 | public IList> Results { get; set; } 11 | public int? Count { get; set; } 12 | public string Token { get; set; } 13 | public List Tags { get; set; } 14 | public string SearchId { get; set; } 15 | } 16 | } -------------------------------------------------------------------------------- /msrpaazure/Search/FDGraphEdge.cs: -------------------------------------------------------------------------------- 1 | using Newtonsoft.Json; 2 | 3 | namespace msrpaazure 4 | { 5 | public class FDGraphEdge 6 | { 7 | [JsonProperty("source")] 8 | public int Source { get; set; } 9 | [JsonProperty("target")] 10 | public int Target { get; set; } 11 | } 12 | } -------------------------------------------------------------------------------- /msrpaazure/Search/SearchConfig.cs: -------------------------------------------------------------------------------- 1 | namespace msrpaazure 2 | { 3 | public class SearchConfig 4 | { 5 | public string ServiceName { get; set; } 6 | public string Key { get; set; } 7 | public string ApiVersion { get; set; } 8 | public string IndexName { get; set; } 9 | } 10 | } -------------------------------------------------------------------------------- /msrpaazure/Search/SearchFacet.cs: -------------------------------------------------------------------------------- 1 | namespace msrpaazure 2 | { 3 | public class SearchFacet 4 | { 5 | public string Key { get; set; } 6 | public string[] Value { get; set; } 7 | } 8 | } -------------------------------------------------------------------------------- /msrpaazure/Storage/Blobs/BlobStorageConfig.cs: -------------------------------------------------------------------------------- 1 | namespace msrpaazure 2 | { 3 | public class BlobStorageConfig 4 | { 5 | public string AccountName { get; set; } 6 | public string Key { get; set; } 7 | public string ContainerName { get; set; } 8 | public string FacetsFilteringContainerName { get; set; } 9 | public string UploadContainerName { get; set; } 10 | 11 | public BlobStorageConfig Copy() 12 | { 13 | return new BlobStorageConfig() { 14 | AccountName = this.AccountName, Key = this.Key, 15 | ContainerName = this.ContainerName, 16 | FacetsFilteringContainerName = this.FacetsFilteringContainerName, 17 | UploadContainerName = this.UploadContainerName}; 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /msrpaazure/Storage/Blobs/BlobStorageDirectory.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace msrpaazure 4 | { 5 | public class BlobStorageDirectory 6 | { 7 | public BlobStorageDirectory() 8 | { 9 | SubDirectories = new List(); 10 | BlobNames = new List(); 11 | } 12 | 13 | public string Name { get; set; } 14 | public List SubDirectories { get; set; } 15 | public List BlobNames { get; set; } 16 | } 17 | } -------------------------------------------------------------------------------- /msrpaazure/msrpaazure.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp2.2 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /msrpaazure/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaazure/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /msrpaazure/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaazure/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /msrpaazure/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaazure/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /msrpaazure/obj/Debug/netcoreapp2.2/msrpaazure.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("msrpaazure")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("msrpaazure")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("msrpaazure")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /msrpaazure/obj/Debug/netcoreapp2.2/msrpaazure.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 3638b6943e615fb0ff0b83fe753dfaaa175fb945 2 | -------------------------------------------------------------------------------- /msrpaazure/obj/Debug/netcoreapp2.2/msrpaazure.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaazure/obj/Debug/netcoreapp2.2/msrpaazure.assets.cache -------------------------------------------------------------------------------- /msrpaazure/obj/Debug/netcoreapp2.2/msrpaazure.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | c8d8a6c98b3652e2240fdf18db63782a58206f4e 2 | -------------------------------------------------------------------------------- /msrpaazure/obj/Debug/netcoreapp2.2/msrpaazure.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaazure/obj/Debug/netcoreapp2.2/msrpaazure.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /msrpaazure/obj/msrpaazure.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "fMA7+0sjbY0gBhfaZ/TL72jL9nzydtgVuxuomH4h9x3XJvQZys++egOzEs1xuXcmVLprAz4In7dyuUxDnsXjYA==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /msrpaazure/obj/msrpaazure.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /msrpabo/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /msrpabo/msrpabo.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | netcoreapp2.1 4 | v2 5 | msrpabo 6 | msrpabo 7 | 8 | 9 | 10 | 11 | 12 | 13 | PreserveNewest 14 | 15 | 16 | PreserveNewest 17 | Never 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /msrpacdbskill/FormDoc.cs: -------------------------------------------------------------------------------- 1 | using Newtonsoft.Json; 2 | using System.Collections.Generic; 3 | 4 | namespace msrpacdbskill 5 | { 6 | public class FormDoc 7 | { 8 | [JsonProperty(PropertyName = "id")] 9 | public string Id { get; set; } 10 | public string FormName { get; set; } 11 | public string FormType { get; set; } 12 | public string CreatedDate { get; set; } 13 | public string KeyValue { get; set; } 14 | public bool IsProcessed { get; set; } 15 | public List PageData { get;set;} 16 | } 17 | 18 | public class PageData 19 | { 20 | public Dictionary FormEntities { get; set; } 21 | public string PageNumber { get; set; } 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /msrpacdbskill/FormEntity.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.WindowsAzure.Storage.Table; 2 | using System; 3 | 4 | namespace msrpacdbskill 5 | { 6 | public class FormEntity : TableEntity 7 | { 8 | public FormEntity(string partitionKey, string rowKey) 9 | { 10 | this.PartitionKey = partitionKey; 11 | this.RowKey = rowKey; 12 | } 13 | 14 | public FormEntity() { } 15 | 16 | public string Key { get; set; } 17 | 18 | public string Value { get; set; } 19 | 20 | public Int32 IsProcessed { get; set; } 21 | 22 | public string Page { get; set; } 23 | 24 | public string FormType { get; set; } 25 | 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /msrpacdbskill/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /msrpaluiskill/FormEntity.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.WindowsAzure.Storage.Table; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Text; 5 | 6 | namespace msrpaluiskill 7 | { 8 | public class FormEntity : TableEntity 9 | { 10 | public FormEntity(string partitionKey, string rowKey) 11 | { 12 | this.PartitionKey = partitionKey; 13 | this.RowKey = rowKey; 14 | } 15 | 16 | public FormEntity() { } 17 | 18 | public string Key { get; set; } 19 | 20 | public string Value { get; set; } 21 | 22 | public Int32 IsProcessed { get; set; } 23 | 24 | public string Page { get; set; } 25 | 26 | public string FormType { get; set; } 27 | 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /msrpaluiskill/ModelEntity.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.WindowsAzure.Storage.Table; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Text; 5 | 6 | namespace msrpaluiskill 7 | { 8 | public class ModelEntity : TableEntity 9 | { 10 | public ModelEntity(string partitionKey, string rowKey) 11 | { 12 | this.PartitionKey = partitionKey; 13 | this.RowKey = rowKey; 14 | } 15 | 16 | public ModelEntity() { } 17 | 18 | public string SubscriptionKey { get; set; } 19 | 20 | public string ModelId { get; set; } 21 | 22 | public Boolean IsActive { get; set; } 23 | 24 | public string Page { get; set; } 25 | 26 | public string EndPoint { get; set; } 27 | 28 | public Int32 StartIndex { get; set; } 29 | 30 | public Int32 EndIndex { get; set; } 31 | public string ModelName { get; set; } 32 | 33 | public string ImageContainerName { get; set; } 34 | public string ComputerVisionKey { get; set; } 35 | public string ComputerVisionUri { get; set; } 36 | 37 | 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /msrpaluiskill/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- 1 |  2 | 5 | 6 | 7 | FileSystem 8 | Release 9 | Any CPU 10 | netcoreapp2.1 11 | bin\Debug\netcoreapp2.1\publish\ 12 | 13 | -------------------------------------------------------------------------------- /msrpaluiskill/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /msrpaluiskill/msrpaluiskill.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | netcoreapp2.1 4 | v2 5 | msrpaluiskill 6 | msrpaluiskill 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | PreserveNewest 15 | 16 | 17 | PreserveNewest 18 | Never 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /msrpaolay/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace msrpaolay 4 | { 5 | class Program 6 | { 7 | static void Main(string[] args) 8 | { 9 | var storageConnectionString = "DefaultEndpointsProtocol=https;AccountName=formsmvpsa;AccountKey=4FLrdxzbI7MDgjn9TdLSYjiDI7ZGHQsh4WU/28D20szF4QdjuxUqAsivE4T1S9yZNIiH5j6LJHkHMstvpQehWg==;EndpointSuffix=core.windows.net"; 10 | var sourceContainer = "processforms"; 11 | 12 | OverlayHelper.ProcessFiles(storageConnectionString, sourceContainer); 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /msrpaolay/bin/Debug/netcoreapp2.2/Microsoft.WindowsAzure.Storage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolay/bin/Debug/netcoreapp2.2/Microsoft.WindowsAzure.Storage.dll -------------------------------------------------------------------------------- /msrpaolay/bin/Debug/netcoreapp2.2/Microsoft.WindowsAzure.Storage.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolay/bin/Debug/netcoreapp2.2/Microsoft.WindowsAzure.Storage.pdb -------------------------------------------------------------------------------- /msrpaolay/bin/Debug/netcoreapp2.2/msrpaolay.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolay/bin/Debug/netcoreapp2.2/msrpaolay.dll -------------------------------------------------------------------------------- /msrpaolay/bin/Debug/netcoreapp2.2/msrpaolay.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolay/bin/Debug/netcoreapp2.2/msrpaolay.pdb -------------------------------------------------------------------------------- /msrpaolay/bin/Debug/netcoreapp2.2/msrpaolay.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\astalati\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\astalati\\.nuget\\packages", 6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /msrpaolay/bin/Debug/netcoreapp2.2/msrpaolay.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp2.2", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "2.2.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /msrpaolay/bin/Debug/netcoreapp2.2/output.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolay/bin/Debug/netcoreapp2.2/output.pdf -------------------------------------------------------------------------------- /msrpaolay/msrpaolay.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | netcoreapp2.2 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | ..\..\..\..\Program Files\dotnet\sdk\NuGetFallbackFolder\windowsazure.storage\8.1.4\lib\netstandard1.3\Microsoft.WindowsAzure.Storage.dll 16 | 17 | 18 | ..\..\..\..\Program Files\dotnet\sdk\NuGetFallbackFolder\newtonsoft.json\11.0.2\lib\netstandard2.0\Newtonsoft.Json.dll 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /msrpaolay/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolay/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /msrpaolay/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolay/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /msrpaolay/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolay/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /msrpaolay/obj/Debug/netcoreapp2.2/msrpaolay.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("msrpaolay")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("msrpaolay")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("msrpaolay")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /msrpaolay/obj/Debug/netcoreapp2.2/msrpaolay.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 01e2a00ef2809b576a3886899e61dbaca2aed644 2 | -------------------------------------------------------------------------------- /msrpaolay/obj/Debug/netcoreapp2.2/msrpaolay.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolay/obj/Debug/netcoreapp2.2/msrpaolay.assets.cache -------------------------------------------------------------------------------- /msrpaolay/obj/Debug/netcoreapp2.2/msrpaolay.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolay/obj/Debug/netcoreapp2.2/msrpaolay.csproj.CopyComplete -------------------------------------------------------------------------------- /msrpaolay/obj/Debug/netcoreapp2.2/msrpaolay.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | bdcc403a70cfeb0ee7ba4cd8bc1ae23651bd5a94 2 | -------------------------------------------------------------------------------- /msrpaolay/obj/Debug/netcoreapp2.2/msrpaolay.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolay/obj/Debug/netcoreapp2.2/msrpaolay.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /msrpaolay/obj/Debug/netcoreapp2.2/msrpaolay.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolay/obj/Debug/netcoreapp2.2/msrpaolay.dll -------------------------------------------------------------------------------- /msrpaolay/obj/Debug/netcoreapp2.2/msrpaolay.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolay/obj/Debug/netcoreapp2.2/msrpaolay.pdb -------------------------------------------------------------------------------- /msrpaolay/obj/msrpaolay.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "40pr3fNlbothNe57IbpmSNXdJs2OLtq5G+VT1qOb2/wqbtXfNI06SI+I2yjR3whhzXKOqpyWTlLxx3pE7K0vxg==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /msrpaolay/obj/msrpaolay.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /msrpaolayaf/PdfOverlay.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Microsoft.Azure.WebJobs; 3 | using Microsoft.Extensions.Logging; 4 | 5 | namespace msrpaolayaf 6 | { 7 | public static class PdfOverlay 8 | { 9 | [FunctionName("PdfOverlay")] 10 | public static void Run([TimerTrigger("0 */5 * * * *")]TimerInfo myTimer, ILogger log) 11 | { 12 | object _locker = new object(); 13 | 14 | var storageConnectionString = Environment.GetEnvironmentVariable("StorageContainerString"); 15 | var sourceContainer = Environment.GetEnvironmentVariable("SourceContainer"); 16 | 17 | lock (_locker) 18 | { 19 | OverlayHelper.ProcessFiles(storageConnectionString, sourceContainer); 20 | log.LogInformation($"Completed"); 21 | } 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/PdfOverlay/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "generatedBy": "Microsoft.NET.Sdk.Functions-1.0.29", 3 | "configurationSource": "attributes", 4 | "bindings": [ 5 | { 6 | "type": "timerTrigger", 7 | "schedule": "0 */5 * * * *", 8 | "useMonitor": true, 9 | "runOnStartup": false, 10 | "name": "myTimer" 11 | } 12 | ], 13 | "disabled": false, 14 | "scriptFile": "../bin/msrpaolayaf.dll", 15 | "entryPoint": "msrpaolayaf.PdfOverlay.Run" 16 | } -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Magick.NET-Q16-AnyCPU.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Magick.NET-Q16-AnyCPU.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.Authentication.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.Authentication.Abstractions.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.Authentication.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.Authentication.Core.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.Authorization.Policy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.Authorization.Policy.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.Authorization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.Authorization.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.Hosting.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.Hosting.Abstractions.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.Http.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.Http.Abstractions.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.Http.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.Http.Extensions.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.Http.Features.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.Http.Features.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.Http.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.JsonPatch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.JsonPatch.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.Mvc.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.Mvc.Abstractions.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.Mvc.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.Mvc.Core.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.Mvc.Formatters.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.Mvc.Formatters.Json.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.Mvc.WebApiCompatShim.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.Mvc.WebApiCompatShim.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.Routing.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.Routing.Abstractions.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.Routing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.Routing.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.WebUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.AspNetCore.WebUtilities.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Azure.WebJobs.Extensions.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Azure.WebJobs.Extensions.Http.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Azure.WebJobs.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Azure.WebJobs.Extensions.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Azure.WebJobs.Host.Storage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Azure.WebJobs.Host.Storage.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Azure.WebJobs.Host.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Azure.WebJobs.Host.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Azure.WebJobs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Azure.WebJobs.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Build.Framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Build.Framework.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Build.Utilities.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Build.Utilities.Core.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.DotNet.PlatformAbstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.DotNet.PlatformAbstractions.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.Configuration.Binder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.Configuration.Binder.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.Configuration.EnvironmentVariables.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.Configuration.EnvironmentVariables.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.Configuration.FileExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.Configuration.FileExtensions.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.Configuration.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.Configuration.Json.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.DependencyModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.DependencyModel.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.FileProviders.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.FileProviders.Abstractions.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.FileProviders.Physical.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.FileProviders.Physical.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.FileSystemGlobbing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.FileSystemGlobbing.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.Hosting.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.Hosting.Abstractions.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.Hosting.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.Logging.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.Logging.Configuration.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.ObjectPool.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.ObjectPool.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.Options.ConfigurationExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.Options.ConfigurationExtensions.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Net.Http.Headers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.Net.Http.Headers.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.WindowsAzure.Storage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Microsoft.WindowsAzure.Storage.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/NCrontab.Signed.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/NCrontab.Signed.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Newtonsoft.Json.Bson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Newtonsoft.Json.Bson.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/System.Text.Encodings.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/System.Text.Encodings.Web.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions":[ 3 | ] 4 | } -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/msrpaolayaf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/msrpaolayaf.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/msrpaolayaf.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/msrpaolayaf.pdb -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/runtimes/linux-x64/native/Magick.Native-Q16-x64.dll.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/runtimes/linux-x64/native/Magick.Native-Q16-x64.dll.so -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/runtimes/osx-x64/native/Magick.Native-Q16-x64.dll.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/runtimes/osx-x64/native/Magick.Native-Q16-x64.dll.dylib -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/runtimes/win-x64/native/Magick.Native-Q16-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/runtimes/win-x64/native/Magick.Native-Q16-x64.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/runtimes/win-x86/native/Magick.Native-Q16-x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/runtimes/win-x86/native/Magick.Native-Q16-x86.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/bin/runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/bin/Debug/netcoreapp2.1/bin/runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /msrpaolayaf/bin/Debug/netcoreapp2.1/local.settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "IsEncrypted": false, 3 | "Values": { 4 | "AzureWebJobsStorage": "UseDevelopmentStorage=true", 5 | "FUNCTIONS_WORKER_RUNTIME": "dotnet" 6 | } 7 | } -------------------------------------------------------------------------------- /msrpaolayaf/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /msrpaolayaf/local.settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "IsEncrypted": false, 3 | "Values": { 4 | "AzureWebJobsStorage": "UseDevelopmentStorage=true", 5 | "FUNCTIONS_WORKER_RUNTIME": "dotnet", 6 | "StorageContainerString": "DefaultEndpointsProtocol=https;AccountName=formsmvpsa;AccountKey=4FLrdxzbI7MDgjn9TdLSYjiDI7ZGHQsh4WU/28D20szF4QdjuxUqAsivE4T1S9yZNIiH5j6LJHkHMstvpQehWg==;EndpointSuffix=core.windows.net", 7 | "SourceContainer" : "processforms" 8 | 9 | } 10 | } -------------------------------------------------------------------------------- /msrpaolayaf/msrpaolayaf.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | netcoreapp2.1 4 | v2 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | PreserveNewest 13 | 14 | 15 | PreserveNewest 16 | Never 17 | 18 | 19 | -------------------------------------------------------------------------------- /msrpaolayaf/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /msrpaolayaf/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /msrpaolayaf/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /msrpaolayaf/obj/Debug/netcoreapp2.1/msrpaolayaf.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("msrpaolayaf")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("msrpaolayaf")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("msrpaolayaf")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /msrpaolayaf/obj/Debug/netcoreapp2.1/msrpaolayaf.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 3a1d2e0fff34f2a740afe8cb509663f4e24939b9 2 | -------------------------------------------------------------------------------- /msrpaolayaf/obj/Debug/netcoreapp2.1/msrpaolayaf.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/obj/Debug/netcoreapp2.1/msrpaolayaf.assets.cache -------------------------------------------------------------------------------- /msrpaolayaf/obj/Debug/netcoreapp2.1/msrpaolayaf.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/obj/Debug/netcoreapp2.1/msrpaolayaf.csproj.CopyComplete -------------------------------------------------------------------------------- /msrpaolayaf/obj/Debug/netcoreapp2.1/msrpaolayaf.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | d9e51bae88ecd2a3c78020684971fa03a7f2afe9 2 | -------------------------------------------------------------------------------- /msrpaolayaf/obj/Debug/netcoreapp2.1/msrpaolayaf.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/obj/Debug/netcoreapp2.1/msrpaolayaf.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /msrpaolayaf/obj/Debug/netcoreapp2.1/msrpaolayaf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/obj/Debug/netcoreapp2.1/msrpaolayaf.dll -------------------------------------------------------------------------------- /msrpaolayaf/obj/Debug/netcoreapp2.1/msrpaolayaf.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaolayaf/obj/Debug/netcoreapp2.1/msrpaolayaf.pdb -------------------------------------------------------------------------------- /msrpaolayaf/obj/msrpaolayaf.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "wWF606la8Mmh5MyXzDgMZduMu5w0nS6xvV40ei3lkvkv9/xl6dG2OKCS8p5uBGUp6+jHe4M42O6WvYOwonF8tg==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /msrpapdf/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /msrpaui/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. All rights reserved. 2 | // Licensed under the MIT License. 3 | 4 | using System; 5 | 6 | namespace msrpaui 7 | { 8 | public class ErrorViewModel 9 | { 10 | public string RequestId { get; set; } 11 | 12 | public bool ShowRequestId => !string.IsNullOrEmpty(RequestId); 13 | } 14 | } -------------------------------------------------------------------------------- /msrpaui/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.IO; 4 | using System.Linq; 5 | using System.Threading.Tasks; 6 | using Microsoft.AspNetCore; 7 | using Microsoft.AspNetCore.Hosting; 8 | using Microsoft.Extensions.Configuration; 9 | using Microsoft.Extensions.Logging; 10 | 11 | namespace msrpaui 12 | { 13 | public class Program 14 | { 15 | public static void Main(string[] args) 16 | { 17 | BuildWebHost(args).Run(); 18 | } 19 | 20 | public static IWebHost BuildWebHost(string[] args) => 21 | WebHost.CreateDefaultBuilder(args) 22 | .UseStartup() 23 | .Build(); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /msrpaui/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | FileSystem 9 | FileSystem 10 | Release 11 | Any CPU 12 | 13 | True 14 | False 15 | 52a11824-512b-4522-9ed3-979b4700104e 16 | bin\Release\netcoreapp2.0\publish\ 17 | False 18 | 19 | -------------------------------------------------------------------------------- /msrpaui/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "iisSettings": { 3 | "windowsAuthentication": false, 4 | "anonymousAuthentication": true, 5 | "iisExpress": { 6 | "applicationUrl": "http://localhost:53095/", 7 | "sslPort": 0 8 | } 9 | }, 10 | "profiles": { 11 | "IIS Express": { 12 | "commandName": "IISExpress", 13 | "launchBrowser": true, 14 | "environmentVariables": { 15 | "ASPNETCORE_ENVIRONMENT": "Development" 16 | } 17 | }, 18 | "msrpaui": { 19 | "commandName": "Project", 20 | "launchBrowser": true, 21 | "environmentVariables": { 22 | "ASPNETCORE_ENVIRONMENT": "Development" 23 | }, 24 | "applicationUrl": "http://localhost:53096/" 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /msrpaui/Search/DocumentResult.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. All rights reserved. 2 | // Licensed under the MIT License. 3 | 4 | using Microsoft.Azure.Search.Models; 5 | using System; 6 | using System.Collections.Generic; 7 | using System.Linq; 8 | using System.Threading.Tasks; 9 | 10 | namespace msrpaui 11 | { 12 | public class DocumentResult 13 | { 14 | public List Facets { get; set; } 15 | public Document Result { get; set; } 16 | public IList> Results { get; set; } 17 | public int? Count { get; set; } 18 | public string Token { get; set; } 19 | public List Tags { get; set; } 20 | public string SearchId { get; set; } 21 | public string IdField { get; set; } 22 | public bool IsPathBase64Encoded { get; set; } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /msrpaui/Search/SearchFacet.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. All rights reserved. 2 | // Licensed under the MIT License. 3 | 4 | namespace msrpaui 5 | { 6 | public class SearchFacet 7 | { 8 | public string Key { get; set; } 9 | public string[] Value { get; set; } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /msrpaui/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @model ErrorViewModel 2 | @{ 3 | ViewData["Title"] = "Error"; 4 | } 5 | 6 |

Error.

7 |

An error occurred while processing your request.

8 | 9 | @if (Model.ShowRequestId) 10 | { 11 |

12 | Request ID: @Model.RequestId 13 |

14 | } 15 | 16 |

Development Mode

17 |

18 | Swapping to Development environment will display more detailed information about the error that occurred. 19 |

20 |

21 | Development environment should not be enabled in deployed applications, as it can result in sensitive information from exceptions being displayed to end users. For local debugging, development environment can be enabled by setting the ASPNETCORE_ENVIRONMENT environment variable to Development, and restarting the application. 22 |

23 | -------------------------------------------------------------------------------- /msrpaui/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 18 | 19 | -------------------------------------------------------------------------------- /msrpaui/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using msrpaui 2 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 3 | -------------------------------------------------------------------------------- /msrpaui/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /msrpaui/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "IncludeScopes": false, 4 | "LogLevel": { 5 | "Default": "Debug", 6 | "System": "Information", 7 | "Microsoft": "Information" 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /msrpaui/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "IncludeScopes": false, 4 | "LogLevel": { 5 | "Default": "Warning" 6 | } 7 | }, 8 | 9 | "SearchServiceName": "", 10 | "SearchApiKey": "", 11 | "SearchServiceApiVersion": "2019-05-06", 12 | "InstrumentationKey": "", 13 | "SearchIndexName": "processformsidx", 14 | "StorageAccountName": "", 15 | "StorageAccountKey": "", 16 | "StorageContainerAddress": "https://.blob.core.windows.net/processforms", 17 | "KeyField": "id", 18 | "IsPathBase64Encoded": true, 19 | "GraphFacet": "keyPhrases" 20 | } -------------------------------------------------------------------------------- /msrpaui/bundleconfig.json: -------------------------------------------------------------------------------- 1 | // Configure bundling and minification for the project. 2 | // More info at https://go.microsoft.com/fwlink/?LinkId=808241 3 | [ 4 | { 5 | "outputFileName": "wwwroot/css/site.min.css", 6 | // An array of relative input file paths. Globbing patterns supported 7 | "inputFiles": [ 8 | "wwwroot/css/site.css" 9 | ] 10 | }, 11 | { 12 | "outputFileName": "wwwroot/js/site.min.js", 13 | "inputFiles": [ 14 | "wwwroot/js/site.js" 15 | ], 16 | // Optionally specify minification options 17 | "minify": { 18 | "enabled": true, 19 | "renameLocals": true 20 | }, 21 | // Optionally generate .map file 22 | "sourceMap": false 23 | } 24 | ] 25 | -------------------------------------------------------------------------------- /msrpaui/msrpaui.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | netcoreapp2.0 5 | 28a56539-aa39-40c3-ba32-2c482252f2ec 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /msrpaui/obj/Debug/netcoreapp2.0/msrpaui.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("msrpaui")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("msrpaui")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("msrpaui")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /msrpaui/obj/Debug/netcoreapp2.0/msrpaui.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 580a755400ae226f72363acf46edc9d489fa45bc 2 | -------------------------------------------------------------------------------- /msrpaui/obj/Debug/netcoreapp2.0/msrpaui.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaui/obj/Debug/netcoreapp2.0/msrpaui.assets.cache -------------------------------------------------------------------------------- /msrpaui/obj/Debug/netcoreapp2.0/msrpaui.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 809a306c13cb165f1c441d3c05d11aa0eb510ec7 2 | -------------------------------------------------------------------------------- /msrpaui/obj/Debug/netcoreapp2.0/msrpaui.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaui/obj/Debug/netcoreapp2.0/msrpaui.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /msrpaui/obj/msrpaui.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "Wqsj0tLnIKsbKgMGn817hApwocDplfORE2ens85ZPU70lNddkmPdQjqO2/nnGplKsU1GL/C82i1J0rRKwxQyWg==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /msrpaui/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- 1 | body{padding-top:50px;padding-bottom:20px}.body-content{padding-left:15px;padding-right:15px}.carousel-caption p{font-size:20px;line-height:1.4}.carousel-inner .item img[src$=".svg"]{width:100%}#qrCode{margin:15px}@media screen and (max-width:767px){.carousel-caption{display:none}} -------------------------------------------------------------------------------- /msrpaui/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaui/wwwroot/favicon.ico -------------------------------------------------------------------------------- /msrpaui/wwwroot/images/JumboBackground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaui/wwwroot/images/JumboBackground.jpg -------------------------------------------------------------------------------- /msrpaui/wwwroot/images/Microsoft-logo_rgb_c-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaui/wwwroot/images/Microsoft-logo_rgb_c-gray.png -------------------------------------------------------------------------------- /msrpaui/wwwroot/images/ReachNewHeights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaui/wwwroot/images/ReachNewHeights.png -------------------------------------------------------------------------------- /msrpaui/wwwroot/images/Video1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaui/wwwroot/images/Video1.PNG -------------------------------------------------------------------------------- /msrpaui/wwwroot/images/Video2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaui/wwwroot/images/Video2.PNG -------------------------------------------------------------------------------- /msrpaui/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | function InitLayout(){isGridInitialized===!0&&$grid.masonry("destroy");$grid.masonry({itemSelector:".results-div",columnWidth:".results-sizer"});$grid.imagesLoaded().progress(function(){$grid.masonry("layout")});isGridInitialized=!0}function FabricInit(){for(var t=document.querySelectorAll(".ms-CheckBox"),n=0;n").text(n).html()}function htmlDecode(n){return $("
").html(n).text()}for(var SearchBoxElements,isGridInitialized,$grid,SpinnerElements=document.querySelectorAll(".ms-Spinner"),i=0;i" 10 | ], 11 | "description": "Form validation made easy", 12 | "main": "dist/jquery.validate.js", 13 | "keywords": [ 14 | "forms", 15 | "validation", 16 | "validate" 17 | ], 18 | "license": "MIT", 19 | "ignore": [ 20 | "**/.*", 21 | "node_modules", 22 | "bower_components", 23 | "test", 24 | "demo", 25 | "lib" 26 | ], 27 | "dependencies": { 28 | "jquery": ">= 1.7.2" 29 | }, 30 | "version": "1.14.0", 31 | "_release": "1.14.0", 32 | "_resolution": { 33 | "type": "version", 34 | "tag": "1.14.0", 35 | "commit": "c1343fb9823392aa9acbe1c3ffd337b8c92fed48" 36 | }, 37 | "_source": "git://github.com/jzaefferer/jquery-validation.git", 38 | "_target": ">=1.8", 39 | "_originalSource": "jquery-validation" 40 | } -------------------------------------------------------------------------------- /msrpaui/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | ===================== 3 | 4 | Copyright Jörn Zaefferer 5 | 6 | Permission is hereby granted, free of charge, to any person obtaining a copy 7 | of this software and associated documentation files (the "Software"), to deal 8 | in the Software without restriction, including without limitation the rights 9 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | copies of the Software, and to permit persons to whom the Software is 11 | furnished to do so, subject to the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be included in 14 | all copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22 | THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /msrpaui/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jquery", 3 | "main": "dist/jquery.js", 4 | "license": "MIT", 5 | "ignore": [ 6 | "package.json" 7 | ], 8 | "keywords": [ 9 | "jquery", 10 | "javascript", 11 | "browser", 12 | "library" 13 | ], 14 | "homepage": "https://github.com/jquery/jquery-dist", 15 | "version": "2.2.0", 16 | "_release": "2.2.0", 17 | "_resolution": { 18 | "type": "version", 19 | "tag": "2.2.0", 20 | "commit": "6fc01e29bdad0964f62ef56d01297039cdcadbe5" 21 | }, 22 | "_source": "git://github.com/jquery/jquery-dist.git", 23 | "_target": "2.2.0", 24 | "_originalSource": "jquery" 25 | } -------------------------------------------------------------------------------- /msrpaweb/AppInsightsConfig.cs: -------------------------------------------------------------------------------- 1 | namespace msrpaweb 2 | { 3 | public class AppInsightsConfig 4 | { 5 | public string InstrumentationKey { get; set; } 6 | } 7 | } -------------------------------------------------------------------------------- /msrpaweb/Configuration/ApiConfig.cs: -------------------------------------------------------------------------------- 1 | namespace msrpaweb 2 | { 3 | public class ApiConfig 4 | { 5 | //public string Protocol { get; set; } = "https"; 6 | public string BaseUrl { get; set; } 7 | public string Url => 8 | BaseUrl.EndsWith("/") 9 | ? $"{BaseUrl}api" 10 | : $"{BaseUrl}/api"; 11 | } 12 | } -------------------------------------------------------------------------------- /msrpaweb/Configuration/AppConfig.cs: -------------------------------------------------------------------------------- 1 | namespace msrpaweb 2 | { 3 | public class AppConfig 4 | { 5 | public ApiConfig ApiConfig { get; set; } 6 | public AppInsightsConfig AppInsights { get; set; } 7 | public OrganizationConfig Organization { get; set; } 8 | 9 | public bool Customizable { get; set; } 10 | } 11 | } -------------------------------------------------------------------------------- /msrpaweb/Configuration/OrganizationConfig.cs: -------------------------------------------------------------------------------- 1 | namespace msrpaweb 2 | { 3 | public class OrganizationConfig 4 | { 5 | public string Name { get; set; } 6 | public string Url { get; set; } 7 | public string Logo { get; set; } 8 | } 9 | } -------------------------------------------------------------------------------- /msrpaweb/Controllers/HomeController.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Mvc; 2 | using System.Diagnostics; 3 | 4 | namespace msrpaweb 5 | { 6 | public class HomeController : Controller 7 | { 8 | private readonly AppConfig _appConfig; 9 | 10 | public HomeController(AppConfig appConfig) 11 | { 12 | _appConfig = appConfig; 13 | } 14 | 15 | public IActionResult Index() 16 | { 17 | return View(); 18 | } 19 | 20 | public IActionResult About() 21 | { 22 | return View(); 23 | } 24 | 25 | public IActionResult Privacy() 26 | { 27 | return View(); 28 | } 29 | 30 | [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)] 31 | public IActionResult Error() 32 | { 33 | return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier }); 34 | } 35 | 36 | [HttpGet] 37 | public IActionResult UseOfDatasets() 38 | { 39 | return View(); 40 | } 41 | } 42 | } -------------------------------------------------------------------------------- /msrpaweb/Controllers/ReportsController.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Mvc; 2 | 3 | namespace msrpaweb 4 | { 5 | public class ReportsController : Controller 6 | { 7 | public IActionResult Index() 8 | { 9 | return View(); 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /msrpaweb/Controllers/SearchController.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Mvc; 2 | 3 | namespace msrpaweb 4 | { 5 | [Route("[controller]")] 6 | public class SearchController : Controller 7 | { 8 | private readonly AppConfig _appConfig; 9 | 10 | public SearchController(AppConfig appConfig) 11 | { 12 | _appConfig = appConfig; 13 | } 14 | 15 | [HttpGet] 16 | [HttpPost] 17 | public IActionResult Search(string query) 18 | { 19 | if (string.IsNullOrEmpty(query)) 20 | { 21 | query = ""; 22 | } 23 | 24 | var viewModel = new SearchViewModel 25 | { 26 | AppConfig = _appConfig, 27 | Query = query, 28 | SearchId = string.Empty 29 | }; 30 | 31 | return View(viewModel); 32 | } 33 | 34 | [HttpGet("results/{view}")] 35 | public IActionResult GetResultsListView(string view) 36 | { 37 | var partialView = view == "entitymap" 38 | ? "_EntityMap" 39 | : "_SearchResults"; 40 | 41 | return PartialView(partialView); 42 | } 43 | } 44 | } -------------------------------------------------------------------------------- /msrpaweb/Models/ColorSettings.cs: -------------------------------------------------------------------------------- 1 | namespace msrpaweb 2 | { 3 | public class ColorSettings 4 | { 5 | public string BackgroundColor { get; set; } = "#ffffff"; 6 | public string TextColor { get; set; } = "#000000"; 7 | } 8 | } -------------------------------------------------------------------------------- /msrpaweb/Models/CustomizeViewModel.cs: -------------------------------------------------------------------------------- 1 | namespace msrpaweb 2 | { 3 | public class CustomizeViewModel 4 | { 5 | public ColorSettings NavBar { get; set; } 6 | public ColorSettings Footer { get; set; } 7 | } 8 | } -------------------------------------------------------------------------------- /msrpaweb/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace msrpaweb 4 | { 5 | public class ErrorViewModel 6 | { 7 | public string RequestId { get; set; } 8 | 9 | public bool ShowRequestId => !string.IsNullOrEmpty(RequestId); 10 | } 11 | } -------------------------------------------------------------------------------- /msrpaweb/Models/SearchViewModel.cs: -------------------------------------------------------------------------------- 1 | namespace msrpaweb 2 | { 3 | public class SearchViewModel 4 | { 5 | public string Query { get; set; } 6 | public string SearchId { get; set; } 7 | public string[] SearchFacets { get; set; } 8 | public AppConfig AppConfig { get; set; } 9 | } 10 | } -------------------------------------------------------------------------------- /msrpaweb/Program.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore; 2 | using Microsoft.AspNetCore.Hosting; 3 | using Microsoft.Extensions.Configuration; 4 | 5 | namespace msrpaweb 6 | { 7 | public class Program 8 | { 9 | public static void Main(string[] args) 10 | { 11 | CreateWebHostBuilder(args).Build().Run(); 12 | } 13 | 14 | public static IWebHostBuilder CreateWebHostBuilder(string[] args) => 15 | WebHost.CreateDefaultBuilder(args) 16 | .ConfigureAppConfiguration((context, config) => 17 | { 18 | var buildConfig = config.Build(); 19 | config.AddEnvironmentVariables(); 20 | }) 21 | .UseStartup(); 22 | } 23 | } -------------------------------------------------------------------------------- /msrpaweb/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | FileSystem 9 | FileSystem 10 | Release 11 | Any CPU 12 | 13 | True 14 | False 15 | f8381137-6519-42a8-9993-97befb26958e 16 | bin\Release\netcoreapp2.2\publish\ 17 | False 18 | 19 | -------------------------------------------------------------------------------- /msrpaweb/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "iisSettings": { 3 | "windowsAuthentication": false, 4 | "anonymousAuthentication": true, 5 | "iisExpress": { 6 | "applicationUrl": "http://localhost:57252/", 7 | "sslPort": 0 8 | } 9 | }, 10 | "profiles": { 11 | "IIS Express": { 12 | "commandName": "IISExpress", 13 | "launchBrowser": true, 14 | "environmentVariables": { 15 | "ASPNETCORE_ENVIRONMENT": "Development" 16 | } 17 | }, 18 | "CognitiveSearch.Web": { 19 | "commandName": "Project", 20 | "launchBrowser": true, 21 | "environmentVariables": { 22 | "ASPNETCORE_ENVIRONMENT": "Development" 23 | }, 24 | "applicationUrl": "http://localhost:57256/" 25 | } 26 | } 27 | } -------------------------------------------------------------------------------- /msrpaweb/Views/Admin/NotAvailable.cshtml: -------------------------------------------------------------------------------- 1 |  2 | @{ 3 | ViewData["Title"] = "Functionality not available"; 4 | } 5 | 6 |
7 |

The functionality is not available in this deployment

8 | 9 |

10 | This is a shared deployment. Some functionalities including customization and uploading files are not available in this deployment. 11 |

12 |

13 | If you want to use this functionality, you can create it your own deployment. You can find the deployment script and instruction in 14 | the GitHub repo. 15 |

16 |
17 | -------------------------------------------------------------------------------- /msrpaweb/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Home Page"; 3 | } 4 | 5 |
6 | 7 | 8 | 17 | 22 | 23 |
9 |
10 | 11 |
12 |
13 | Search Now > 14 | 15 |
16 |
18 |
19 | 20 |
21 |
24 | 25 |
-------------------------------------------------------------------------------- /msrpaweb/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- 1 |  2 | @{ 3 | ViewData["Title"] = "Privacy"; 4 | } 5 | 6 | 7 |
8 |

Privacy

9 | 10 |

Please read Microsoft Privacy Statement here.

11 |
-------------------------------------------------------------------------------- /msrpaweb/Views/Home/UseOfDatasets.cshtml: -------------------------------------------------------------------------------- 1 |  2 | @{ 3 | ViewData["Title"] = "Use of Demo"; 4 | } 5 | 6 | 7 |
8 |

Notice

9 | 10 |

MICROSOFT PROVIDES THIS DEMO SOLUTION AND SAMPLE DATASETS ON AN “AS IS” BASIS. 11 | MICROSOFT MAKES NO WARRANTIES, EXPRESS OR IMPLIED, GUARANTEES OR CONDITIONS WITH RESPECT TO YOUR USE OF THE DATASETS. 12 | TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAW, MICROSOFT DISCLAIMS ALL LIABILITY FOR ANY DAMAGES OR LOSSES, INCLUDING DIRECT, CONSEQUENTIAL, SPECIAL, INDIRECT, INCIDENTAL OR PUNITIVE, RESULTING FROM YOUR USE OF THE DATASETS.

13 | 14 |

This dataset is provided under the original terms that Microsoft received source data. The dataset may include data sourced from Microsoft. See here for more information.

15 |
-------------------------------------------------------------------------------- /msrpaweb/Views/Search/Index.cshtml: -------------------------------------------------------------------------------- 1 | @model msrpaweb.AppConfig 2 | 3 | @{ 4 | ViewData["Title"] = "Index"; 5 | } 6 | 7 | @await Html.PartialAsync("_SideBar") 8 | 9 |
10 |
11 |
12 |

Cognitive Search...

13 |
14 |
15 |
16 |
17 |

Enter a search query on the left to begin exploring your data.

18 |
19 |
20 |
21 |
22 |
23 | 24 | -------------------------------------------------------------------------------- /msrpaweb/Views/Search/_FacetSettings.cshtml: -------------------------------------------------------------------------------- 1 |  19 | 20 | 21 | -------------------------------------------------------------------------------- /msrpaweb/Views/Search/_SearchEmpty.cshtml: -------------------------------------------------------------------------------- 1 | 
2 |
3 |

Enter a search query on the left to begin exploring your data.

4 |
5 |
-------------------------------------------------------------------------------- /msrpaweb/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @model ErrorViewModel 2 | @{ 3 | ViewData["Title"] = "Error"; 4 | } 5 | 6 |

Error.

7 |

An error occurred while processing your request.

8 | 9 | @if (Model.ShowRequestId) 10 | { 11 |

12 | Request ID: @Model.RequestId 13 |

14 | } 15 | 16 |

Development Mode

17 |

18 | Swapping to Development environment will display more detailed information about the error that occurred. 19 |

20 |

21 | The Development environment shouldn't be enabled for deployed applications. 22 | It can result in displaying sensitive information from exceptions to end users. 23 | For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development 24 | and restarting the app. 25 |

26 | -------------------------------------------------------------------------------- /msrpaweb/Views/Shared/_Architecture.cshtml: -------------------------------------------------------------------------------- 1 |  2 |
3 |

Explore your files using Cognitive Search with Azure Search

4 |
5 | 6 |
7 |

8 | To learn more, read 9 | 10 | What is "cognitive search" in Azure Search? 11 | 12 |

13 |

14 | You can view and download the source code from the 15 | Azure Cognitive Search starter project GitHub repo. 16 |

17 |

18 | Below is a basic architectural diagram that represents how cognitive search in Azure Search works: 19 |

20 |

21 | Cognitive search with Azure Search 22 |

23 | 24 |
-------------------------------------------------------------------------------- /msrpaweb/Views/Shared/_Footer.cshtml: -------------------------------------------------------------------------------- 1 | @using msrpaweb 2 | @inject OrganizationConfig OrgConfig 3 | 4 |
5 | 13 |
-------------------------------------------------------------------------------- /msrpaweb/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 18 | 19 | -------------------------------------------------------------------------------- /msrpaweb/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using msrpaweb 2 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 3 | @inject Microsoft.ApplicationInsights.AspNetCore.JavaScriptSnippet JavaScriptSnippet 4 | -------------------------------------------------------------------------------- /msrpaweb/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /msrpaweb/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Debug", 5 | "System": "Information", 6 | "Microsoft": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /msrpaweb/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Warning" 5 | } 6 | }, 7 | "AllowedHosts": "*", 8 | "APPINSIGHTS_INSTRUMENTATIONKEY": "", 9 | "ApiProtocol": "http", 10 | //"ApiUrl": "https://kmahc-webapi.azurewebsites.net", 11 | "ApiUrl": "http://localhost:57249", 12 | "OrganizationName": "Microsoft", 13 | "OrganizationWebSiteUrl": "https://www.microsoft.com", 14 | "OrganizationLogo": "Microsoft-Logo-PNG.png", 15 | "Customizable": "true" 16 | } -------------------------------------------------------------------------------- /msrpaweb/msrpaweb.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | netcoreapp2.2 5 | InProcess 6 | 2cc5bf4a-076c-439c-ba18-4b4fafa130e8 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /msrpaweb/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaweb/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /msrpaweb/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaweb/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /msrpaweb/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaweb/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /msrpaweb/obj/Debug/netcoreapp2.2/msrpaweb.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute("2cc5bf4a-076c-439c-ba18-4b4fafa130e8")] 15 | [assembly: System.Reflection.AssemblyCompanyAttribute("msrpaweb")] 16 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 17 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 18 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 19 | [assembly: System.Reflection.AssemblyProductAttribute("msrpaweb")] 20 | [assembly: System.Reflection.AssemblyTitleAttribute("msrpaweb")] 21 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 22 | 23 | // Generated by the MSBuild WriteCodeFragment class. 24 | 25 | -------------------------------------------------------------------------------- /msrpaweb/obj/Debug/netcoreapp2.2/msrpaweb.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 27d3113af9bae5f1b329f5daba52bcee20d8a7d5 2 | -------------------------------------------------------------------------------- /msrpaweb/obj/Debug/netcoreapp2.2/msrpaweb.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 16a4d79aac22c483bbadd750bdd28f5222a63b56 2 | -------------------------------------------------------------------------------- /msrpaweb/obj/Debug/netcoreapp2.2/msrpaweb.RazorAssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.RelatedAssemblyAttribute("msrpaweb.Views")] 15 | [assembly: Microsoft.AspNetCore.Razor.Hosting.RazorLanguageVersionAttribute("2.1")] 16 | [assembly: Microsoft.AspNetCore.Razor.Hosting.RazorConfigurationNameAttribute("MVC-2.1")] 17 | [assembly: Microsoft.AspNetCore.Razor.Hosting.RazorExtensionAssemblyNameAttribute("MVC-2.1", "Microsoft.AspNetCore.Mvc.Razor.Extensions")] 18 | 19 | // Generated by the MSBuild WriteCodeFragment class. 20 | 21 | -------------------------------------------------------------------------------- /msrpaweb/obj/Debug/netcoreapp2.2/msrpaweb.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaweb/obj/Debug/netcoreapp2.2/msrpaweb.assets.cache -------------------------------------------------------------------------------- /msrpaweb/obj/Debug/netcoreapp2.2/msrpaweb.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 80b0bfb675e05e418a0428ff1bc304996553e8c8 2 | -------------------------------------------------------------------------------- /msrpaweb/obj/Debug/netcoreapp2.2/msrpaweb.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaweb/obj/Debug/netcoreapp2.2/msrpaweb.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /msrpaweb/obj/msrpaweb.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "/S49axt2V3yCL5a0HzX4fdH1B232jp/hzXOYY9c8BBmFm4lamiblk/FM4LjFE9cVVybG07+o6SR/mmhPjz2h6w==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /msrpaweb/wwwroot/css/footer.css: -------------------------------------------------------------------------------- 1 | .footer-bg{background-color:#ffffff}.footer-text{color:#000000} -------------------------------------------------------------------------------- /msrpaweb/wwwroot/css/homepage.css: -------------------------------------------------------------------------------- 1 | #headlinehomepage::after{content: 'Empower your applications with Azure Cognitive Search';} -------------------------------------------------------------------------------- /msrpaweb/wwwroot/css/navbar.css: -------------------------------------------------------------------------------- 1 | .navbar-bg{background-color:#ffffff}.navbar-text{color:#000000} -------------------------------------------------------------------------------- /msrpaweb/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaweb/wwwroot/favicon.ico -------------------------------------------------------------------------------- /msrpaweb/wwwroot/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaweb/wwwroot/images/architecture.png -------------------------------------------------------------------------------- /msrpaweb/wwwroot/images/cogsearch-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaweb/wwwroot/images/cogsearch-architecture.png -------------------------------------------------------------------------------- /msrpaweb/wwwroot/images/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaweb/wwwroot/images/collapse.png -------------------------------------------------------------------------------- /msrpaweb/wwwroot/images/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaweb/wwwroot/images/expand.png -------------------------------------------------------------------------------- /msrpaweb/wwwroot/images/healthcare_launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaweb/wwwroot/images/healthcare_launcher_icon.png -------------------------------------------------------------------------------- /msrpaweb/wwwroot/images/homepageimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaweb/wwwroot/images/homepageimage.png -------------------------------------------------------------------------------- /msrpaweb/wwwroot/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaweb/wwwroot/images/logo.png -------------------------------------------------------------------------------- /msrpaweb/wwwroot/images/oilandgas_launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaweb/wwwroot/images/oilandgas_launcher_icon.png -------------------------------------------------------------------------------- /msrpaweb/wwwroot/images/retail_launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaweb/wwwroot/images/retail_launcher_icon.png -------------------------------------------------------------------------------- /msrpaweb/wwwroot/images/test-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpaweb/wwwroot/images/test-logo.png -------------------------------------------------------------------------------- /msrpaweb/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2011-2018 Twitter, Inc. 4 | Copyright (c) 2011-2018 The Bootstrap Authors 5 | 6 | Permission is hereby granted, free of charge, to any person obtaining a copy 7 | of this software and associated documentation files (the "Software"), to deal 8 | in the Software without restriction, including without limitation the rights 9 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | copies of the Software, and to permit persons to whom the Software is 11 | furnished to do so, subject to the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be included in 14 | all copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22 | THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /msrpaweb/wwwroot/lib/dropzone/dist/css/basic.min.css: -------------------------------------------------------------------------------- 1 | .dropzone,.dropzone *{box-sizing:border-box}.dropzone{position:relative}.dropzone .dz-preview{position:relative;display:inline-block;width:120px;margin:0.5em}.dropzone .dz-preview .dz-progress{display:block;height:15px;border:1px solid #aaa}.dropzone .dz-preview .dz-progress .dz-upload{display:block;height:100%;width:0;background:green}.dropzone .dz-preview .dz-error-message{color:red;display:none}.dropzone .dz-preview.dz-error .dz-error-message,.dropzone .dz-preview.dz-error .dz-error-mark{display:block}.dropzone .dz-preview.dz-success .dz-success-mark{display:block}.dropzone .dz-preview .dz-error-mark,.dropzone .dz-preview .dz-success-mark{position:absolute;display:none;left:30px;top:30px;width:54px;height:58px;left:50%;margin-left:-27px} 2 | -------------------------------------------------------------------------------- /msrpaweb/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) .NET Foundation. All rights reserved. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); you may not use 4 | these files except in compliance with the License. You may obtain a copy of the 5 | License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software distributed 10 | under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR 11 | CONDITIONS OF ANY KIND, either express or implied. See the License for the 12 | specific language governing permissions and limitations under the License. 13 | -------------------------------------------------------------------------------- /msrpaweb/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | ===================== 3 | 4 | Copyright Jörn Zaefferer 5 | 6 | Permission is hereby granted, free of charge, to any person obtaining a copy 7 | of this software and associated documentation files (the "Software"), to deal 8 | in the Software without restriction, including without limitation the rights 9 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | copies of the Software, and to permit persons to whom the Software is 11 | furnished to do so, subject to the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be included in 14 | all copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22 | THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /msrpawebapi/Controllers/GraphController.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Mvc; 2 | using msrpaazure; 3 | using System.Threading.Tasks; 4 | 5 | namespace msrpawebapi 6 | { 7 | [Produces("application/json")] 8 | [Route("api/[controller]")] 9 | [ApiController] 10 | public class GraphController : ControllerBase 11 | { 12 | private readonly SearchConfig _searchConfig; 13 | 14 | public GraphController(SearchConfig searchConfig) 15 | { 16 | _searchConfig = searchConfig; 17 | } 18 | 19 | [HttpGet] 20 | [HttpGet("{facet}")] 21 | public async Task Get(string facet, string query) 22 | { 23 | if (string.IsNullOrWhiteSpace(query)) 24 | { 25 | query = "*"; 26 | } 27 | 28 | if (string.IsNullOrWhiteSpace(facet)) 29 | { 30 | facet = "keyPhrases"; 31 | } 32 | 33 | var graphJson = await FacetGraphGenerator.GetGraphNodes(_searchConfig, query, facet); 34 | 35 | return new JsonResult(graphJson); 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /msrpawebapi/Models/ResetIndexerRequest.cs: -------------------------------------------------------------------------------- 1 | using Newtonsoft.Json; 2 | 3 | namespace msrpawebapi 4 | { 5 | public class ResetIndexerRequest 6 | { 7 | [JsonProperty("delete")] 8 | public bool Delete { get; set; } 9 | 10 | [JsonProperty("run")] 11 | public bool Run { get; set; } 12 | 13 | [JsonProperty("reset")] 14 | public bool Reset { get; set; } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /msrpawebapi/Models/SearchRequest.cs: -------------------------------------------------------------------------------- 1 | using msrpaazure; 2 | using Newtonsoft.Json; 3 | 4 | namespace msrpawebapi 5 | { 6 | public class SearchRequest 7 | { 8 | [JsonProperty("query")] 9 | public string Query { get; set; } 10 | [JsonProperty("searchFacets")] 11 | public SearchFacet[] SearchFacets { get; set; } 12 | [JsonProperty("currentPage")] 13 | public int CurrentPage { get; set; } = 1; 14 | } 15 | } -------------------------------------------------------------------------------- /msrpawebapi/Program.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore; 2 | using Microsoft.AspNetCore.Hosting; 3 | using Microsoft.Extensions.Configuration; 4 | 5 | namespace msrpawebapi 6 | { 7 | public class Program 8 | { 9 | public static void Main(string[] args) 10 | { 11 | CreateWebHostBuilder(args).Build().Run(); 12 | } 13 | 14 | public static IWebHostBuilder CreateWebHostBuilder(string[] args) => 15 | WebHost.CreateDefaultBuilder(args) 16 | .ConfigureAppConfiguration((context, config) => 17 | { 18 | var buildConfig = config.Build(); 19 | config.AddEnvironmentVariables(); 20 | }) 21 | .UseStartup(); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /msrpawebapi/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | FileSystem 9 | FileSystem 10 | Release 11 | Any CPU 12 | 13 | True 14 | False 15 | ca09cbdd-878a-4ecf-811d-da33f47fb85d 16 | bin\Debug\netcoreapp2.2\publish\ 17 | False 18 | 19 | -------------------------------------------------------------------------------- /msrpawebapi/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "iisSettings": { 3 | "windowsAuthentication": false, 4 | "anonymousAuthentication": true, 5 | "iisExpress": { 6 | "applicationUrl": "http://localhost:57249/", 7 | "sslPort": 0 8 | } 9 | }, 10 | "profiles": { 11 | "IIS Express": { 12 | "commandName": "IISExpress", 13 | "launchBrowser": true, 14 | "environmentVariables": { 15 | "ASPNETCORE_ENVIRONMENT": "Development" 16 | } 17 | }, 18 | "CognitiveSearch.WebApi": { 19 | "commandName": "Project", 20 | "launchBrowser": true, 21 | "environmentVariables": { 22 | "ASPNETCORE_ENVIRONMENT": "Development" 23 | }, 24 | "applicationUrl": "http://localhost:57253/" 25 | } 26 | } 27 | } -------------------------------------------------------------------------------- /msrpawebapi/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Debug", 5 | "System": "Information", 6 | "Microsoft": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /msrpawebapi/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Warning" 5 | } 6 | }, 7 | "AllowedHosts": "*", 8 | "APPINSIGHTS_INSTRUMENTATIONKEY": "", 9 | "SearchServiceName": "", 10 | "SearchServiceKey": "", 11 | "SearchServiceApiVersion": "2019-05-06", 12 | "SearchIndexName": "processformsidx", 13 | "InstrumentationKey": "", 14 | "StorageAccountName": "", 15 | "StorageAccountKey": "", 16 | // "StorageContainerAddress": "https://.blob.core.windows.net/1098", 17 | "StorageAccountContainerName": "processforms", 18 | "UploadStorageContainerName": "formspdf" 19 | //"FacetsFilteringContainerName": "facetfilters" 20 | } -------------------------------------------------------------------------------- /msrpawebapi/msrpawebapi.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp2.2 5 | InProcess 6 | e9f2279a-5a09-41d9-ac23-4e09f0e62412 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /msrpawebapi/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpawebapi/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /msrpawebapi/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpawebapi/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /msrpawebapi/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpawebapi/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /msrpawebapi/obj/Debug/netcoreapp2.2/msrpawebapi.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute("e9f2279a-5a09-41d9-ac23-4e09f0e62412")] 15 | [assembly: System.Reflection.AssemblyCompanyAttribute("msrpawebapi")] 16 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 17 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 18 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 19 | [assembly: System.Reflection.AssemblyProductAttribute("msrpawebapi")] 20 | [assembly: System.Reflection.AssemblyTitleAttribute("msrpawebapi")] 21 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 22 | 23 | // Generated by the MSBuild WriteCodeFragment class. 24 | 25 | -------------------------------------------------------------------------------- /msrpawebapi/obj/Debug/netcoreapp2.2/msrpawebapi.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | ff423f855f01d540eb17bb39a50ae8059a94f6b0 2 | -------------------------------------------------------------------------------- /msrpawebapi/obj/Debug/netcoreapp2.2/msrpawebapi.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 05634ca6092160c2895e1dd177e68705271a9e49 2 | -------------------------------------------------------------------------------- /msrpawebapi/obj/Debug/netcoreapp2.2/msrpawebapi.RazorAssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.RelatedAssemblyAttribute("msrpawebapi.Views")] 15 | [assembly: Microsoft.AspNetCore.Razor.Hosting.RazorLanguageVersionAttribute("2.1")] 16 | [assembly: Microsoft.AspNetCore.Razor.Hosting.RazorConfigurationNameAttribute("MVC-2.1")] 17 | [assembly: Microsoft.AspNetCore.Razor.Hosting.RazorExtensionAssemblyNameAttribute("MVC-2.1", "Microsoft.AspNetCore.Mvc.Razor.Extensions")] 18 | 19 | // Generated by the MSBuild WriteCodeFragment class. 20 | 21 | -------------------------------------------------------------------------------- /msrpawebapi/obj/Debug/netcoreapp2.2/msrpawebapi.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpawebapi/obj/Debug/netcoreapp2.2/msrpawebapi.assets.cache -------------------------------------------------------------------------------- /msrpawebapi/obj/Debug/netcoreapp2.2/msrpawebapi.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 34de2002ad06a07bb987f8de35f24cb5e0587bf4 2 | -------------------------------------------------------------------------------- /msrpawebapi/obj/Debug/netcoreapp2.2/msrpawebapi.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MSUSAzureAccelerators/Intelligent-Document-Processing-Accelerator/94a2bc5b2bdf4e26ec37aa4fdde621fa6876db2c/msrpawebapi/obj/Debug/netcoreapp2.2/msrpawebapi.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /msrpawebapi/obj/msrpawebapi.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "WZ4DZeHPOM4LQNwYcpIItp3khPeFxAzCD3hUx9nO5/pI/hadtKeM5Ri9mUMuomAuhdCjEo0GZbARliN3x6MoqA==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /videos/readme.md: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------