├── .vscode ├── launch.json └── tasks.json ├── Controllers ├── DocumentsController.cs ├── FoldersController.cs └── HomeController.cs ├── Data └── DemoDMSContext.cs ├── DemoDMS.Data.db ├── DemoDMS.csproj ├── Documents ├── 4_5981226870077656432.zip ├── Untitled Circuit-schematic.png └── school-management-system-python.zip ├── Migrations ├── 20221123102426_InitialCreate.Designer.cs ├── 20221123102426_InitialCreate.cs ├── 20221123103913_#2.Designer.cs ├── 20221123103913_#2.cs ├── 20221123105647_#3.Designer.cs ├── 20221123105647_#3.cs ├── 20221123110820_#4.Designer.cs ├── 20221123110820_#4.cs ├── 20221123114602_#5.Designer.cs ├── 20221123114602_#5.cs ├── 20221123115958_#6.Designer.cs ├── 20221123115958_#6.cs ├── 20221123120049_Initial.Designer.cs ├── 20221123120049_Initial.cs ├── 20221123172213_#8.Designer.cs ├── 20221123172213_#8.cs ├── 20221123173725_#9.Designer.cs ├── 20221123173725_#9.cs ├── 20221123173734_#10.Designer.cs ├── 20221123173734_#10.cs ├── 20221123192301_#11.Designer.cs ├── 20221123192301_#11.cs ├── 20221124101225_#12.Designer.cs ├── 20221124101225_#12.cs ├── 20221124103724_#13.Designer.cs ├── 20221124103724_#13.cs ├── 20221125131702_#14.Designer.cs ├── 20221125131702_#14.cs ├── 20221127190746_15.Designer.cs ├── 20221127190746_15.cs ├── 20221128055048_16.Designer.cs ├── 20221128055048_16.cs ├── 20230111140730_UpdatedFile.Designer.cs ├── 20230111140730_UpdatedFile.cs ├── 20230112063022_#20.Designer.cs ├── 20230112063022_#20.cs ├── 20230116142133_25.Designer.cs ├── 20230116142133_25.cs ├── 20230116150155_26.Designer.cs ├── 20230116150155_26.cs ├── 20230116152156_27.Designer.cs ├── 20230116152156_27.cs ├── 20230116170835_#28.Designer.cs ├── 20230116170835_#28.cs ├── 20230116171000_#30.Designer.cs ├── 20230116171000_#30.cs ├── 20230116171552_#31.Designer.cs ├── 20230116171552_#31.cs ├── 20230116182337_#32.Designer.cs ├── 20230116182337_#32.cs ├── 20230116183417_#34.Designer.cs ├── 20230116183417_#34.cs ├── 20230117074857_35.Designer.cs ├── 20230117074857_35.cs ├── 20230117170630_#41.Designer.cs ├── 20230117170630_#41.cs ├── 20230117170936_#43.Designer.cs ├── 20230117170936_#43.cs └── DemoDMSContextModelSnapshot.cs ├── Models ├── Document.cs ├── ErrorViewModel.cs ├── Folder.cs └── Item.cs ├── PersianDateExtensionMethods.cs ├── Program.cs ├── Properties └── launchSettings.json ├── README.md ├── ScreenShot.jpeg ├── Views ├── Documents │ ├── Create.cshtml │ ├── Delete.cshtml │ ├── Details.cshtml │ ├── Edit.cshtml │ └── Index.cshtml ├── Folders │ ├── Create.cshtml │ ├── Delete.cshtml │ ├── Edit.cshtml │ └── Index.cshtml ├── Home │ └── Index.cshtml ├── Shared │ ├── Error.cshtml │ ├── _Layout.cshtml │ ├── _Layout.cshtml.css │ └── _ValidationScriptsPartial.cshtml ├── _ViewImports.cshtml └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── bin └── Debug │ └── net7.0 │ ├── Azure.Core.dll │ ├── Azure.Identity.dll │ ├── DemoDMS │ ├── DemoDMS.deps.json │ ├── DemoDMS.dll │ ├── DemoDMS.pdb │ ├── DemoDMS.runtimeconfig.json │ ├── DemoDMS.staticwebassets.runtime.json │ ├── Humanizer.dll │ ├── MessagePack.Annotations.dll │ ├── MessagePack.dll │ ├── Microsoft.AspNetCore.Razor.Language.dll │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ ├── Microsoft.Build.Framework.dll │ ├── Microsoft.Build.dll │ ├── Microsoft.CodeAnalysis.AnalyzerUtilities.dll │ ├── Microsoft.CodeAnalysis.CSharp.Features.dll │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.dll │ ├── Microsoft.CodeAnalysis.CSharp.dll │ ├── Microsoft.CodeAnalysis.Features.dll │ ├── Microsoft.CodeAnalysis.Razor.dll │ ├── Microsoft.CodeAnalysis.Scripting.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.dll │ ├── Microsoft.CodeAnalysis.Workspaces.dll │ ├── Microsoft.CodeAnalysis.dll │ ├── Microsoft.Data.SqlClient.dll │ ├── Microsoft.Data.Sqlite.dll │ ├── Microsoft.DiaSymReader.dll │ ├── Microsoft.DotNet.Scaffolding.Shared.dll │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ ├── Microsoft.EntityFrameworkCore.Design.dll │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ ├── Microsoft.EntityFrameworkCore.Sqlite.dll │ ├── Microsoft.EntityFrameworkCore.dll │ ├── Microsoft.Extensions.DependencyModel.dll │ ├── Microsoft.Identity.Client.Extensions.Msal.dll │ ├── Microsoft.Identity.Client.dll │ ├── Microsoft.IdentityModel.Abstractions.dll │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ ├── Microsoft.IdentityModel.Logging.dll │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ ├── Microsoft.IdentityModel.Protocols.dll │ ├── Microsoft.IdentityModel.Tokens.dll │ ├── Microsoft.NET.StringTools.dll │ ├── Microsoft.SqlServer.Server.dll │ ├── Microsoft.VisualStudio.Debugger.Contracts.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Core.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.dll │ ├── Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll │ ├── Microsoft.Win32.SystemEvents.dll │ ├── Mono.TextTemplating.dll │ ├── Newtonsoft.Json.dll │ ├── NuGet.Common.dll │ ├── NuGet.Configuration.dll │ ├── NuGet.DependencyResolver.Core.dll │ ├── NuGet.Frameworks.dll │ ├── NuGet.LibraryModel.dll │ ├── NuGet.Packaging.dll │ ├── NuGet.ProjectModel.dll │ ├── NuGet.Protocol.dll │ ├── NuGet.Versioning.dll │ ├── OrchardCore.Localization.Abstractions.dll │ ├── OrchardCore.Localization.Core.dll │ ├── SQLitePCLRaw.batteries_v2.dll │ ├── SQLitePCLRaw.core.dll │ ├── SQLitePCLRaw.provider.e_sqlite3.dll │ ├── System.CodeDom.dll │ ├── System.Composition.AttributedModel.dll │ ├── System.Composition.Convention.dll │ ├── System.Composition.Hosting.dll │ ├── System.Composition.Runtime.dll │ ├── System.Composition.TypedParts.dll │ ├── System.Configuration.ConfigurationManager.dll │ ├── System.Drawing.Common.dll │ ├── System.IdentityModel.Tokens.Jwt.dll │ ├── System.Memory.Data.dll │ ├── System.Reflection.MetadataLoadContext.dll │ ├── System.Runtime.Caching.dll │ ├── System.Security.Cryptography.ProtectedData.dll │ ├── System.Security.Permissions.dll │ ├── System.Windows.Extensions.dll │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── cs │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── de │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── dotnet-aspnet-codegenerator-design.dll │ ├── es │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── fr │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── it │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── ja │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── ko │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── pl │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── pt-BR │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── ru │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── runtimes │ ├── alpine-arm │ │ └── native │ │ │ └── libe_sqlite3.so │ ├── alpine-arm64 │ │ └── native │ │ │ └── libe_sqlite3.so │ ├── alpine-x64 │ │ └── native │ │ │ └── libe_sqlite3.so │ ├── browser-wasm │ │ └── nativeassets │ │ │ └── net7.0 │ │ │ └── e_sqlite3.a │ ├── linux-arm │ │ └── native │ │ │ └── libe_sqlite3.so │ ├── linux-arm64 │ │ └── native │ │ │ └── libe_sqlite3.so │ ├── linux-armel │ │ └── native │ │ │ └── libe_sqlite3.so │ ├── linux-mips64 │ │ └── native │ │ │ └── libe_sqlite3.so │ ├── linux-musl-arm │ │ └── native │ │ │ └── libe_sqlite3.so │ ├── linux-musl-arm64 │ │ └── native │ │ │ └── libe_sqlite3.so │ ├── linux-musl-x64 │ │ └── native │ │ │ └── libe_sqlite3.so │ ├── linux-s390x │ │ └── native │ │ │ └── libe_sqlite3.so │ ├── linux-x64 │ │ └── native │ │ │ └── libe_sqlite3.so │ ├── linux-x86 │ │ └── native │ │ │ └── libe_sqlite3.so │ ├── maccatalyst-arm64 │ │ └── native │ │ │ └── libe_sqlite3.dylib │ ├── maccatalyst-x64 │ │ └── native │ │ │ └── libe_sqlite3.dylib │ ├── osx-arm64 │ │ └── native │ │ │ └── libe_sqlite3.dylib │ ├── osx-x64 │ │ └── native │ │ │ └── libe_sqlite3.dylib │ ├── unix │ │ └── lib │ │ │ ├── net6.0 │ │ │ └── System.Drawing.Common.dll │ │ │ └── netcoreapp3.1 │ │ │ └── Microsoft.Data.SqlClient.dll │ ├── win-arm │ │ └── native │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ └── e_sqlite3.dll │ ├── win-arm64 │ │ └── native │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ └── e_sqlite3.dll │ ├── win-x64 │ │ └── native │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ └── e_sqlite3.dll │ ├── win-x86 │ │ └── native │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ └── e_sqlite3.dll │ └── win │ │ └── lib │ │ ├── net6.0 │ │ ├── Microsoft.Win32.SystemEvents.dll │ │ ├── System.Drawing.Common.dll │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ └── System.Windows.Extensions.dll │ │ ├── netcoreapp3.1 │ │ └── Microsoft.Data.SqlClient.dll │ │ └── netstandard2.0 │ │ └── System.Runtime.Caching.dll │ ├── tr │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── zh-Hans │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ └── zh-Hant │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll ├── en.po ├── fa.po ├── obj ├── Debug │ └── net7.0 │ │ ├── .NETCoreApp,Version=v7.0.AssemblyAttributes.cs │ │ ├── DemoDMS.AssemblyInfo.cs │ │ ├── DemoDMS.AssemblyInfoInputs.cache │ │ ├── DemoDMS.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── DemoDMS.GlobalUsings.g.cs │ │ ├── DemoDMS.MvcApplicationPartsAssemblyInfo.cache │ │ ├── DemoDMS.MvcApplicationPartsAssemblyInfo.cs │ │ ├── DemoDMS.RazorAssemblyInfo.cache │ │ ├── DemoDMS.RazorAssemblyInfo.cs │ │ ├── DemoDMS.assets.cache │ │ ├── DemoDMS.csproj.AssemblyReference.cache │ │ ├── DemoDMS.csproj.CopyComplete │ │ ├── DemoDMS.csproj.CoreCompileInputs.cache │ │ ├── DemoDMS.csproj.FileListAbsolute.txt │ │ ├── DemoDMS.dll │ │ ├── DemoDMS.genruntimeconfig.cache │ │ ├── DemoDMS.pdb │ │ ├── apphost │ │ ├── project.razor.json │ │ ├── ref │ │ └── DemoDMS.dll │ │ ├── refint │ │ └── DemoDMS.dll │ │ ├── scopedcss │ │ ├── Views │ │ │ └── Shared │ │ │ │ └── _Layout.cshtml.rz.scp.css │ │ ├── bundle │ │ │ └── DemoDMS.styles.css │ │ └── projectbundle │ │ │ └── DemoDMS.bundle.scp.css │ │ ├── staticwebassets.build.json │ │ ├── staticwebassets.development.json │ │ ├── staticwebassets.pack.json │ │ └── staticwebassets │ │ ├── msbuild.DemoDMS.Microsoft.AspNetCore.StaticWebAssets.props │ │ ├── msbuild.build.DemoDMS.props │ │ ├── msbuild.buildMultiTargeting.DemoDMS.props │ │ └── msbuild.buildTransitive.DemoDMS.props ├── DemoDMS.csproj.nuget.dgspec.json ├── DemoDMS.csproj.nuget.g.props ├── DemoDMS.csproj.nuget.g.targets ├── project.assets.json └── project.nuget.cache └── wwwroot ├── css └── site.css ├── favicon.ico ├── js └── site.js └── lib ├── bootstrap ├── LICENSE └── dist │ ├── css │ ├── bootstrap-grid.css │ ├── bootstrap-grid.css.map │ ├── bootstrap-grid.min.css │ ├── bootstrap-grid.min.css.map │ ├── bootstrap-grid.rtl.css │ ├── bootstrap-grid.rtl.css.map │ ├── bootstrap-grid.rtl.min.css │ ├── bootstrap-grid.rtl.min.css.map │ ├── bootstrap-reboot.css │ ├── bootstrap-reboot.css.map │ ├── bootstrap-reboot.min.css │ ├── bootstrap-reboot.min.css.map │ ├── bootstrap-reboot.rtl.css │ ├── bootstrap-reboot.rtl.css.map │ ├── bootstrap-reboot.rtl.min.css │ ├── bootstrap-reboot.rtl.min.css.map │ ├── bootstrap-utilities.css │ ├── bootstrap-utilities.css.map │ ├── bootstrap-utilities.min.css │ ├── bootstrap-utilities.min.css.map │ ├── bootstrap-utilities.rtl.css │ ├── bootstrap-utilities.rtl.css.map │ ├── bootstrap-utilities.rtl.min.css │ ├── bootstrap-utilities.rtl.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ ├── bootstrap.rtl.css │ ├── bootstrap.rtl.css.map │ ├── bootstrap.rtl.min.css │ └── bootstrap.rtl.min.css.map │ └── js │ ├── bootstrap.bundle.js │ ├── bootstrap.bundle.js.map │ ├── bootstrap.bundle.min.js │ ├── bootstrap.bundle.min.js.map │ ├── bootstrap.esm.js │ ├── bootstrap.esm.js.map │ ├── bootstrap.esm.min.js │ ├── bootstrap.esm.min.js.map │ ├── bootstrap.js │ ├── bootstrap.js.map │ ├── bootstrap.min.js │ └── bootstrap.min.js.map ├── jquery-validation-unobtrusive ├── LICENSE.txt ├── 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 /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.2.0", 3 | "configurations": [ 4 | { 5 | // Use IntelliSense to find out which attributes exist for C# debugging 6 | // Use hover for the description of the existing attributes 7 | // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md 8 | "name": ".NET Core Launch (web)", 9 | "type": "coreclr", 10 | "request": "launch", 11 | "preLaunchTask": "build", 12 | // If you have changed target frameworks, make sure to update the program path. 13 | "program": "${workspaceFolder}/bin/Debug/net7.0/DemoDMS.dll", 14 | "args": [], 15 | "cwd": "${workspaceFolder}", 16 | "stopAtEntry": false, 17 | // Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser 18 | "serverReadyAction": { 19 | "action": "openExternally", 20 | "pattern": "\\bNow listening on:\\s+(https?://\\S+)" 21 | }, 22 | "env": { 23 | "ASPNETCORE_ENVIRONMENT": "Development" 24 | }, 25 | "sourceFileMap": { 26 | "/Views": "${workspaceFolder}/Views" 27 | } 28 | }, 29 | { 30 | "name": ".NET Core Attach", 31 | "type": "coreclr", 32 | "request": "attach" 33 | } 34 | ] 35 | } -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0.0", 3 | "tasks": [ 4 | { 5 | "label": "build", 6 | "command": "dotnet", 7 | "type": "process", 8 | "args": [ 9 | "build", 10 | "${workspaceFolder}/DemoDMS.csproj", 11 | "/property:GenerateFullPaths=true", 12 | "/consoleloggerparameters:NoSummary" 13 | ], 14 | "problemMatcher": "$msCompile" 15 | }, 16 | { 17 | "label": "publish", 18 | "command": "dotnet", 19 | "type": "process", 20 | "args": [ 21 | "publish", 22 | "${workspaceFolder}/DemoDMS.csproj", 23 | "/property:GenerateFullPaths=true", 24 | "/consoleloggerparameters:NoSummary" 25 | ], 26 | "problemMatcher": "$msCompile" 27 | }, 28 | { 29 | "label": "watch", 30 | "command": "dotnet", 31 | "type": "process", 32 | "args": [ 33 | "watch", 34 | "run", 35 | "--project", 36 | "${workspaceFolder}/DemoDMS.csproj" 37 | ], 38 | "problemMatcher": "$msCompile" 39 | } 40 | ] 41 | } -------------------------------------------------------------------------------- /Controllers/HomeController.cs: -------------------------------------------------------------------------------- 1 | using System.Diagnostics; 2 | using Microsoft.AspNetCore.Mvc; 3 | using Microsoft.Extensions.Localization; 4 | using DemoDMS.Models; 5 | 6 | namespace DemoDMS.Controllers; 7 | 8 | public class HomeController : Controller 9 | { 10 | private readonly IStringLocalizer _localizer; 11 | private readonly ILogger _logger; 12 | 13 | public HomeController(IStringLocalizer localizer, ILogger logger) 14 | { 15 | _localizer = localizer; 16 | _logger = logger; 17 | } 18 | 19 | public IActionResult Index() 20 | { 21 | return View(); 22 | } 23 | 24 | 25 | [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)] 26 | public IActionResult Error() 27 | { 28 | return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier }); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Data/DemoDMSContext.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using Microsoft.EntityFrameworkCore; 6 | using DemoDMS.Models; 7 | 8 | namespace DemoDMS.Data 9 | { 10 | public class DemoDMSContext : DbContext 11 | { 12 | public DemoDMSContext (DbContextOptions options) : base(options) {} 13 | 14 | public DbSet Folder { get; set; } 15 | 16 | public DbSet Document { get; set; } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /DemoDMS.Data.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/DemoDMS.Data.db -------------------------------------------------------------------------------- /DemoDMS.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net7.0 5 | enable 6 | enable 7 | 8 | 9 | 10 | 11 | runtime; build; native; contentfiles; analyzers; buildtransitive 12 | all 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /Documents/4_5981226870077656432.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/Documents/4_5981226870077656432.zip -------------------------------------------------------------------------------- /Documents/Untitled Circuit-schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/Documents/Untitled Circuit-schematic.png -------------------------------------------------------------------------------- /Documents/school-management-system-python.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/Documents/school-management-system-python.zip -------------------------------------------------------------------------------- /Migrations/20221123102426_InitialCreate.Designer.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using DemoDMS.Data; 4 | using Microsoft.EntityFrameworkCore; 5 | using Microsoft.EntityFrameworkCore.Infrastructure; 6 | using Microsoft.EntityFrameworkCore.Migrations; 7 | using Microsoft.EntityFrameworkCore.Storage.ValueConversion; 8 | 9 | #nullable disable 10 | 11 | namespace DemoDMS.Migrations 12 | { 13 | [DbContext(typeof(DemoDMSContext))] 14 | [Migration("20221123102426_InitialCreate")] 15 | partial class InitialCreate 16 | { 17 | /// 18 | protected override void BuildTargetModel(ModelBuilder modelBuilder) 19 | { 20 | #pragma warning disable 612, 618 21 | modelBuilder.HasAnnotation("ProductVersion", "7.0.0"); 22 | 23 | modelBuilder.Entity("DemoDMS.Models.Document", b => 24 | { 25 | b.Property("Id") 26 | .ValueGeneratedOnAdd() 27 | .HasColumnType("INTEGER"); 28 | 29 | b.Property("CategoryType") 30 | .HasColumnType("INTEGER"); 31 | 32 | b.Property("Name") 33 | .IsRequired() 34 | .HasColumnType("TEXT"); 35 | 36 | b.Property("UploadDate") 37 | .HasColumnType("TEXT"); 38 | 39 | b.Property("UserName") 40 | .IsRequired() 41 | .HasColumnType("TEXT"); 42 | 43 | b.HasKey("Id"); 44 | 45 | b.ToTable("Document"); 46 | }); 47 | #pragma warning restore 612, 618 48 | } 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /Migrations/20221123102426_InitialCreate.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Microsoft.EntityFrameworkCore.Migrations; 3 | 4 | #nullable disable 5 | 6 | namespace DemoDMS.Migrations 7 | { 8 | /// 9 | public partial class InitialCreate : Migration 10 | { 11 | /// 12 | protected override void Up(MigrationBuilder migrationBuilder) 13 | { 14 | migrationBuilder.CreateTable( 15 | name: "Document", 16 | columns: table => new 17 | { 18 | Id = table.Column(type: "INTEGER", nullable: false) 19 | .Annotation("Sqlite:Autoincrement", true), 20 | Name = table.Column(type: "TEXT", nullable: false), 21 | UserName = table.Column(type: "TEXT", nullable: false), 22 | UploadDate = table.Column(type: "TEXT", nullable: false), 23 | CategoryType = table.Column(type: "INTEGER", nullable: false) 24 | }, 25 | constraints: table => 26 | { 27 | table.PrimaryKey("PK_Document", x => x.Id); 28 | }); 29 | } 30 | 31 | /// 32 | protected override void Down(MigrationBuilder migrationBuilder) 33 | { 34 | migrationBuilder.DropTable( 35 | name: "Document"); 36 | } 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Migrations/20221123103913_#2.Designer.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using DemoDMS.Data; 4 | using Microsoft.EntityFrameworkCore; 5 | using Microsoft.EntityFrameworkCore.Infrastructure; 6 | using Microsoft.EntityFrameworkCore.Migrations; 7 | using Microsoft.EntityFrameworkCore.Storage.ValueConversion; 8 | 9 | #nullable disable 10 | 11 | namespace DemoDMS.Migrations 12 | { 13 | [DbContext(typeof(DemoDMSContext))] 14 | [Migration("20221123103913_#2")] 15 | partial class _2 16 | { 17 | /// 18 | protected override void BuildTargetModel(ModelBuilder modelBuilder) 19 | { 20 | #pragma warning disable 612, 618 21 | modelBuilder.HasAnnotation("ProductVersion", "7.0.0"); 22 | 23 | modelBuilder.Entity("DemoDMS.Models.Document", b => 24 | { 25 | b.Property("Id") 26 | .ValueGeneratedOnAdd() 27 | .HasColumnType("INTEGER"); 28 | 29 | b.Property("CategoryType") 30 | .HasColumnType("INTEGER"); 31 | 32 | b.Property("Name") 33 | .HasColumnType("TEXT"); 34 | 35 | b.Property("UploadDate") 36 | .HasColumnType("TEXT"); 37 | 38 | b.Property("UserName") 39 | .HasColumnType("TEXT"); 40 | 41 | b.HasKey("Id"); 42 | 43 | b.ToTable("Document"); 44 | }); 45 | #pragma warning restore 612, 618 46 | } 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /Migrations/20221123105647_#3.Designer.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using DemoDMS.Data; 4 | using Microsoft.EntityFrameworkCore; 5 | using Microsoft.EntityFrameworkCore.Infrastructure; 6 | using Microsoft.EntityFrameworkCore.Migrations; 7 | using Microsoft.EntityFrameworkCore.Storage.ValueConversion; 8 | 9 | #nullable disable 10 | 11 | namespace DemoDMS.Migrations 12 | { 13 | [DbContext(typeof(DemoDMSContext))] 14 | [Migration("20221123105647_#3")] 15 | partial class _3 16 | { 17 | /// 18 | protected override void BuildTargetModel(ModelBuilder modelBuilder) 19 | { 20 | #pragma warning disable 612, 618 21 | modelBuilder.HasAnnotation("ProductVersion", "7.0.0"); 22 | 23 | modelBuilder.Entity("DemoDMS.Models.Document", b => 24 | { 25 | b.Property("Id") 26 | .ValueGeneratedOnAdd() 27 | .HasColumnType("INTEGER"); 28 | 29 | b.Property("Category") 30 | .HasColumnType("INTEGER"); 31 | 32 | b.Property("Name") 33 | .HasColumnType("TEXT"); 34 | 35 | b.Property("UploadDate") 36 | .HasColumnType("TEXT"); 37 | 38 | b.Property("UserName") 39 | .HasColumnType("TEXT"); 40 | 41 | b.HasKey("Id"); 42 | 43 | b.ToTable("Document"); 44 | }); 45 | #pragma warning restore 612, 618 46 | } 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /Migrations/20221123105647_#3.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore.Migrations; 2 | 3 | #nullable disable 4 | 5 | namespace DemoDMS.Migrations 6 | { 7 | /// 8 | public partial class _3 : Migration 9 | { 10 | /// 11 | protected override void Up(MigrationBuilder migrationBuilder) 12 | { 13 | migrationBuilder.DropColumn( 14 | name: "CategoryType", 15 | table: "Document"); 16 | 17 | migrationBuilder.AddColumn( 18 | name: "Category", 19 | table: "Document", 20 | type: "INTEGER", 21 | nullable: false, 22 | defaultValue: 0); 23 | } 24 | 25 | /// 26 | protected override void Down(MigrationBuilder migrationBuilder) 27 | { 28 | migrationBuilder.DropColumn( 29 | name: "Category", 30 | table: "Document"); 31 | 32 | migrationBuilder.AddColumn( 33 | name: "CategoryType", 34 | table: "Document", 35 | type: "INTEGER", 36 | nullable: true); 37 | } 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /Migrations/20221123110820_#4.Designer.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using DemoDMS.Data; 4 | using Microsoft.EntityFrameworkCore; 5 | using Microsoft.EntityFrameworkCore.Infrastructure; 6 | using Microsoft.EntityFrameworkCore.Migrations; 7 | using Microsoft.EntityFrameworkCore.Storage.ValueConversion; 8 | 9 | #nullable disable 10 | 11 | namespace DemoDMS.Migrations 12 | { 13 | [DbContext(typeof(DemoDMSContext))] 14 | [Migration("20221123110820_#4")] 15 | partial class _4 16 | { 17 | /// 18 | protected override void BuildTargetModel(ModelBuilder modelBuilder) 19 | { 20 | #pragma warning disable 612, 618 21 | modelBuilder.HasAnnotation("ProductVersion", "7.0.0"); 22 | 23 | modelBuilder.Entity("DemoDMS.Models.Document", b => 24 | { 25 | b.Property("Id") 26 | .ValueGeneratedOnAdd() 27 | .HasColumnType("INTEGER"); 28 | 29 | b.Property("Category") 30 | .HasColumnType("INTEGER"); 31 | 32 | b.Property("Name") 33 | .HasColumnType("TEXT"); 34 | 35 | b.Property("UploadDate") 36 | .HasColumnType("TEXT"); 37 | 38 | b.Property("UserName") 39 | .HasColumnType("TEXT"); 40 | 41 | b.HasKey("Id"); 42 | 43 | b.ToTable("Document"); 44 | }); 45 | #pragma warning restore 612, 618 46 | } 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /Migrations/20221123110820_#4.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore.Migrations; 2 | 3 | #nullable disable 4 | 5 | namespace DemoDMS.Migrations 6 | { 7 | /// 8 | public partial class _4 : Migration 9 | { 10 | /// 11 | protected override void Up(MigrationBuilder migrationBuilder) 12 | { 13 | 14 | } 15 | 16 | /// 17 | protected override void Down(MigrationBuilder migrationBuilder) 18 | { 19 | 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Migrations/20221123114602_#5.Designer.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using DemoDMS.Data; 4 | using Microsoft.EntityFrameworkCore; 5 | using Microsoft.EntityFrameworkCore.Infrastructure; 6 | using Microsoft.EntityFrameworkCore.Migrations; 7 | using Microsoft.EntityFrameworkCore.Storage.ValueConversion; 8 | 9 | #nullable disable 10 | 11 | namespace DemoDMS.Migrations 12 | { 13 | [DbContext(typeof(DemoDMSContext))] 14 | [Migration("20221123114602_#5")] 15 | partial class _5 16 | { 17 | /// 18 | protected override void BuildTargetModel(ModelBuilder modelBuilder) 19 | { 20 | #pragma warning disable 612, 618 21 | modelBuilder.HasAnnotation("ProductVersion", "7.0.0"); 22 | 23 | modelBuilder.Entity("DemoDMS.Models.Document", b => 24 | { 25 | b.Property("Id") 26 | .ValueGeneratedOnAdd() 27 | .HasColumnType("INTEGER"); 28 | 29 | b.Property("Category") 30 | .HasColumnType("INTEGER"); 31 | 32 | b.Property("Name") 33 | .HasColumnType("TEXT"); 34 | 35 | b.Property("UploadDate") 36 | .HasColumnType("TEXT"); 37 | 38 | b.Property("UserName") 39 | .HasColumnType("TEXT"); 40 | 41 | b.HasKey("Id"); 42 | 43 | b.ToTable("Document"); 44 | }); 45 | #pragma warning restore 612, 618 46 | } 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /Migrations/20221123114602_#5.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore.Migrations; 2 | 3 | #nullable disable 4 | 5 | namespace DemoDMS.Migrations 6 | { 7 | /// 8 | public partial class _5 : Migration 9 | { 10 | /// 11 | protected override void Up(MigrationBuilder migrationBuilder) 12 | { 13 | 14 | } 15 | 16 | /// 17 | protected override void Down(MigrationBuilder migrationBuilder) 18 | { 19 | 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Migrations/20221123115958_#6.Designer.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using DemoDMS.Data; 4 | using Microsoft.EntityFrameworkCore; 5 | using Microsoft.EntityFrameworkCore.Infrastructure; 6 | using Microsoft.EntityFrameworkCore.Migrations; 7 | using Microsoft.EntityFrameworkCore.Storage.ValueConversion; 8 | 9 | #nullable disable 10 | 11 | namespace DemoDMS.Migrations 12 | { 13 | [DbContext(typeof(DemoDMSContext))] 14 | [Migration("20221123115958_#6")] 15 | partial class _6 16 | { 17 | /// 18 | protected override void BuildTargetModel(ModelBuilder modelBuilder) 19 | { 20 | #pragma warning disable 612, 618 21 | modelBuilder.HasAnnotation("ProductVersion", "7.0.0"); 22 | 23 | modelBuilder.Entity("DemoDMS.Models.Document", b => 24 | { 25 | b.Property("Id") 26 | .ValueGeneratedOnAdd() 27 | .HasColumnType("INTEGER"); 28 | 29 | b.Property("Category") 30 | .HasColumnType("INTEGER"); 31 | 32 | b.Property("Name") 33 | .IsRequired() 34 | .HasColumnType("TEXT"); 35 | 36 | b.Property("UploadDate") 37 | .HasColumnType("TEXT"); 38 | 39 | b.Property("UserName") 40 | .IsRequired() 41 | .HasColumnType("TEXT"); 42 | 43 | b.HasKey("Id"); 44 | 45 | b.ToTable("Document"); 46 | }); 47 | #pragma warning restore 612, 618 48 | } 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /Migrations/20221123115958_#6.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Microsoft.EntityFrameworkCore.Migrations; 3 | 4 | #nullable disable 5 | 6 | namespace DemoDMS.Migrations 7 | { 8 | /// 9 | public partial class _6 : Migration 10 | { 11 | /// 12 | protected override void Up(MigrationBuilder migrationBuilder) 13 | { 14 | migrationBuilder.AlterColumn( 15 | name: "UserName", 16 | table: "Document", 17 | type: "TEXT", 18 | nullable: false, 19 | defaultValue: "", 20 | oldClrType: typeof(string), 21 | oldType: "TEXT", 22 | oldNullable: true); 23 | 24 | migrationBuilder.AlterColumn( 25 | name: "UploadDate", 26 | table: "Document", 27 | type: "TEXT", 28 | nullable: false, 29 | defaultValue: new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), 30 | oldClrType: typeof(DateTime), 31 | oldType: "TEXT", 32 | oldNullable: true); 33 | 34 | migrationBuilder.AlterColumn( 35 | name: "Name", 36 | table: "Document", 37 | type: "TEXT", 38 | nullable: false, 39 | defaultValue: "", 40 | oldClrType: typeof(string), 41 | oldType: "TEXT", 42 | oldNullable: true); 43 | } 44 | 45 | /// 46 | protected override void Down(MigrationBuilder migrationBuilder) 47 | { 48 | migrationBuilder.AlterColumn( 49 | name: "UserName", 50 | table: "Document", 51 | type: "TEXT", 52 | nullable: true, 53 | oldClrType: typeof(string), 54 | oldType: "TEXT"); 55 | 56 | migrationBuilder.AlterColumn( 57 | name: "UploadDate", 58 | table: "Document", 59 | type: "TEXT", 60 | nullable: true, 61 | oldClrType: typeof(DateTime), 62 | oldType: "TEXT"); 63 | 64 | migrationBuilder.AlterColumn( 65 | name: "Name", 66 | table: "Document", 67 | type: "TEXT", 68 | nullable: true, 69 | oldClrType: typeof(string), 70 | oldType: "TEXT"); 71 | } 72 | } 73 | } 74 | -------------------------------------------------------------------------------- /Migrations/20221123120049_Initial.Designer.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using DemoDMS.Data; 4 | using Microsoft.EntityFrameworkCore; 5 | using Microsoft.EntityFrameworkCore.Infrastructure; 6 | using Microsoft.EntityFrameworkCore.Migrations; 7 | using Microsoft.EntityFrameworkCore.Storage.ValueConversion; 8 | 9 | #nullable disable 10 | 11 | namespace DemoDMS.Migrations 12 | { 13 | [DbContext(typeof(DemoDMSContext))] 14 | [Migration("20221123120049_Initial")] 15 | partial class Initial 16 | { 17 | /// 18 | protected override void BuildTargetModel(ModelBuilder modelBuilder) 19 | { 20 | #pragma warning disable 612, 618 21 | modelBuilder.HasAnnotation("ProductVersion", "7.0.0"); 22 | 23 | modelBuilder.Entity("DemoDMS.Models.Document", b => 24 | { 25 | b.Property("Id") 26 | .ValueGeneratedOnAdd() 27 | .HasColumnType("INTEGER"); 28 | 29 | b.Property("Category") 30 | .HasColumnType("INTEGER"); 31 | 32 | b.Property("Name") 33 | .IsRequired() 34 | .HasColumnType("TEXT"); 35 | 36 | b.Property("UploadDate") 37 | .HasColumnType("TEXT"); 38 | 39 | b.Property("UserName") 40 | .IsRequired() 41 | .HasColumnType("TEXT"); 42 | 43 | b.HasKey("Id"); 44 | 45 | b.ToTable("Document"); 46 | }); 47 | #pragma warning restore 612, 618 48 | } 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /Migrations/20221123120049_Initial.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore.Migrations; 2 | 3 | #nullable disable 4 | 5 | namespace DemoDMS.Migrations 6 | { 7 | /// 8 | public partial class Initial : Migration 9 | { 10 | /// 11 | protected override void Up(MigrationBuilder migrationBuilder) 12 | { 13 | 14 | } 15 | 16 | /// 17 | protected override void Down(MigrationBuilder migrationBuilder) 18 | { 19 | 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Migrations/20221123172213_#8.Designer.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using DemoDMS.Data; 4 | using Microsoft.EntityFrameworkCore; 5 | using Microsoft.EntityFrameworkCore.Infrastructure; 6 | using Microsoft.EntityFrameworkCore.Migrations; 7 | using Microsoft.EntityFrameworkCore.Storage.ValueConversion; 8 | 9 | #nullable disable 10 | 11 | namespace DemoDMS.Migrations 12 | { 13 | [DbContext(typeof(DemoDMSContext))] 14 | [Migration("20221123172213_#8")] 15 | partial class _8 16 | { 17 | /// 18 | protected override void BuildTargetModel(ModelBuilder modelBuilder) 19 | { 20 | #pragma warning disable 612, 618 21 | modelBuilder.HasAnnotation("ProductVersion", "7.0.0"); 22 | 23 | modelBuilder.Entity("DemoDMS.Models.Document", b => 24 | { 25 | b.Property("Id") 26 | .ValueGeneratedOnAdd() 27 | .HasColumnType("INTEGER"); 28 | 29 | b.Property("Category") 30 | .HasColumnType("INTEGER"); 31 | 32 | b.Property("Name") 33 | .IsRequired() 34 | .HasColumnType("TEXT"); 35 | 36 | b.Property("UploadDate") 37 | .HasColumnType("TEXT"); 38 | 39 | b.Property("UserName") 40 | .IsRequired() 41 | .HasColumnType("TEXT"); 42 | 43 | b.HasKey("Id"); 44 | 45 | b.ToTable("Document"); 46 | }); 47 | #pragma warning restore 612, 618 48 | } 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /Migrations/20221123172213_#8.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore.Migrations; 2 | 3 | #nullable disable 4 | 5 | namespace DemoDMS.Migrations 6 | { 7 | /// 8 | public partial class _8 : Migration 9 | { 10 | /// 11 | protected override void Up(MigrationBuilder migrationBuilder) 12 | { 13 | 14 | } 15 | 16 | /// 17 | protected override void Down(MigrationBuilder migrationBuilder) 18 | { 19 | 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Migrations/20221123173725_#9.Designer.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using DemoDMS.Data; 4 | using Microsoft.EntityFrameworkCore; 5 | using Microsoft.EntityFrameworkCore.Infrastructure; 6 | using Microsoft.EntityFrameworkCore.Migrations; 7 | using Microsoft.EntityFrameworkCore.Storage.ValueConversion; 8 | 9 | #nullable disable 10 | 11 | namespace DemoDMS.Migrations 12 | { 13 | [DbContext(typeof(DemoDMSContext))] 14 | [Migration("20221123173725_#9")] 15 | partial class _9 16 | { 17 | /// 18 | protected override void BuildTargetModel(ModelBuilder modelBuilder) 19 | { 20 | #pragma warning disable 612, 618 21 | modelBuilder.HasAnnotation("ProductVersion", "7.0.0"); 22 | 23 | modelBuilder.Entity("DemoDMS.Models.Document", b => 24 | { 25 | b.Property("Id") 26 | .ValueGeneratedOnAdd() 27 | .HasColumnType("INTEGER"); 28 | 29 | b.Property("Category") 30 | .HasColumnType("INTEGER"); 31 | 32 | b.Property("FilePath") 33 | .IsRequired() 34 | .HasColumnType("TEXT"); 35 | 36 | b.Property("Name") 37 | .IsRequired() 38 | .HasColumnType("TEXT"); 39 | 40 | b.Property("UploadDate") 41 | .HasColumnType("TEXT"); 42 | 43 | b.Property("UserName") 44 | .IsRequired() 45 | .HasColumnType("TEXT"); 46 | 47 | b.HasKey("Id"); 48 | 49 | b.ToTable("Document"); 50 | }); 51 | #pragma warning restore 612, 618 52 | } 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /Migrations/20221123173725_#9.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore.Migrations; 2 | 3 | #nullable disable 4 | 5 | namespace DemoDMS.Migrations 6 | { 7 | /// 8 | public partial class _9 : Migration 9 | { 10 | /// 11 | protected override void Up(MigrationBuilder migrationBuilder) 12 | { 13 | migrationBuilder.AddColumn( 14 | name: "FilePath", 15 | table: "Document", 16 | type: "TEXT", 17 | nullable: false, 18 | defaultValue: ""); 19 | } 20 | 21 | /// 22 | protected override void Down(MigrationBuilder migrationBuilder) 23 | { 24 | migrationBuilder.DropColumn( 25 | name: "FilePath", 26 | table: "Document"); 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /Migrations/20221123173734_#10.Designer.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using DemoDMS.Data; 4 | using Microsoft.EntityFrameworkCore; 5 | using Microsoft.EntityFrameworkCore.Infrastructure; 6 | using Microsoft.EntityFrameworkCore.Migrations; 7 | using Microsoft.EntityFrameworkCore.Storage.ValueConversion; 8 | 9 | #nullable disable 10 | 11 | namespace DemoDMS.Migrations 12 | { 13 | [DbContext(typeof(DemoDMSContext))] 14 | [Migration("20221123173734_#10")] 15 | partial class _10 16 | { 17 | /// 18 | protected override void BuildTargetModel(ModelBuilder modelBuilder) 19 | { 20 | #pragma warning disable 612, 618 21 | modelBuilder.HasAnnotation("ProductVersion", "7.0.0"); 22 | 23 | modelBuilder.Entity("DemoDMS.Models.Document", b => 24 | { 25 | b.Property("Id") 26 | .ValueGeneratedOnAdd() 27 | .HasColumnType("INTEGER"); 28 | 29 | b.Property("Category") 30 | .HasColumnType("INTEGER"); 31 | 32 | b.Property("FilePath") 33 | .IsRequired() 34 | .HasColumnType("TEXT"); 35 | 36 | b.Property("Name") 37 | .IsRequired() 38 | .HasColumnType("TEXT"); 39 | 40 | b.Property("UploadDate") 41 | .HasColumnType("TEXT"); 42 | 43 | b.Property("UserName") 44 | .IsRequired() 45 | .HasColumnType("TEXT"); 46 | 47 | b.HasKey("Id"); 48 | 49 | b.ToTable("Document"); 50 | }); 51 | #pragma warning restore 612, 618 52 | } 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /Migrations/20221123173734_#10.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore.Migrations; 2 | 3 | #nullable disable 4 | 5 | namespace DemoDMS.Migrations 6 | { 7 | /// 8 | public partial class _10 : Migration 9 | { 10 | /// 11 | protected override void Up(MigrationBuilder migrationBuilder) 12 | { 13 | 14 | } 15 | 16 | /// 17 | protected override void Down(MigrationBuilder migrationBuilder) 18 | { 19 | 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Migrations/20221123192301_#11.Designer.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using DemoDMS.Data; 4 | using Microsoft.EntityFrameworkCore; 5 | using Microsoft.EntityFrameworkCore.Infrastructure; 6 | using Microsoft.EntityFrameworkCore.Migrations; 7 | using Microsoft.EntityFrameworkCore.Storage.ValueConversion; 8 | 9 | #nullable disable 10 | 11 | namespace DemoDMS.Migrations 12 | { 13 | [DbContext(typeof(DemoDMSContext))] 14 | [Migration("20221123192301_#11")] 15 | partial class _11 16 | { 17 | /// 18 | protected override void BuildTargetModel(ModelBuilder modelBuilder) 19 | { 20 | #pragma warning disable 612, 618 21 | modelBuilder.HasAnnotation("ProductVersion", "7.0.0"); 22 | 23 | modelBuilder.Entity("DemoDMS.Models.Document", b => 24 | { 25 | b.Property("Id") 26 | .ValueGeneratedOnAdd() 27 | .HasColumnType("INTEGER"); 28 | 29 | b.Property("Category") 30 | .HasColumnType("INTEGER"); 31 | 32 | b.Property("FilePath") 33 | .HasColumnType("TEXT"); 34 | 35 | b.Property("Name") 36 | .IsRequired() 37 | .HasColumnType("TEXT"); 38 | 39 | b.Property("UploadDate") 40 | .HasColumnType("TEXT"); 41 | 42 | b.Property("UserName") 43 | .IsRequired() 44 | .HasColumnType("TEXT"); 45 | 46 | b.HasKey("Id"); 47 | 48 | b.ToTable("Document"); 49 | }); 50 | #pragma warning restore 612, 618 51 | } 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /Migrations/20221123192301_#11.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore.Migrations; 2 | 3 | #nullable disable 4 | 5 | namespace DemoDMS.Migrations 6 | { 7 | /// 8 | public partial class _11 : Migration 9 | { 10 | /// 11 | protected override void Up(MigrationBuilder migrationBuilder) 12 | { 13 | migrationBuilder.AlterColumn( 14 | name: "FilePath", 15 | table: "Document", 16 | type: "TEXT", 17 | nullable: true, 18 | oldClrType: typeof(string), 19 | oldType: "TEXT"); 20 | } 21 | 22 | /// 23 | protected override void Down(MigrationBuilder migrationBuilder) 24 | { 25 | migrationBuilder.AlterColumn( 26 | name: "FilePath", 27 | table: "Document", 28 | type: "TEXT", 29 | nullable: false, 30 | defaultValue: "", 31 | oldClrType: typeof(string), 32 | oldType: "TEXT", 33 | oldNullable: true); 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /Migrations/20221124101225_#12.Designer.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using DemoDMS.Data; 4 | using Microsoft.EntityFrameworkCore; 5 | using Microsoft.EntityFrameworkCore.Infrastructure; 6 | using Microsoft.EntityFrameworkCore.Migrations; 7 | using Microsoft.EntityFrameworkCore.Storage.ValueConversion; 8 | 9 | #nullable disable 10 | 11 | namespace DemoDMS.Migrations 12 | { 13 | [DbContext(typeof(DemoDMSContext))] 14 | [Migration("20221124101225_#12")] 15 | partial class _12 16 | { 17 | /// 18 | protected override void BuildTargetModel(ModelBuilder modelBuilder) 19 | { 20 | #pragma warning disable 612, 618 21 | modelBuilder.HasAnnotation("ProductVersion", "7.0.0"); 22 | 23 | modelBuilder.Entity("DemoDMS.Models.Document", b => 24 | { 25 | b.Property("Id") 26 | .ValueGeneratedOnAdd() 27 | .HasColumnType("INTEGER"); 28 | 29 | b.Property("Category") 30 | .HasColumnType("INTEGER"); 31 | 32 | b.Property("Extension") 33 | .HasColumnType("TEXT"); 34 | 35 | b.Property("FilePath") 36 | .HasColumnType("TEXT"); 37 | 38 | b.Property("Name") 39 | .IsRequired() 40 | .HasColumnType("TEXT"); 41 | 42 | b.Property("UploadDate") 43 | .HasColumnType("TEXT"); 44 | 45 | b.Property("UserName") 46 | .IsRequired() 47 | .HasColumnType("TEXT"); 48 | 49 | b.Property("size") 50 | .HasColumnType("REAL"); 51 | 52 | b.HasKey("Id"); 53 | 54 | b.ToTable("Document"); 55 | }); 56 | #pragma warning restore 612, 618 57 | } 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /Migrations/20221124101225_#12.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore.Migrations; 2 | 3 | #nullable disable 4 | 5 | namespace DemoDMS.Migrations 6 | { 7 | /// 8 | public partial class _12 : Migration 9 | { 10 | /// 11 | protected override void Up(MigrationBuilder migrationBuilder) 12 | { 13 | migrationBuilder.AddColumn( 14 | name: "Extension", 15 | table: "Document", 16 | type: "TEXT", 17 | nullable: true); 18 | 19 | migrationBuilder.AddColumn( 20 | name: "size", 21 | table: "Document", 22 | type: "REAL", 23 | nullable: true); 24 | } 25 | 26 | /// 27 | protected override void Down(MigrationBuilder migrationBuilder) 28 | { 29 | migrationBuilder.DropColumn( 30 | name: "Extension", 31 | table: "Document"); 32 | 33 | migrationBuilder.DropColumn( 34 | name: "size", 35 | table: "Document"); 36 | } 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Migrations/20221124103724_#13.Designer.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using DemoDMS.Data; 4 | using Microsoft.EntityFrameworkCore; 5 | using Microsoft.EntityFrameworkCore.Infrastructure; 6 | using Microsoft.EntityFrameworkCore.Migrations; 7 | using Microsoft.EntityFrameworkCore.Storage.ValueConversion; 8 | 9 | #nullable disable 10 | 11 | namespace DemoDMS.Migrations 12 | { 13 | [DbContext(typeof(DemoDMSContext))] 14 | [Migration("20221124103724_#13")] 15 | partial class _13 16 | { 17 | /// 18 | protected override void BuildTargetModel(ModelBuilder modelBuilder) 19 | { 20 | #pragma warning disable 612, 618 21 | modelBuilder.HasAnnotation("ProductVersion", "7.0.0"); 22 | 23 | modelBuilder.Entity("DemoDMS.Models.Document", b => 24 | { 25 | b.Property("Id") 26 | .ValueGeneratedOnAdd() 27 | .HasColumnType("INTEGER"); 28 | 29 | b.Property("Category") 30 | .HasColumnType("INTEGER"); 31 | 32 | b.Property("Extension") 33 | .HasColumnType("TEXT"); 34 | 35 | b.Property("FilePath") 36 | .HasColumnType("TEXT"); 37 | 38 | b.Property("FileType") 39 | .HasColumnType("TEXT"); 40 | 41 | b.Property("Name") 42 | .IsRequired() 43 | .HasColumnType("TEXT"); 44 | 45 | b.Property("UploadDate") 46 | .HasColumnType("TEXT"); 47 | 48 | b.Property("UserName") 49 | .IsRequired() 50 | .HasColumnType("TEXT"); 51 | 52 | b.Property("size") 53 | .HasColumnType("REAL"); 54 | 55 | b.HasKey("Id"); 56 | 57 | b.ToTable("Document"); 58 | }); 59 | #pragma warning restore 612, 618 60 | } 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /Migrations/20221124103724_#13.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore.Migrations; 2 | 3 | #nullable disable 4 | 5 | namespace DemoDMS.Migrations 6 | { 7 | /// 8 | public partial class _13 : Migration 9 | { 10 | /// 11 | protected override void Up(MigrationBuilder migrationBuilder) 12 | { 13 | migrationBuilder.AddColumn( 14 | name: "FileType", 15 | table: "Document", 16 | type: "TEXT", 17 | nullable: true); 18 | } 19 | 20 | /// 21 | protected override void Down(MigrationBuilder migrationBuilder) 22 | { 23 | migrationBuilder.DropColumn( 24 | name: "FileType", 25 | table: "Document"); 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /Migrations/20221125131702_#14.Designer.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using DemoDMS.Data; 4 | using Microsoft.EntityFrameworkCore; 5 | using Microsoft.EntityFrameworkCore.Infrastructure; 6 | using Microsoft.EntityFrameworkCore.Migrations; 7 | using Microsoft.EntityFrameworkCore.Storage.ValueConversion; 8 | 9 | #nullable disable 10 | 11 | namespace DemoDMS.Migrations 12 | { 13 | [DbContext(typeof(DemoDMSContext))] 14 | [Migration("20221125131702_#14")] 15 | partial class _14 16 | { 17 | /// 18 | protected override void BuildTargetModel(ModelBuilder modelBuilder) 19 | { 20 | #pragma warning disable 612, 618 21 | modelBuilder.HasAnnotation("ProductVersion", "7.0.0"); 22 | 23 | modelBuilder.Entity("DemoDMS.Models.Document", b => 24 | { 25 | b.Property("Id") 26 | .ValueGeneratedOnAdd() 27 | .HasColumnType("INTEGER"); 28 | 29 | b.Property("Category") 30 | .HasColumnType("INTEGER"); 31 | 32 | b.Property("Extension") 33 | .HasColumnType("TEXT"); 34 | 35 | b.Property("FilePath") 36 | .HasColumnType("TEXT"); 37 | 38 | b.Property("FileType") 39 | .HasColumnType("TEXT"); 40 | 41 | b.Property("ModifiedDate") 42 | .HasColumnType("TEXT"); 43 | 44 | b.Property("Name") 45 | .IsRequired() 46 | .HasColumnType("TEXT"); 47 | 48 | b.Property("Size") 49 | .HasColumnType("REAL"); 50 | 51 | b.Property("UploadDate") 52 | .HasColumnType("TEXT"); 53 | 54 | b.Property("UserName") 55 | .IsRequired() 56 | .HasColumnType("TEXT"); 57 | 58 | b.HasKey("Id"); 59 | 60 | b.ToTable("Document"); 61 | }); 62 | #pragma warning restore 612, 618 63 | } 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /Migrations/20221125131702_#14.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Microsoft.EntityFrameworkCore.Migrations; 3 | 4 | #nullable disable 5 | 6 | namespace DemoDMS.Migrations 7 | { 8 | /// 9 | public partial class _14 : Migration 10 | { 11 | /// 12 | protected override void Up(MigrationBuilder migrationBuilder) 13 | { 14 | migrationBuilder.RenameColumn( 15 | name: "size", 16 | table: "Document", 17 | newName: "Size"); 18 | 19 | migrationBuilder.AddColumn( 20 | name: "ModifiedDate", 21 | table: "Document", 22 | type: "TEXT", 23 | nullable: false, 24 | defaultValue: new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified)); 25 | } 26 | 27 | /// 28 | protected override void Down(MigrationBuilder migrationBuilder) 29 | { 30 | migrationBuilder.DropColumn( 31 | name: "ModifiedDate", 32 | table: "Document"); 33 | 34 | migrationBuilder.RenameColumn( 35 | name: "Size", 36 | table: "Document", 37 | newName: "size"); 38 | } 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /Migrations/20221127190746_15.Designer.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using DemoDMS.Data; 4 | using Microsoft.EntityFrameworkCore; 5 | using Microsoft.EntityFrameworkCore.Infrastructure; 6 | using Microsoft.EntityFrameworkCore.Migrations; 7 | using Microsoft.EntityFrameworkCore.Storage.ValueConversion; 8 | 9 | #nullable disable 10 | 11 | namespace DemoDMS.Migrations 12 | { 13 | [DbContext(typeof(DemoDMSContext))] 14 | [Migration("20221127190746_15")] 15 | partial class _15 16 | { 17 | /// 18 | protected override void BuildTargetModel(ModelBuilder modelBuilder) 19 | { 20 | #pragma warning disable 612, 618 21 | modelBuilder.HasAnnotation("ProductVersion", "7.0.0"); 22 | 23 | modelBuilder.Entity("DemoDMS.Models.Document", b => 24 | { 25 | b.Property("Id") 26 | .ValueGeneratedOnAdd() 27 | .HasColumnType("INTEGER"); 28 | 29 | b.Property("Category") 30 | .HasColumnType("INTEGER"); 31 | 32 | b.Property("Extension") 33 | .HasColumnType("TEXT"); 34 | 35 | b.Property("FilePath") 36 | .HasColumnType("TEXT"); 37 | 38 | b.Property("FileType") 39 | .HasColumnType("TEXT"); 40 | 41 | b.Property("ModifiedDate") 42 | .HasColumnType("TEXT"); 43 | 44 | b.Property("Name") 45 | .IsRequired() 46 | .HasColumnType("TEXT"); 47 | 48 | b.Property("Size") 49 | .HasColumnType("REAL"); 50 | 51 | b.Property("UploadDate") 52 | .HasColumnType("TEXT"); 53 | 54 | b.Property("UserName") 55 | .IsRequired() 56 | .HasColumnType("TEXT"); 57 | 58 | b.HasKey("Id"); 59 | 60 | b.ToTable("Document"); 61 | }); 62 | #pragma warning restore 612, 618 63 | } 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /Migrations/20221127190746_15.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore.Migrations; 2 | 3 | #nullable disable 4 | 5 | namespace DemoDMS.Migrations 6 | { 7 | /// 8 | public partial class _15 : Migration 9 | { 10 | /// 11 | protected override void Up(MigrationBuilder migrationBuilder) 12 | { 13 | 14 | } 15 | 16 | /// 17 | protected override void Down(MigrationBuilder migrationBuilder) 18 | { 19 | 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Migrations/20221128055048_16.Designer.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using DemoDMS.Data; 4 | using Microsoft.EntityFrameworkCore; 5 | using Microsoft.EntityFrameworkCore.Infrastructure; 6 | using Microsoft.EntityFrameworkCore.Migrations; 7 | using Microsoft.EntityFrameworkCore.Storage.ValueConversion; 8 | 9 | #nullable disable 10 | 11 | namespace DemoDMS.Migrations 12 | { 13 | [DbContext(typeof(DemoDMSContext))] 14 | [Migration("20221128055048_16")] 15 | partial class _16 16 | { 17 | /// 18 | protected override void BuildTargetModel(ModelBuilder modelBuilder) 19 | { 20 | #pragma warning disable 612, 618 21 | modelBuilder.HasAnnotation("ProductVersion", "7.0.0"); 22 | 23 | modelBuilder.Entity("DemoDMS.Models.Document", b => 24 | { 25 | b.Property("Id") 26 | .ValueGeneratedOnAdd() 27 | .HasColumnType("INTEGER"); 28 | 29 | b.Property("Category") 30 | .HasColumnType("INTEGER"); 31 | 32 | b.Property("Extension") 33 | .HasColumnType("TEXT"); 34 | 35 | b.Property("FilePath") 36 | .HasColumnType("TEXT"); 37 | 38 | b.Property("FileType") 39 | .HasColumnType("TEXT"); 40 | 41 | b.Property("ModifiedDate") 42 | .HasColumnType("TEXT"); 43 | 44 | b.Property("Name") 45 | .IsRequired() 46 | .HasColumnType("TEXT"); 47 | 48 | b.Property("Size") 49 | .HasColumnType("REAL"); 50 | 51 | b.Property("UploadDate") 52 | .HasColumnType("TEXT"); 53 | 54 | b.Property("UserName") 55 | .IsRequired() 56 | .HasColumnType("TEXT"); 57 | 58 | b.HasKey("Id"); 59 | 60 | b.ToTable("Document"); 61 | }); 62 | #pragma warning restore 612, 618 63 | } 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /Migrations/20221128055048_16.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore.Migrations; 2 | 3 | #nullable disable 4 | 5 | namespace DemoDMS.Migrations 6 | { 7 | /// 8 | public partial class _16 : Migration 9 | { 10 | /// 11 | protected override void Up(MigrationBuilder migrationBuilder) 12 | { 13 | 14 | } 15 | 16 | /// 17 | protected override void Down(MigrationBuilder migrationBuilder) 18 | { 19 | 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Migrations/20230111140730_UpdatedFile.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore.Migrations; 2 | 3 | #nullable disable 4 | 5 | namespace DemoDMS.Migrations 6 | { 7 | /// 8 | public partial class UpdatedFile : Migration 9 | { 10 | /// 11 | protected override void Up(MigrationBuilder migrationBuilder) 12 | { 13 | migrationBuilder.AddColumn( 14 | name: "Degree", 15 | table: "Document", 16 | type: "INTEGER", 17 | nullable: false, 18 | defaultValue: 0); 19 | 20 | migrationBuilder.AddColumn( 21 | name: "Department", 22 | table: "Document", 23 | type: "INTEGER", 24 | nullable: false, 25 | defaultValue: 0); 26 | 27 | migrationBuilder.AddColumn( 28 | name: "Faculty", 29 | table: "Document", 30 | type: "INTEGER", 31 | nullable: false, 32 | defaultValue: 0); 33 | 34 | migrationBuilder.AddColumn( 35 | name: "StudentName", 36 | table: "Document", 37 | type: "TEXT", 38 | nullable: true); 39 | 40 | migrationBuilder.AddColumn( 41 | name: "Supervisor", 42 | table: "Document", 43 | type: "TEXT", 44 | nullable: true); 45 | 46 | migrationBuilder.AddColumn( 47 | name: "YearOfPublication", 48 | table: "Document", 49 | type: "INTEGER", 50 | nullable: true); 51 | } 52 | 53 | /// 54 | protected override void Down(MigrationBuilder migrationBuilder) 55 | { 56 | migrationBuilder.DropColumn( 57 | name: "Degree", 58 | table: "Document"); 59 | 60 | migrationBuilder.DropColumn( 61 | name: "Department", 62 | table: "Document"); 63 | 64 | migrationBuilder.DropColumn( 65 | name: "Faculty", 66 | table: "Document"); 67 | 68 | migrationBuilder.DropColumn( 69 | name: "StudentName", 70 | table: "Document"); 71 | 72 | migrationBuilder.DropColumn( 73 | name: "Supervisor", 74 | table: "Document"); 75 | 76 | migrationBuilder.DropColumn( 77 | name: "YearOfPublication", 78 | table: "Document"); 79 | } 80 | } 81 | } 82 | -------------------------------------------------------------------------------- /Migrations/20230112063022_#20.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore.Migrations; 2 | 3 | #nullable disable 4 | 5 | namespace DemoDMS.Migrations 6 | { 7 | /// 8 | public partial class _20 : Migration 9 | { 10 | /// 11 | protected override void Up(MigrationBuilder migrationBuilder) 12 | { 13 | migrationBuilder.AlterColumn( 14 | name: "UserName", 15 | table: "Document", 16 | type: "TEXT", 17 | nullable: true, 18 | oldClrType: typeof(string), 19 | oldType: "TEXT"); 20 | } 21 | 22 | /// 23 | protected override void Down(MigrationBuilder migrationBuilder) 24 | { 25 | migrationBuilder.AlterColumn( 26 | name: "UserName", 27 | table: "Document", 28 | type: "TEXT", 29 | nullable: false, 30 | defaultValue: "", 31 | oldClrType: typeof(string), 32 | oldType: "TEXT", 33 | oldNullable: true); 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /Migrations/20230116142133_25.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Microsoft.EntityFrameworkCore.Migrations; 3 | 4 | #nullable disable 5 | 6 | namespace DemoDMS.Migrations 7 | { 8 | /// 9 | public partial class _25 : Migration 10 | { 11 | /// 12 | protected override void Up(MigrationBuilder migrationBuilder) 13 | { 14 | migrationBuilder.DropColumn( 15 | name: "Category", 16 | table: "Document"); 17 | 18 | migrationBuilder.DropColumn( 19 | name: "YearOfPublication", 20 | table: "Document"); 21 | 22 | migrationBuilder.RenameColumn( 23 | name: "StudentName", 24 | table: "Document", 25 | newName: "Author"); 26 | 27 | migrationBuilder.RenameColumn( 28 | name: "Degree", 29 | table: "Document", 30 | newName: "Level"); 31 | 32 | migrationBuilder.AddColumn( 33 | name: "PublicationDate", 34 | table: "Document", 35 | type: "TEXT", 36 | nullable: false, 37 | defaultValue: new DateTimeOffset(new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 0, 0, 0, 0))); 38 | } 39 | 40 | /// 41 | protected override void Down(MigrationBuilder migrationBuilder) 42 | { 43 | migrationBuilder.DropColumn( 44 | name: "PublicationDate", 45 | table: "Document"); 46 | 47 | migrationBuilder.RenameColumn( 48 | name: "Level", 49 | table: "Document", 50 | newName: "Degree"); 51 | 52 | migrationBuilder.RenameColumn( 53 | name: "Author", 54 | table: "Document", 55 | newName: "StudentName"); 56 | 57 | migrationBuilder.AddColumn( 58 | name: "Category", 59 | table: "Document", 60 | type: "INTEGER", 61 | nullable: false, 62 | defaultValue: 0); 63 | 64 | migrationBuilder.AddColumn( 65 | name: "YearOfPublication", 66 | table: "Document", 67 | type: "INTEGER", 68 | nullable: true); 69 | } 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /Migrations/20230116150155_26.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore.Migrations; 2 | 3 | #nullable disable 4 | 5 | namespace DemoDMS.Migrations 6 | { 7 | /// 8 | public partial class _26 : Migration 9 | { 10 | /// 11 | protected override void Up(MigrationBuilder migrationBuilder) 12 | { 13 | migrationBuilder.RenameColumn( 14 | name: "Supervisor", 15 | table: "Document", 16 | newName: "SupervisorName"); 17 | 18 | migrationBuilder.RenameColumn( 19 | name: "Author", 20 | table: "Document", 21 | newName: "AuthorName"); 22 | } 23 | 24 | /// 25 | protected override void Down(MigrationBuilder migrationBuilder) 26 | { 27 | migrationBuilder.RenameColumn( 28 | name: "SupervisorName", 29 | table: "Document", 30 | newName: "Supervisor"); 31 | 32 | migrationBuilder.RenameColumn( 33 | name: "AuthorName", 34 | table: "Document", 35 | newName: "Author"); 36 | } 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Migrations/20230116152156_27.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore.Migrations; 2 | 3 | #nullable disable 4 | 5 | namespace DemoDMS.Migrations 6 | { 7 | /// 8 | public partial class _27 : Migration 9 | { 10 | /// 11 | protected override void Up(MigrationBuilder migrationBuilder) 12 | { 13 | 14 | } 15 | 16 | /// 17 | protected override void Down(MigrationBuilder migrationBuilder) 18 | { 19 | 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Migrations/20230116170835_#28.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore.Migrations; 2 | 3 | #nullable disable 4 | 5 | namespace DemoDMS.Migrations 6 | { 7 | /// 8 | public partial class _28 : Migration 9 | { 10 | /// 11 | protected override void Up(MigrationBuilder migrationBuilder) 12 | { 13 | 14 | } 15 | 16 | /// 17 | protected override void Down(MigrationBuilder migrationBuilder) 18 | { 19 | 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Migrations/20230116171000_#30.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore.Migrations; 2 | 3 | #nullable disable 4 | 5 | namespace DemoDMS.Migrations 6 | { 7 | /// 8 | public partial class _30 : Migration 9 | { 10 | /// 11 | protected override void Up(MigrationBuilder migrationBuilder) 12 | { 13 | 14 | } 15 | 16 | /// 17 | protected override void Down(MigrationBuilder migrationBuilder) 18 | { 19 | 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Migrations/20230116171552_#31.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore.Migrations; 2 | 3 | #nullable disable 4 | 5 | namespace DemoDMS.Migrations 6 | { 7 | /// 8 | public partial class _31 : Migration 9 | { 10 | /// 11 | protected override void Up(MigrationBuilder migrationBuilder) 12 | { 13 | 14 | } 15 | 16 | /// 17 | protected override void Down(MigrationBuilder migrationBuilder) 18 | { 19 | 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Migrations/20230116182337_#32.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore.Migrations; 2 | 3 | #nullable disable 4 | 5 | namespace DemoDMS.Migrations 6 | { 7 | /// 8 | public partial class _32 : Migration 9 | { 10 | /// 11 | protected override void Up(MigrationBuilder migrationBuilder) 12 | { 13 | migrationBuilder.CreateTable( 14 | name: "Folder", 15 | columns: table => new 16 | { 17 | Id = table.Column(type: "INTEGER", nullable: false) 18 | .Annotation("Sqlite:Autoincrement", true), 19 | Name = table.Column(type: "TEXT", nullable: true) 20 | }, 21 | constraints: table => 22 | { 23 | table.PrimaryKey("PK_Folder", x => x.Id); 24 | }); 25 | } 26 | 27 | /// 28 | protected override void Down(MigrationBuilder migrationBuilder) 29 | { 30 | migrationBuilder.DropTable( 31 | name: "Folder"); 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /Migrations/20230116183417_#34.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore.Migrations; 2 | 3 | #nullable disable 4 | 5 | namespace DemoDMS.Migrations 6 | { 7 | /// 8 | public partial class _34 : Migration 9 | { 10 | /// 11 | protected override void Up(MigrationBuilder migrationBuilder) 12 | { 13 | 14 | } 15 | 16 | /// 17 | protected override void Down(MigrationBuilder migrationBuilder) 18 | { 19 | 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Migrations/20230117074857_35.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Microsoft.EntityFrameworkCore.Migrations; 3 | 4 | #nullable disable 5 | 6 | namespace DemoDMS.Migrations 7 | { 8 | /// 9 | public partial class _35 : Migration 10 | { 11 | /// 12 | protected override void Up(MigrationBuilder migrationBuilder) 13 | { 14 | migrationBuilder.DropColumn( 15 | name: "UserName", 16 | table: "Document"); 17 | 18 | migrationBuilder.RenameColumn( 19 | name: "UploadDate", 20 | table: "Document", 21 | newName: "DateModified"); 22 | 23 | migrationBuilder.RenameColumn( 24 | name: "ModifiedDate", 25 | table: "Document", 26 | newName: "DateCreated"); 27 | 28 | migrationBuilder.AddColumn( 29 | name: "DateCreated", 30 | table: "Folder", 31 | type: "TEXT", 32 | nullable: false, 33 | defaultValue: new DateTimeOffset(new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 0, 0, 0, 0))); 34 | 35 | migrationBuilder.AddColumn( 36 | name: "DateModified", 37 | table: "Folder", 38 | type: "TEXT", 39 | nullable: false, 40 | defaultValue: new DateTimeOffset(new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 0, 0, 0, 0))); 41 | } 42 | 43 | /// 44 | protected override void Down(MigrationBuilder migrationBuilder) 45 | { 46 | migrationBuilder.DropColumn( 47 | name: "DateCreated", 48 | table: "Folder"); 49 | 50 | migrationBuilder.DropColumn( 51 | name: "DateModified", 52 | table: "Folder"); 53 | 54 | migrationBuilder.RenameColumn( 55 | name: "DateModified", 56 | table: "Document", 57 | newName: "UploadDate"); 58 | 59 | migrationBuilder.RenameColumn( 60 | name: "DateCreated", 61 | table: "Document", 62 | newName: "ModifiedDate"); 63 | 64 | migrationBuilder.AddColumn( 65 | name: "UserName", 66 | table: "Document", 67 | type: "TEXT", 68 | nullable: true); 69 | } 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /Migrations/20230117170630_#41.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore.Migrations; 2 | 3 | #nullable disable 4 | 5 | namespace DemoDMS.Migrations 6 | { 7 | /// 8 | public partial class _41 : Migration 9 | { 10 | /// 11 | protected override void Up(MigrationBuilder migrationBuilder) 12 | { 13 | migrationBuilder.AddColumn( 14 | name: "ParentId", 15 | table: "Document", 16 | type: "INTEGER", 17 | nullable: false, 18 | defaultValue: 0); 19 | } 20 | 21 | /// 22 | protected override void Down(MigrationBuilder migrationBuilder) 23 | { 24 | migrationBuilder.DropColumn( 25 | name: "ParentId", 26 | table: "Document"); 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /Migrations/20230117170936_#43.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore.Migrations; 2 | 3 | #nullable disable 4 | 5 | namespace DemoDMS.Migrations 6 | { 7 | /// 8 | public partial class _43 : Migration 9 | { 10 | /// 11 | protected override void Up(MigrationBuilder migrationBuilder) 12 | { 13 | migrationBuilder.AddColumn( 14 | name: "ParentId", 15 | table: "Folder", 16 | type: "INTEGER", 17 | nullable: false, 18 | defaultValue: 0); 19 | } 20 | 21 | /// 22 | protected override void Down(MigrationBuilder migrationBuilder) 23 | { 24 | migrationBuilder.DropColumn( 25 | name: "ParentId", 26 | table: "Folder"); 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /Models/Document.cs: -------------------------------------------------------------------------------- 1 | using System.ComponentModel.DataAnnotations; 2 | using System.ComponentModel.DataAnnotations.Schema; 3 | 4 | namespace DemoDMS.Models 5 | { 6 | public class Document: Item 7 | { 8 | public int Id { get; set; } 9 | 10 | public bool IsComposite() { 11 | return false; 12 | } 13 | 14 | [Required] 15 | public string? Name { get; set; } 16 | 17 | [DataType(DataType.DateTime)] 18 | public DateTime DateCreated { get; set; } 19 | 20 | [DataType(DataType.DateTime)] 21 | public DateTime DateModified { get; set; } 22 | 23 | public string? Extension { get; set;} 24 | 25 | public double? Size { get; set;} 26 | 27 | public string? FilePath { get; set; } 28 | 29 | public string? FileType { get; set; } 30 | 31 | public string? AuthorName { get; set; } 32 | 33 | public string? SupervisorName { get; set; } 34 | 35 | public Level Level { get; set; } 36 | 37 | public Department Department { get; set; } 38 | 39 | public Faculty Faculty { get; set; } 40 | 41 | [DataType(DataType.DateTime)] 42 | public DateTime PublicationDate { get; set; } 43 | 44 | public int ParentId {get; set;} 45 | } 46 | 47 | public enum Level {کارشناسی, ارشد, دکترا} 48 | 49 | public enum Department {فنی, ادبیات, علوم} 50 | 51 | public enum Faculty {برق, کامپیوتر} 52 | } -------------------------------------------------------------------------------- /Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- 1 | namespace DemoDMS.Models; 2 | 3 | public class ErrorViewModel 4 | { 5 | public string? RequestId { get; set; } 6 | 7 | public bool ShowRequestId => !string.IsNullOrEmpty(RequestId); 8 | } 9 | -------------------------------------------------------------------------------- /Models/Folder.cs: -------------------------------------------------------------------------------- 1 | using System.ComponentModel.DataAnnotations; 2 | using System.ComponentModel.DataAnnotations.Schema; 3 | 4 | namespace DemoDMS.Models 5 | { 6 | public class Folder: Item 7 | { 8 | public int Id { get; set; } 9 | 10 | public bool IsComposite() { 11 | return true; 12 | } 13 | 14 | public string? Name { get; set; } 15 | 16 | [DataType(DataType.DateTime)] 17 | public DateTime DateCreated { get; set; } 18 | 19 | [DataType(DataType.DateTime)] 20 | public DateTime DateModified { get; set; } 21 | 22 | public List Contents = new List(); 23 | 24 | public int ParentId {get; set;} 25 | } 26 | } -------------------------------------------------------------------------------- /Models/Item.cs: -------------------------------------------------------------------------------- 1 | using System.ComponentModel.DataAnnotations; 2 | using System.ComponentModel.DataAnnotations.Schema; 3 | 4 | namespace DemoDMS.Models 5 | { 6 | public interface Item { 7 | int Id {set; get;} 8 | 9 | string? Name { get; set; } 10 | 11 | [DataType(DataType.DateTime)] 12 | DateTime DateCreated { get; set; } 13 | 14 | [DataType(DataType.DateTime)] 15 | DateTime DateModified { get; set; } 16 | 17 | bool IsComposite(); 18 | 19 | int ParentId {get; set;} 20 | } 21 | } -------------------------------------------------------------------------------- /PersianDateExtensionMethods.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using System.Reflection; 4 | 5 | namespace System 6 | { 7 | public static class PersianDateExtensionMethods 8 | { 9 | private static CultureInfo _Culture; 10 | public static CultureInfo GetPersianCulture() 11 | { 12 | if (_Culture == null) 13 | { 14 | _Culture = new CultureInfo("fa-IR"); 15 | 16 | System.Globalization.Calendar cal = new PersianCalendar(); 17 | 18 | DateTimeFormatInfo formatInfo = _Culture.DateTimeFormat; 19 | 20 | formatInfo.AbbreviatedDayNames = new[] { "ی", "د", "س", "چ", "پ", "ج", "ش" }; 21 | formatInfo.DayNames = new[] { "یکشنبه", "دوشنبه", "سه شنبه", "چهار شنبه", "پنجشنبه", "جمعه", "شنبه" }; 22 | formatInfo.AbbreviatedMonthNames 23 | = formatInfo.MonthNames 24 | = formatInfo.MonthGenitiveNames 25 | = formatInfo.AbbreviatedMonthGenitiveNames 26 | = new[] { "فروردین", "اردیبهشت", "خرداد", "تیر", "مرداد", "شهریور", "مهر", "آبان", "آذر", "دی", "بهمن", "اسفند", "" }; 27 | 28 | formatInfo.AMDesignator = "ق.ظ"; 29 | formatInfo.PMDesignator = "ب.ظ"; 30 | 31 | formatInfo.ShortDatePattern = "yyyy/MM/dd"; 32 | formatInfo.LongDatePattern = "dddd, dd MMMM,yyyy"; 33 | 34 | formatInfo.ShortTimePattern = "HH:mm:ss"; 35 | formatInfo.LongTimePattern = "HH:mm:ss"; 36 | 37 | formatInfo.FullDateTimePattern = "yyyy/MM/dd HH:mm:ss"; 38 | 39 | formatInfo.FirstDayOfWeek = DayOfWeek.Saturday; 40 | 41 | FieldInfo fieldInfo = _Culture.GetType().GetField("calendar", BindingFlags.NonPublic | BindingFlags.Instance); 42 | if (fieldInfo != null) 43 | fieldInfo.SetValue(_Culture, cal); 44 | 45 | FieldInfo info = formatInfo.GetType().GetField("calendar", BindingFlags.NonPublic | BindingFlags.Instance); 46 | if (info != null) 47 | info.SetValue(formatInfo, cal); 48 | 49 | _Culture.NumberFormat.NumberDecimalSeparator = "/"; 50 | _Culture.NumberFormat.DigitSubstitution = DigitShapes.NativeNational; 51 | _Culture.NumberFormat.NumberNegativePattern = 0; 52 | } 53 | 54 | return _Culture; 55 | } 56 | 57 | public static string ToPersianDateString(this DateTime date) 58 | { 59 | string format = "yyyy/MM/dd HH:mm:ss"; 60 | return date.ToLocalTime().ToString(format, GetPersianCulture()); 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore; 2 | using Microsoft.Extensions.DependencyInjection; 3 | using Microsoft.AspNetCore.Builder; 4 | using Microsoft.Extensions.Hosting; 5 | using DemoDMS.Data; 6 | using System.Globalization; 7 | 8 | CultureInfo.DefaultThreadCurrentCulture 9 | = CultureInfo.DefaultThreadCurrentUICulture 10 | = PersianDateExtensionMethods.GetPersianCulture(); 11 | 12 | var builder = WebApplication.CreateBuilder(args); 13 | builder.Services.AddDbContext(options => 14 | options.UseSqlite(builder.Configuration.GetConnectionString("DemoDMSContext") ?? throw new InvalidOperationException("Connection string 'DemoDMScnt' not found."))); 15 | 16 | builder.Services.AddPortableObjectLocalization(); 17 | 18 | builder.Services.Configure(options => options 19 | .AddSupportedCultures("fa") 20 | .AddSupportedUICultures("fa")); 21 | 22 | builder.Services.AddMvc().AddViewLocalization(); 23 | 24 | builder.Services.AddDbContext( 25 | options => options.UseSqlite( 26 | builder.Configuration.GetConnectionString("DemoDMSContext") 27 | ?? throw new InvalidOperationException("Connection string 'DemoDMSContext' not found."))); 28 | 29 | // Add services to the container. 30 | builder.Services.AddControllersWithViews(); 31 | 32 | var app = builder.Build(); 33 | 34 | // Configure the HTTP request pipeline. 35 | if (!app.Environment.IsDevelopment()) 36 | { 37 | app.UseExceptionHandler("/Home/Error"); 38 | // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts. 39 | app.UseHsts(); 40 | } 41 | 42 | app.UseHttpsRedirection(); 43 | 44 | app.UseStaticFiles(); 45 | 46 | app.UseRouting(); 47 | 48 | app.UseAuthorization(); 49 | 50 | app.MapControllerRoute( 51 | name: "default", 52 | pattern: "{controller=Home}/{action=Index}/{id?}"); 53 | 54 | app.UseRequestLocalization(); 55 | 56 | app.MapRazorPages(); 57 | 58 | app.Run(); 59 | -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "iisSettings": { 3 | "windowsAuthentication": false, 4 | "anonymousAuthentication": true, 5 | "iisExpress": { 6 | "applicationUrl": "http://localhost:58675", 7 | "sslPort": 44361 8 | } 9 | }, 10 | "profiles": { 11 | "http": { 12 | "commandName": "Project", 13 | "dotnetRunMessages": true, 14 | "launchBrowser": true, 15 | "applicationUrl": "http://localhost:5172", 16 | "environmentVariables": { 17 | "ASPNETCORE_ENVIRONMENT": "Development" 18 | } 19 | }, 20 | "https": { 21 | "commandName": "Project", 22 | "dotnetRunMessages": true, 23 | "launchBrowser": true, 24 | "applicationUrl": "https://localhost:7054;http://localhost:5172", 25 | "environmentVariables": { 26 | "ASPNETCORE_ENVIRONMENT": "Development" 27 | } 28 | }, 29 | "IIS Express": { 30 | "commandName": "IISExpress", 31 | "launchBrowser": true, 32 | "environmentVariables": { 33 | "ASPNETCORE_ENVIRONMENT": "Development" 34 | } 35 | } 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # DMS Project 2 | A Document Management System made with ASP.NET CORE MVC 3 | 4 | # About 5 | This software started as a project for my Software Engineering class. After that, my classmate and I continued adding more features while also working on the design and UI. 6 | 7 | 8 | # Features 9 | 10 | - Store folders and files in a tree like structure 11 | - Switch between languages with ASP.NET Localizer 12 | - Sort and search through folders and files 13 | - Download and edit files with a single click 14 | 15 |
16 | 17 | 18 | ![Screen Shot](https://github.com/Procedurally-Generated-Human/Document-Management-System/blob/main/ScreenShot.jpeg) 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /ScreenShot.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/ScreenShot.jpeg -------------------------------------------------------------------------------- /Views/Folders/Create.cshtml: -------------------------------------------------------------------------------- 1 | @using Microsoft.AspNetCore.Mvc.Localization; 2 | @inject IViewLocalizer Localizer; 3 | 4 | @model DemoDMS.Models.Folder 5 | 6 | @{ 7 | ViewBag.title = Localizer["Create"]; 8 | } 9 | 10 |

@Localizer["Create"]

11 | 12 |

@Localizer["Folder"]

13 | 14 |
15 | 16 |
17 |
18 |
19 |
20 |
21 | 22 | 23 | 24 |
25 | 26 |
27 | 28 |
29 | 30 | 31 |
32 |
33 |
34 |
35 | 36 | @section Scripts { 37 | @{await Html.RenderPartialAsync("_ValidationScriptsPartial");} 38 | } 39 | -------------------------------------------------------------------------------- /Views/Folders/Delete.cshtml: -------------------------------------------------------------------------------- 1 | @using Microsoft.AspNetCore.Mvc.Localization; 2 | @inject IViewLocalizer Localizer; 3 | 4 | @model DemoDMS.Models.Folder 5 | 6 | @{ 7 | ViewBag.title = Localizer["Delete"]; 8 | } 9 | 10 |

@Localizer["Delete"]

11 | 12 |

@Localizer["Are you sure you want to delete this?"]

13 | 14 |
15 | 16 |
17 |

@Localizer["Folder"]

18 |
19 |
20 |
21 | @Localizer[Html.DisplayNameFor(model => model.Name)] 22 |
23 |
24 | @Html.DisplayFor(model => model.Name) 25 |
26 |
27 | 28 |
29 | 30 | 31 | 32 |
33 |
34 | -------------------------------------------------------------------------------- /Views/Folders/Edit.cshtml: -------------------------------------------------------------------------------- 1 | @using Microsoft.AspNetCore.Mvc.Localization; 2 | @inject IViewLocalizer Localizer; 3 | 4 | @model DemoDMS.Models.Folder 5 | 6 | @{ 7 | ViewBag.title = Localizer["Edit"]; 8 | } 9 | 10 |

@Localizer["Edit"]

11 | 12 |

@Localizer["Folder"]

13 | 14 |
15 | 16 |
17 |
18 |
19 |
20 | 21 |
22 | 23 | 24 | 25 |
26 | 27 |
28 | 29 |
30 | 31 | 32 |
33 |
34 |
35 |
36 | 37 | @section Scripts { 38 | @{await Html.RenderPartialAsync("_ValidationScriptsPartial");} 39 | } 40 | -------------------------------------------------------------------------------- /Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | @using Microsoft.AspNetCore.Mvc.Localization; 2 | @inject IViewLocalizer Localizer; 3 | 4 | @{ 5 | ViewData["Title"] = Localizer["Home Page"]; 6 | } 7 | 8 |
9 |

@Localizer["Document Managment System"]

10 |

11 | @Localizer["A system made for storing, editing, searching and downloading files"] 12 |
13 | @Localizer["By: M.Ali.A and M.Parsa.T"] 14 |

15 | 16 |
17 | 18 |
19 |
20 |
21 | 22 |
23 |
24 |
25 |
26 |
27 |
@Localizer["Edit and Download"]
28 |

@Localizer["Edit and view files and document data with just a few clicks. Using the action buttons you can easily delete or download any document."]

29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
@Localizer["Keep Your Files Organized"]
37 |

@Localizer["Electronic document storage increases productivity and security, while reducing costs and human error. Using a DMS can improve file accessibility and keeps everything nice and tidy."]

38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
@Localizer["Search and Sort"]
46 |

@Localizer["Search through files to increase accessibility. Click any column to sort all documents by that paramater. You can sort both in ascending and descending order."]

47 |
48 |
49 |
50 |
-------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Views/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- 1 | /* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification 2 | for details on configuring this project to bundle and minify static web assets. */ 3 | 4 | a.navbar-brand { 5 | white-space: normal; 6 | text-align: center; 7 | word-break: break-all; 8 | } 9 | 10 | a { 11 | color: #0077cc; 12 | } 13 | 14 | .btn-primary { 15 | color: #fff; 16 | background-color: #1b6ec2; 17 | border-color: #1861ac; 18 | } 19 | 20 | .nav-pills .nav-link.active, .nav-pills .show > .nav-link { 21 | color: #fff; 22 | background-color: #1b6ec2; 23 | border-color: #1861ac; 24 | } 25 | 26 | .border-top { 27 | border-top: 1px solid #e5e5e5; 28 | } 29 | .border-bottom { 30 | border-bottom: 1px solid #e5e5e5; 31 | } 32 | 33 | .box-shadow { 34 | box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); 35 | } 36 | 37 | button.accept-policy { 38 | font-size: 1rem; 39 | line-height: inherit; 40 | } 41 | 42 | .footer { 43 | position: absolute; 44 | bottom: 0; 45 | width: 100%; 46 | white-space: nowrap; 47 | line-height: 60px; 48 | } 49 | 50 | -------------------------------------------------------------------------------- /Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using DemoDMS 2 | @using DemoDMS.Models 3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 4 | -------------------------------------------------------------------------------- /Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | }, 8 | "AllowedHosts": "*", 9 | "ConnectionStrings": { 10 | "DemoDMSContext": "Data Source=DemoDMS.Data.db", 11 | "DemoDMScnt": "Data Source=DemoDMS.Data.db" 12 | } 13 | } -------------------------------------------------------------------------------- /bin/Debug/net7.0/Azure.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Azure.Core.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Azure.Identity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Azure.Identity.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/DemoDMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/DemoDMS -------------------------------------------------------------------------------- /bin/Debug/net7.0/DemoDMS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/DemoDMS.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/DemoDMS.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/DemoDMS.pdb -------------------------------------------------------------------------------- /bin/Debug/net7.0/DemoDMS.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net7.0", 4 | "frameworks": [ 5 | { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "7.0.0" 8 | }, 9 | { 10 | "name": "Microsoft.AspNetCore.App", 11 | "version": "7.0.0" 12 | } 13 | ], 14 | "configProperties": { 15 | "System.GC.Server": true, 16 | "System.Reflection.NullabilityInfoContext.IsSupported": true, 17 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /bin/Debug/net7.0/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Humanizer.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/MessagePack.Annotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/MessagePack.Annotations.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/MessagePack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/MessagePack.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.AspNetCore.Razor.Language.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.AspNetCore.Razor.Language.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.Build.Framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.Build.Framework.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.Build.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.Build.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.Features.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.Features.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.CodeAnalysis.Features.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.CodeAnalysis.Features.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.CodeAnalysis.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.CodeAnalysis.Razor.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.CodeAnalysis.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.CodeAnalysis.Scripting.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.CodeAnalysis.VisualBasic.Features.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.CodeAnalysis.VisualBasic.Features.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.CodeAnalysis.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.CodeAnalysis.VisualBasic.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.CodeAnalysis.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.CodeAnalysis.Workspaces.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.Data.Sqlite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.Data.Sqlite.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.DiaSymReader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.DiaSymReader.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.DotNet.Scaffolding.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.DotNet.Scaffolding.Shared.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Design.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Sqlite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Sqlite.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.Extensions.DependencyModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.Extensions.DependencyModel.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.Identity.Client.Extensions.Msal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.Identity.Client.Extensions.Msal.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.IdentityModel.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.IdentityModel.Abstractions.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.NET.StringTools.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.NET.StringTools.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.SqlServer.Server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.SqlServer.Server.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.VisualStudio.Debugger.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.VisualStudio.Debugger.Contracts.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Mono.TextTemplating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Mono.TextTemplating.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/NuGet.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/NuGet.Common.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/NuGet.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/NuGet.Configuration.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/NuGet.DependencyResolver.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/NuGet.DependencyResolver.Core.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/NuGet.LibraryModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/NuGet.LibraryModel.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/NuGet.Packaging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/NuGet.Packaging.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/NuGet.ProjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/NuGet.ProjectModel.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/NuGet.Protocol.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/NuGet.Protocol.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/NuGet.Versioning.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/NuGet.Versioning.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/OrchardCore.Localization.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/OrchardCore.Localization.Abstractions.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/OrchardCore.Localization.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/OrchardCore.Localization.Core.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/SQLitePCLRaw.batteries_v2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/SQLitePCLRaw.batteries_v2.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/SQLitePCLRaw.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/SQLitePCLRaw.core.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/SQLitePCLRaw.provider.e_sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/SQLitePCLRaw.provider.e_sqlite3.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/System.CodeDom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/System.CodeDom.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/System.Composition.AttributedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/System.Composition.AttributedModel.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/System.Composition.Convention.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/System.Composition.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/System.Composition.Hosting.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/System.Composition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/System.Composition.Runtime.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/System.Composition.TypedParts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/System.Memory.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/System.Memory.Data.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/System.Reflection.MetadataLoadContext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/System.Reflection.MetadataLoadContext.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/System.Security.Permissions.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /bin/Debug/net7.0/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | }, 8 | "AllowedHosts": "*", 9 | "ConnectionStrings": { 10 | "DemoDMSContext": "Data Source=DemoDMS.Data.db", 11 | "DemoDMScnt": "Data Source=DemoDMS.Data.db" 12 | } 13 | } -------------------------------------------------------------------------------- /bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/de/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/de/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/dotnet-aspnet-codegenerator-design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/dotnet-aspnet-codegenerator-design.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/es/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/es/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/it/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/it/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/alpine-arm/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/alpine-arm/native/libe_sqlite3.so -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/alpine-arm64/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/alpine-arm64/native/libe_sqlite3.so -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/alpine-x64/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/alpine-x64/native/libe_sqlite3.so -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/browser-wasm/nativeassets/net7.0/e_sqlite3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/browser-wasm/nativeassets/net7.0/e_sqlite3.a -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/linux-arm/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/linux-arm/native/libe_sqlite3.so -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/linux-arm64/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/linux-arm64/native/libe_sqlite3.so -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/linux-armel/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/linux-armel/native/libe_sqlite3.so -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/linux-mips64/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/linux-mips64/native/libe_sqlite3.so -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/linux-musl-arm/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/linux-musl-arm/native/libe_sqlite3.so -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/linux-musl-x64/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libe_sqlite3.so -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/linux-s390x/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/linux-s390x/native/libe_sqlite3.so -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/linux-x64/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/linux-x64/native/libe_sqlite3.so -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/linux-x86/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/linux-x86/native/libe_sqlite3.so -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/osx-arm64/native/libe_sqlite3.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/osx-arm64/native/libe_sqlite3.dylib -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/osx-x64/native/libe_sqlite3.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/osx-x64/native/libe_sqlite3.dylib -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/win-arm/native/e_sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/win-arm/native/e_sqlite3.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/win-arm64/native/e_sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/win-arm64/native/e_sqlite3.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/win-x64/native/e_sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/win-x64/native/e_sqlite3.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/win-x86/native/e_sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/win-x86/native/e_sqlite3.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] 5 | -------------------------------------------------------------------------------- /obj/Debug/net7.0/DemoDMS.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | using System; 11 | using System.Reflection; 12 | 13 | [assembly: System.Reflection.AssemblyCompanyAttribute("DemoDMS")] 14 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 15 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 16 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 17 | [assembly: System.Reflection.AssemblyProductAttribute("DemoDMS")] 18 | [assembly: System.Reflection.AssemblyTitleAttribute("DemoDMS")] 19 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 20 | 21 | // Generated by the MSBuild WriteCodeFragment class. 22 | 23 | -------------------------------------------------------------------------------- /obj/Debug/net7.0/DemoDMS.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | ba4aaa4ae1f1225630465b2af4fb2334d291e6a8 2 | -------------------------------------------------------------------------------- /obj/Debug/net7.0/DemoDMS.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::Microsoft.AspNetCore.Builder; 3 | global using global::Microsoft.AspNetCore.Hosting; 4 | global using global::Microsoft.AspNetCore.Http; 5 | global using global::Microsoft.AspNetCore.Routing; 6 | global using global::Microsoft.Extensions.Configuration; 7 | global using global::Microsoft.Extensions.DependencyInjection; 8 | global using global::Microsoft.Extensions.Hosting; 9 | global using global::Microsoft.Extensions.Logging; 10 | global using global::System; 11 | global using global::System.Collections.Generic; 12 | global using global::System.IO; 13 | global using global::System.Linq; 14 | global using global::System.Net.Http; 15 | global using global::System.Net.Http.Json; 16 | global using global::System.Threading; 17 | global using global::System.Threading.Tasks; 18 | -------------------------------------------------------------------------------- /obj/Debug/net7.0/DemoDMS.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/obj/Debug/net7.0/DemoDMS.MvcApplicationPartsAssemblyInfo.cache -------------------------------------------------------------------------------- /obj/Debug/net7.0/DemoDMS.MvcApplicationPartsAssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | using System; 11 | using System.Reflection; 12 | 13 | [assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("OrchardCore.Localization.Abstractions")] 14 | [assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("OrchardCore.Localization.Core")] 15 | 16 | // Generated by the MSBuild WriteCodeFragment class. 17 | 18 | -------------------------------------------------------------------------------- /obj/Debug/net7.0/DemoDMS.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 5860763757f4f08c7ebdea1b3a94a18109f17861 2 | -------------------------------------------------------------------------------- /obj/Debug/net7.0/DemoDMS.RazorAssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | using System; 11 | using System.Reflection; 12 | 13 | [assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ProvideApplicationPartFactoryAttribute("Microsoft.AspNetCore.Mvc.ApplicationParts.ConsolidatedAssemblyApplicationPartFact" + 14 | "ory, Microsoft.AspNetCore.Mvc.Razor")] 15 | 16 | // Generated by the MSBuild WriteCodeFragment class. 17 | 18 | -------------------------------------------------------------------------------- /obj/Debug/net7.0/DemoDMS.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/obj/Debug/net7.0/DemoDMS.assets.cache -------------------------------------------------------------------------------- /obj/Debug/net7.0/DemoDMS.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/obj/Debug/net7.0/DemoDMS.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /obj/Debug/net7.0/DemoDMS.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/obj/Debug/net7.0/DemoDMS.csproj.CopyComplete -------------------------------------------------------------------------------- /obj/Debug/net7.0/DemoDMS.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 7dcf4dfbc1592517671cd828babedc05d65e98fb 2 | -------------------------------------------------------------------------------- /obj/Debug/net7.0/DemoDMS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/obj/Debug/net7.0/DemoDMS.dll -------------------------------------------------------------------------------- /obj/Debug/net7.0/DemoDMS.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 2f5f7c9c4585f6d639f00f9c348f8ff70d49f288 2 | -------------------------------------------------------------------------------- /obj/Debug/net7.0/DemoDMS.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/obj/Debug/net7.0/DemoDMS.pdb -------------------------------------------------------------------------------- /obj/Debug/net7.0/apphost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/obj/Debug/net7.0/apphost -------------------------------------------------------------------------------- /obj/Debug/net7.0/ref/DemoDMS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/obj/Debug/net7.0/ref/DemoDMS.dll -------------------------------------------------------------------------------- /obj/Debug/net7.0/refint/DemoDMS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/obj/Debug/net7.0/refint/DemoDMS.dll -------------------------------------------------------------------------------- /obj/Debug/net7.0/scopedcss/Views/Shared/_Layout.cshtml.rz.scp.css: -------------------------------------------------------------------------------- 1 | /* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification 2 | for details on configuring this project to bundle and minify static web assets. */ 3 | 4 | a.navbar-brand[b-g8mmi8ykts] { 5 | white-space: normal; 6 | text-align: center; 7 | word-break: break-all; 8 | } 9 | 10 | a[b-g8mmi8ykts] { 11 | color: #0077cc; 12 | } 13 | 14 | .btn-primary[b-g8mmi8ykts] { 15 | color: #fff; 16 | background-color: #1b6ec2; 17 | border-color: #1861ac; 18 | } 19 | 20 | .nav-pills .nav-link.active[b-g8mmi8ykts], .nav-pills .show > .nav-link[b-g8mmi8ykts] { 21 | color: #fff; 22 | background-color: #1b6ec2; 23 | border-color: #1861ac; 24 | } 25 | 26 | .border-top[b-g8mmi8ykts] { 27 | border-top: 1px solid #e5e5e5; 28 | } 29 | .border-bottom[b-g8mmi8ykts] { 30 | border-bottom: 1px solid #e5e5e5; 31 | } 32 | 33 | .box-shadow[b-g8mmi8ykts] { 34 | box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); 35 | } 36 | 37 | button.accept-policy[b-g8mmi8ykts] { 38 | font-size: 1rem; 39 | line-height: inherit; 40 | } 41 | 42 | .footer[b-g8mmi8ykts] { 43 | position: absolute; 44 | bottom: 0; 45 | width: 100%; 46 | white-space: nowrap; 47 | line-height: 60px; 48 | } 49 | 50 | -------------------------------------------------------------------------------- /obj/Debug/net7.0/scopedcss/bundle/DemoDMS.styles.css: -------------------------------------------------------------------------------- 1 | /* _content/DemoDMS/Views/Shared/_Layout.cshtml.rz.scp.css */ 2 | /* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification 3 | for details on configuring this project to bundle and minify static web assets. */ 4 | 5 | a.navbar-brand[b-g8mmi8ykts] { 6 | white-space: normal; 7 | text-align: center; 8 | word-break: break-all; 9 | } 10 | 11 | a[b-g8mmi8ykts] { 12 | color: #0077cc; 13 | } 14 | 15 | .btn-primary[b-g8mmi8ykts] { 16 | color: #fff; 17 | background-color: #1b6ec2; 18 | border-color: #1861ac; 19 | } 20 | 21 | .nav-pills .nav-link.active[b-g8mmi8ykts], .nav-pills .show > .nav-link[b-g8mmi8ykts] { 22 | color: #fff; 23 | background-color: #1b6ec2; 24 | border-color: #1861ac; 25 | } 26 | 27 | .border-top[b-g8mmi8ykts] { 28 | border-top: 1px solid #e5e5e5; 29 | } 30 | .border-bottom[b-g8mmi8ykts] { 31 | border-bottom: 1px solid #e5e5e5; 32 | } 33 | 34 | .box-shadow[b-g8mmi8ykts] { 35 | box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); 36 | } 37 | 38 | button.accept-policy[b-g8mmi8ykts] { 39 | font-size: 1rem; 40 | line-height: inherit; 41 | } 42 | 43 | .footer[b-g8mmi8ykts] { 44 | position: absolute; 45 | bottom: 0; 46 | width: 100%; 47 | white-space: nowrap; 48 | line-height: 60px; 49 | } 50 | 51 | -------------------------------------------------------------------------------- /obj/Debug/net7.0/scopedcss/projectbundle/DemoDMS.bundle.scp.css: -------------------------------------------------------------------------------- 1 | /* _content/DemoDMS/Views/Shared/_Layout.cshtml.rz.scp.css */ 2 | /* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification 3 | for details on configuring this project to bundle and minify static web assets. */ 4 | 5 | a.navbar-brand[b-g8mmi8ykts] { 6 | white-space: normal; 7 | text-align: center; 8 | word-break: break-all; 9 | } 10 | 11 | a[b-g8mmi8ykts] { 12 | color: #0077cc; 13 | } 14 | 15 | .btn-primary[b-g8mmi8ykts] { 16 | color: #fff; 17 | background-color: #1b6ec2; 18 | border-color: #1861ac; 19 | } 20 | 21 | .nav-pills .nav-link.active[b-g8mmi8ykts], .nav-pills .show > .nav-link[b-g8mmi8ykts] { 22 | color: #fff; 23 | background-color: #1b6ec2; 24 | border-color: #1861ac; 25 | } 26 | 27 | .border-top[b-g8mmi8ykts] { 28 | border-top: 1px solid #e5e5e5; 29 | } 30 | .border-bottom[b-g8mmi8ykts] { 31 | border-bottom: 1px solid #e5e5e5; 32 | } 33 | 34 | .box-shadow[b-g8mmi8ykts] { 35 | box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); 36 | } 37 | 38 | button.accept-policy[b-g8mmi8ykts] { 39 | font-size: 1rem; 40 | line-height: inherit; 41 | } 42 | 43 | .footer[b-g8mmi8ykts] { 44 | position: absolute; 45 | bottom: 0; 46 | width: 100%; 47 | white-space: nowrap; 48 | line-height: 60px; 49 | } 50 | 51 | -------------------------------------------------------------------------------- /obj/Debug/net7.0/staticwebassets/msbuild.build.DemoDMS.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.DemoDMS.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.DemoDMS.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /obj/DemoDMS.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | /Users/parsa/.nuget/packages/ 8 | /Users/parsa/.nuget/packages/ 9 | PackageReference 10 | 6.4.0 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | /Users/parsa/.nuget/packages/messagepackanalyzer/2.1.152 21 | /Users/parsa/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.2 22 | /Users/parsa/.nuget/packages/microsoft.codeanalysis.analyzerutilities/3.3.0 23 | 24 | -------------------------------------------------------------------------------- /obj/DemoDMS.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /wwwroot/css/site.css: -------------------------------------------------------------------------------- 1 | html { 2 | font-size: 14px; 3 | } 4 | 5 | @media (min-width: 768px) { 6 | html { 7 | font-size: 16px; 8 | } 9 | } 10 | 11 | .btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus { 12 | box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb; 13 | } 14 | 15 | html { 16 | position: relative; 17 | min-height: 100%; 18 | } 19 | 20 | body { 21 | margin-bottom: 60px; 22 | } -------------------------------------------------------------------------------- /wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/Document-Management-System/5d8b9fe39798e78b0649fd1ab8e512f3a2d78fcc/wwwroot/favicon.ico -------------------------------------------------------------------------------- /wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification 2 | // for details on configuring this project to bundle and minify static web assets. 3 | 4 | // Write your JavaScript code. 5 | -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2011-2021 Twitter, Inc. 4 | Copyright (c) 2011-2021 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 | -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) .NET Foundation and Contributors 4 | 5 | All rights reserved. 6 | 7 | Permission is hereby granted, free of charge, to any person obtaining a copy 8 | of this software and associated documentation files (the "Software"), to deal 9 | in the Software without restriction, including without limitation the rights 10 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 11 | copies of the Software, and to permit persons to whom the Software is 12 | furnished to do so, subject to the following conditions: 13 | 14 | The above copyright notice and this permission notice shall be included in all 15 | copies or substantial portions of the Software. 16 | 17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 20 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 21 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 22 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 23 | SOFTWARE. 24 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- 1 | 2 | Copyright OpenJS Foundation and other contributors, https://openjsf.org/ 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining 5 | a copy of this software and associated documentation files (the 6 | "Software"), to deal in the Software without restriction, including 7 | without limitation the rights to use, copy, modify, merge, publish, 8 | distribute, sublicense, and/or sell copies of the Software, and to 9 | permit persons to whom the Software is furnished to do so, subject to 10 | the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 17 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 19 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 20 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 21 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------