├── .editorconfig ├── .vs └── Expense Tracker │ ├── DesignTimeBuild │ └── .dtbcache.v2 │ └── v17 │ ├── .futdcache.v1 │ └── .suo ├── Expense Tracker.sln ├── Expense Tracker ├── Controllers │ ├── CategoryController.cs │ ├── DashboardController.cs │ ├── HomeController.cs │ └── TransactionController.cs ├── Expense Tracker.csproj ├── Expense Tracker.csproj.user ├── Migrations │ ├── 20220531070551_Initial Create.Designer.cs │ ├── 20220531070551_Initial Create.cs │ └── ApplicationDbContextModelSnapshot.cs ├── Models │ ├── ApplicationDbContext.cs │ ├── Category.cs │ ├── ErrorViewModel.cs │ └── Transaction.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Views │ ├── Category │ │ ├── AddOrEdit.cshtml │ │ └── Index.cshtml │ ├── Dashboard │ │ └── Index.cshtml │ ├── Home │ │ ├── Index.cshtml │ │ └── Privacy.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ ├── _Layout.cshtml.css │ │ ├── _SideBar.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── Transaction │ │ ├── AddOrEdit.cshtml │ │ └── Index.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── bin │ └── Debug │ │ └── net6.0 │ │ ├── Expense Tracker.deps.json │ │ ├── Expense Tracker.dll │ │ ├── Expense Tracker.exe │ │ ├── Expense Tracker.pdb │ │ ├── Expense Tracker.runtimeconfig.json │ │ ├── Expense Tracker.staticwebassets.runtime.json │ │ ├── Humanizer.dll │ │ ├── MessagePack.Annotations.dll │ │ ├── MessagePack.dll │ │ ├── Microsoft.AspNetCore.Razor.Language.dll │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ ├── Microsoft.Build.Locator.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.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.dll │ │ ├── Microsoft.Extensions.Caching.Memory.dll │ │ ├── Microsoft.Identity.Client.dll │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ ├── Microsoft.OpenApi.dll │ │ ├── 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 │ │ ├── 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 │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ ├── Syncfusion.EJ2.dll │ │ ├── Syncfusion.Licensing.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.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 │ │ ├── unix │ │ │ └── lib │ │ │ │ ├── netcoreapp3.0 │ │ │ │ └── System.Drawing.Common.dll │ │ │ │ └── netcoreapp3.1 │ │ │ │ └── Microsoft.Data.SqlClient.dll │ │ ├── win-arm │ │ │ ├── lib │ │ │ │ └── net6.0 │ │ │ │ │ └── dotnet-aspnet-codegenerator-design.exe │ │ │ └── native │ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ ├── win-arm64 │ │ │ ├── lib │ │ │ │ └── net6.0 │ │ │ │ │ └── dotnet-aspnet-codegenerator-design.exe │ │ │ └── native │ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ ├── win-x64 │ │ │ └── native │ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ ├── win-x86 │ │ │ └── native │ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ └── win │ │ │ └── lib │ │ │ ├── netcoreapp3.0 │ │ │ ├── Microsoft.Win32.SystemEvents.dll │ │ │ ├── System.Drawing.Common.dll │ │ │ └── System.Windows.Extensions.dll │ │ │ ├── netcoreapp3.1 │ │ │ └── Microsoft.Data.SqlClient.dll │ │ │ └── netstandard2.0 │ │ │ ├── System.Runtime.Caching.dll │ │ │ └── System.Security.Cryptography.ProtectedData.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 ├── obj │ ├── Debug │ │ └── net6.0 │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ ├── Expense Tracker.AssemblyInfo.cs │ │ │ ├── Expense Tracker.AssemblyInfoInputs.cache │ │ │ ├── Expense Tracker.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── Expense Tracker.GlobalUsings.g.cs │ │ │ ├── Expense Tracker.MvcApplicationPartsAssemblyInfo.cache │ │ │ ├── Expense Tracker.MvcApplicationPartsAssemblyInfo.cs │ │ │ ├── Expense Tracker.RazorAssemblyInfo.cache │ │ │ ├── Expense Tracker.RazorAssemblyInfo.cs │ │ │ ├── Expense Tracker.assets.cache │ │ │ ├── Expense Tracker.csproj.AssemblyReference.cache │ │ │ ├── Expense Tracker.csproj.BuildWithSkipAnalyzers │ │ │ ├── Expense Tracker.csproj.CopyComplete │ │ │ ├── Expense Tracker.csproj.CoreCompileInputs.cache │ │ │ ├── Expense Tracker.csproj.FileListAbsolute.txt │ │ │ ├── Expense Tracker.dll │ │ │ ├── Expense Tracker.genruntimeconfig.cache │ │ │ ├── Expense Tracker.pdb │ │ │ ├── apphost.exe │ │ │ ├── project.razor.json │ │ │ ├── ref │ │ │ └── Expense Tracker.dll │ │ │ ├── refint │ │ │ └── Expense Tracker.dll │ │ │ ├── scopedcss │ │ │ ├── Views │ │ │ │ └── Shared │ │ │ │ │ └── _Layout.cshtml.rz.scp.css │ │ │ ├── bundle │ │ │ │ └── Expense Tracker.styles.css │ │ │ └── projectbundle │ │ │ │ └── Expense Tracker.bundle.scp.css │ │ │ ├── staticwebassets.build.json │ │ │ └── staticwebassets.development.json │ ├── Expense Tracker.csproj.nuget.dgspec.json │ ├── Expense Tracker.csproj.nuget.g.props │ ├── Expense Tracker.csproj.nuget.g.targets │ ├── project.assets.json │ ├── project.nuget.cache │ └── staticwebassets.pack.sentinel └── wwwroot │ ├── css │ └── site.css │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── 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 │ ├── logo.png │ └── profile.jpg └── README.md /.editorconfig: -------------------------------------------------------------------------------- 1 | [*.cs] 2 | 3 | # CS8618: Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable. 4 | dotnet_diagnostic.CS8618.severity = silent 5 | -------------------------------------------------------------------------------- /.vs/Expense Tracker/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/.vs/Expense Tracker/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /.vs/Expense Tracker/v17/.futdcache.v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/.vs/Expense Tracker/v17/.futdcache.v1 -------------------------------------------------------------------------------- /.vs/Expense Tracker/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/.vs/Expense Tracker/v17/.suo -------------------------------------------------------------------------------- /Expense Tracker.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.1.32328.378 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Expense Tracker", "Expense Tracker\Expense Tracker.csproj", "{0B8E3BF2-A3D7-4339-94C9-B369DD9D8388}" 7 | EndProject 8 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{BD793830-9C17-42CB-86DC-74BD64B279EB}" 9 | ProjectSection(SolutionItems) = preProject 10 | .editorconfig = .editorconfig 11 | EndProjectSection 12 | EndProject 13 | Global 14 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 15 | Debug|Any CPU = Debug|Any CPU 16 | Release|Any CPU = Release|Any CPU 17 | EndGlobalSection 18 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 19 | {0B8E3BF2-A3D7-4339-94C9-B369DD9D8388}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 20 | {0B8E3BF2-A3D7-4339-94C9-B369DD9D8388}.Debug|Any CPU.Build.0 = Debug|Any CPU 21 | {0B8E3BF2-A3D7-4339-94C9-B369DD9D8388}.Release|Any CPU.ActiveCfg = Release|Any CPU 22 | {0B8E3BF2-A3D7-4339-94C9-B369DD9D8388}.Release|Any CPU.Build.0 = Release|Any CPU 23 | EndGlobalSection 24 | GlobalSection(SolutionProperties) = preSolution 25 | HideSolutionNode = FALSE 26 | EndGlobalSection 27 | GlobalSection(ExtensibilityGlobals) = postSolution 28 | SolutionGuid = {42430D7C-0C20-4BC5-B7C5-FEA126B6AAEE} 29 | EndGlobalSection 30 | EndGlobal 31 | -------------------------------------------------------------------------------- /Expense Tracker/Controllers/CategoryController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using Microsoft.AspNetCore.Mvc; 6 | using Microsoft.AspNetCore.Mvc.Rendering; 7 | using Microsoft.EntityFrameworkCore; 8 | using Expense_Tracker.Models; 9 | 10 | namespace Expense_Tracker.Controllers 11 | { 12 | public class CategoryController : Controller 13 | { 14 | private readonly ApplicationDbContext _context; 15 | 16 | public CategoryController(ApplicationDbContext context) 17 | { 18 | _context = context; 19 | } 20 | 21 | // GET: Category 22 | public async Task Index() 23 | { 24 | return _context.Categories != null ? 25 | View(await _context.Categories.ToListAsync()) : 26 | Problem("Entity set 'ApplicationDbContext.Categories' is null."); 27 | } 28 | 29 | 30 | // GET: Category/AddOrEdit 31 | public IActionResult AddOrEdit(int id = 0) 32 | { 33 | if (id == 0) 34 | return View(new Category()); 35 | else 36 | return View(_context.Categories.Find(id)); 37 | 38 | } 39 | 40 | // POST: Category/AddOrEdit 41 | // To protect from overposting attacks, enable the specific properties you want to bind to. 42 | // For more details, see http://go.microsoft.com/fwlink/?LinkId=317598. 43 | [HttpPost] 44 | [ValidateAntiForgeryToken] 45 | public async Task AddOrEdit([Bind("CategoryId,Title,Icon,Type")] Category category) 46 | { 47 | if (ModelState.IsValid) 48 | { 49 | if (category.CategoryId == 0) 50 | _context.Add(category); 51 | else 52 | _context.Update(category); 53 | await _context.SaveChangesAsync(); 54 | return RedirectToAction(nameof(Index)); 55 | } 56 | return View(category); 57 | } 58 | 59 | 60 | // POST: Category/Delete/5 61 | [HttpPost, ActionName("Delete")] 62 | [ValidateAntiForgeryToken] 63 | public async Task DeleteConfirmed(int id) 64 | { 65 | if (_context.Categories == null) 66 | { 67 | return Problem("Entity set 'ApplicationDbContext.Categories' is null."); 68 | } 69 | var category = await _context.Categories.FindAsync(id); 70 | if (category != null) 71 | { 72 | _context.Categories.Remove(category); 73 | } 74 | 75 | await _context.SaveChangesAsync(); 76 | return RedirectToAction(nameof(Index)); 77 | } 78 | 79 | } 80 | } 81 | -------------------------------------------------------------------------------- /Expense Tracker/Controllers/DashboardController.cs: -------------------------------------------------------------------------------- 1 | using Expense_Tracker.Models; 2 | using Microsoft.AspNetCore.Mvc; 3 | using Microsoft.EntityFrameworkCore; 4 | using System.Globalization; 5 | 6 | namespace Expense_Tracker.Controllers 7 | { 8 | public class DashboardController : Controller 9 | { 10 | 11 | private readonly ApplicationDbContext _context; 12 | 13 | public DashboardController(ApplicationDbContext context) 14 | { 15 | _context = context; 16 | } 17 | 18 | public async Task Index() 19 | { 20 | //Last 7 Days 21 | DateTime StartDate = DateTime.Today.AddDays(-6); 22 | DateTime EndDate = DateTime.Today; 23 | 24 | List SelectedTransactions = await _context.Transactions 25 | .Include(x => x.Category) 26 | .Where(y => y.Date >= StartDate && y.Date <= EndDate) 27 | .ToListAsync(); 28 | 29 | //Total Income 30 | int TotalIncome = SelectedTransactions 31 | .Where(i => i.Category.Type == "Income") 32 | .Sum(j => j.Amount); 33 | ViewBag.TotalIncome = TotalIncome.ToString("C0"); 34 | 35 | //Total Expense 36 | int TotalExpense = SelectedTransactions 37 | .Where(i => i.Category.Type == "Expense") 38 | .Sum(j => j.Amount); 39 | ViewBag.TotalExpense = TotalExpense.ToString("C0"); 40 | 41 | //Balance 42 | int Balance = TotalIncome - TotalExpense; 43 | CultureInfo culture = CultureInfo.CreateSpecificCulture("en-US"); 44 | culture.NumberFormat.CurrencyNegativePattern = 1; 45 | ViewBag.Balance = String.Format(culture, "{0:C0}", Balance); 46 | 47 | //Doughnut Chart - Expense By Category 48 | ViewBag.DoughnutChartData = SelectedTransactions 49 | .Where(i => i.Category.Type == "Expense") 50 | .GroupBy(j => j.Category.CategoryId) 51 | .Select(k => new 52 | { 53 | categoryTitleWithIcon = k.First().Category.Icon + " " + k.First().Category.Title, 54 | amount = k.Sum(j => j.Amount), 55 | formattedAmount = k.Sum(j => j.Amount).ToString("C0"), 56 | }) 57 | .OrderByDescending(l => l.amount) 58 | .ToList(); 59 | 60 | //Spline Chart - Income vs Expense 61 | 62 | //Income 63 | List IncomeSummary = SelectedTransactions 64 | .Where(i => i.Category.Type == "Income") 65 | .GroupBy(j => j.Date) 66 | .Select(k => new SplineChartData() 67 | { 68 | day = k.First().Date.ToString("dd-MMM"), 69 | income = k.Sum(l => l.Amount) 70 | }) 71 | .ToList(); 72 | 73 | //Expense 74 | List ExpenseSummary = SelectedTransactions 75 | .Where(i => i.Category.Type == "Expense") 76 | .GroupBy(j => j.Date) 77 | .Select(k => new SplineChartData() 78 | { 79 | day = k.First().Date.ToString("dd-MMM"), 80 | expense = k.Sum(l => l.Amount) 81 | }) 82 | .ToList(); 83 | 84 | //Combine Income & Expense 85 | string[] Last7Days = Enumerable.Range(0, 7) 86 | .Select(i => StartDate.AddDays(i).ToString("dd-MMM")) 87 | .ToArray(); 88 | 89 | ViewBag.SplineChartData = from day in Last7Days 90 | join income in IncomeSummary on day equals income.day into dayIncomeJoined 91 | from income in dayIncomeJoined.DefaultIfEmpty() 92 | join expense in ExpenseSummary on day equals expense.day into expenseJoined 93 | from expense in expenseJoined.DefaultIfEmpty() 94 | select new 95 | { 96 | day = day, 97 | income = income == null ? 0 : income.income, 98 | expense = expense == null ? 0 : expense.expense, 99 | }; 100 | //Recent Transactions 101 | ViewBag.RecentTransactions = await _context.Transactions 102 | .Include(i => i.Category) 103 | .OrderByDescending(j => j.Date) 104 | .Take(5) 105 | .ToListAsync(); 106 | 107 | 108 | return View(); 109 | } 110 | } 111 | 112 | public class SplineChartData 113 | { 114 | public string day; 115 | public int income; 116 | public int expense; 117 | 118 | } 119 | } 120 | -------------------------------------------------------------------------------- /Expense Tracker/Controllers/HomeController.cs: -------------------------------------------------------------------------------- 1 | using Expense_Tracker.Models; 2 | using Microsoft.AspNetCore.Mvc; 3 | using System.Diagnostics; 4 | 5 | namespace Expense_Tracker.Controllers 6 | { 7 | public class HomeController : Controller 8 | { 9 | private readonly ILogger _logger; 10 | 11 | public HomeController(ILogger logger) 12 | { 13 | _logger = logger; 14 | } 15 | 16 | public IActionResult Index() 17 | { 18 | return View(); 19 | } 20 | 21 | public IActionResult Privacy() 22 | { 23 | return View(); 24 | } 25 | 26 | [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)] 27 | public IActionResult Error() 28 | { 29 | return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier }); 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /Expense Tracker/Controllers/TransactionController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using Microsoft.AspNetCore.Mvc; 6 | using Microsoft.AspNetCore.Mvc.Rendering; 7 | using Microsoft.EntityFrameworkCore; 8 | using Expense_Tracker.Models; 9 | 10 | namespace Expense_Tracker.Controllers 11 | { 12 | public class TransactionController : Controller 13 | { 14 | private readonly ApplicationDbContext _context; 15 | 16 | public TransactionController(ApplicationDbContext context) 17 | { 18 | _context = context; 19 | } 20 | 21 | // GET: Transaction 22 | public async Task Index() 23 | { 24 | var applicationDbContext = _context.Transactions.Include(t => t.Category); 25 | return View(await applicationDbContext.ToListAsync()); 26 | } 27 | 28 | // GET: Transaction/AddOrEdit 29 | public IActionResult AddOrEdit(int id = 0) 30 | { 31 | PopulateCategories(); 32 | if (id == 0) 33 | return View(new Transaction()); 34 | else 35 | return View(_context.Transactions.Find(id)); 36 | } 37 | 38 | // POST: Transaction/AddOrEdit 39 | // To protect from overposting attacks, enable the specific properties you want to bind to. 40 | // For more details, see http://go.microsoft.com/fwlink/?LinkId=317598. 41 | [HttpPost] 42 | [ValidateAntiForgeryToken] 43 | public async Task AddOrEdit([Bind("TransactionId,CategoryId,Amount,Note,Date")] Transaction transaction) 44 | { 45 | if (ModelState.IsValid) 46 | { 47 | if (transaction.TransactionId == 0) 48 | _context.Add(transaction); 49 | else 50 | _context.Update(transaction); 51 | await _context.SaveChangesAsync(); 52 | return RedirectToAction(nameof(Index)); 53 | } 54 | PopulateCategories(); 55 | return View(transaction); 56 | } 57 | 58 | // POST: Transaction/Delete/5 59 | [HttpPost, ActionName("Delete")] 60 | [ValidateAntiForgeryToken] 61 | public async Task DeleteConfirmed(int id) 62 | { 63 | if (_context.Transactions == null) 64 | { 65 | return Problem("Entity set 'ApplicationDbContext.Transactions' is null."); 66 | } 67 | var transaction = await _context.Transactions.FindAsync(id); 68 | if (transaction != null) 69 | { 70 | _context.Transactions.Remove(transaction); 71 | } 72 | 73 | await _context.SaveChangesAsync(); 74 | return RedirectToAction(nameof(Index)); 75 | } 76 | 77 | 78 | [NonAction] 79 | public void PopulateCategories() 80 | { 81 | var CategoryCollection = _context.Categories.ToList(); 82 | Category DefaultCategory = new Category() { CategoryId = 0, Title = "Choose a Category" }; 83 | CategoryCollection.Insert(0, DefaultCategory); 84 | ViewBag.Categories = CategoryCollection; 85 | } 86 | } 87 | } 88 | -------------------------------------------------------------------------------- /Expense Tracker/Expense Tracker.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net6.0 5 | enable 6 | enable 7 | Expense_Tracker 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | all 19 | runtime; build; native; contentfiles; analyzers; buildtransitive 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Expense Tracker/Expense Tracker.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | MvcControllerEmptyScaffolder 5 | root/Common/MVC/Controller 6 | 650 7 | True 8 | False 9 | True 10 | 11 | Expense_Tracker.Models.ApplicationDbContext 12 | False 13 | True 14 | RazorViewEmptyScaffolder 15 | root/Common/MVC/View 16 | 17 | -------------------------------------------------------------------------------- /Expense Tracker/Migrations/20220531070551_Initial Create.Designer.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using Expense_Tracker.Models; 4 | using Microsoft.EntityFrameworkCore; 5 | using Microsoft.EntityFrameworkCore.Infrastructure; 6 | using Microsoft.EntityFrameworkCore.Metadata; 7 | using Microsoft.EntityFrameworkCore.Migrations; 8 | using Microsoft.EntityFrameworkCore.Storage.ValueConversion; 9 | 10 | #nullable disable 11 | 12 | namespace Expense_Tracker.Migrations 13 | { 14 | [DbContext(typeof(ApplicationDbContext))] 15 | [Migration("20220531070551_Initial Create")] 16 | partial class InitialCreate 17 | { 18 | protected override void BuildTargetModel(ModelBuilder modelBuilder) 19 | { 20 | #pragma warning disable 612, 618 21 | modelBuilder 22 | .HasAnnotation("ProductVersion", "6.0.3") 23 | .HasAnnotation("Relational:MaxIdentifierLength", 128); 24 | 25 | SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder, 1L, 1); 26 | 27 | modelBuilder.Entity("Expense_Tracker.Models.Category", b => 28 | { 29 | b.Property("CategoryId") 30 | .ValueGeneratedOnAdd() 31 | .HasColumnType("int"); 32 | 33 | SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("CategoryId"), 1L, 1); 34 | 35 | b.Property("Icon") 36 | .IsRequired() 37 | .HasColumnType("nvarchar(5)"); 38 | 39 | b.Property("Title") 40 | .IsRequired() 41 | .HasColumnType("nvarchar(50)"); 42 | 43 | b.Property("Type") 44 | .IsRequired() 45 | .HasColumnType("nvarchar(10)"); 46 | 47 | b.HasKey("CategoryId"); 48 | 49 | b.ToTable("Categories"); 50 | }); 51 | 52 | modelBuilder.Entity("Expense_Tracker.Models.Transaction", b => 53 | { 54 | b.Property("TransactionId") 55 | .ValueGeneratedOnAdd() 56 | .HasColumnType("int"); 57 | 58 | SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("TransactionId"), 1L, 1); 59 | 60 | b.Property("Amount") 61 | .HasColumnType("int"); 62 | 63 | b.Property("CategoryId") 64 | .HasColumnType("int"); 65 | 66 | b.Property("Date") 67 | .HasColumnType("datetime2"); 68 | 69 | b.Property("Note") 70 | .HasColumnType("nvarchar(75)"); 71 | 72 | b.HasKey("TransactionId"); 73 | 74 | b.HasIndex("CategoryId"); 75 | 76 | b.ToTable("Transactions"); 77 | }); 78 | 79 | modelBuilder.Entity("Expense_Tracker.Models.Transaction", b => 80 | { 81 | b.HasOne("Expense_Tracker.Models.Category", "Category") 82 | .WithMany() 83 | .HasForeignKey("CategoryId") 84 | .OnDelete(DeleteBehavior.Cascade) 85 | .IsRequired(); 86 | 87 | b.Navigation("Category"); 88 | }); 89 | #pragma warning restore 612, 618 90 | } 91 | } 92 | } 93 | -------------------------------------------------------------------------------- /Expense Tracker/Migrations/20220531070551_Initial Create.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Microsoft.EntityFrameworkCore.Migrations; 3 | 4 | #nullable disable 5 | 6 | namespace Expense_Tracker.Migrations 7 | { 8 | public partial class InitialCreate : Migration 9 | { 10 | protected override void Up(MigrationBuilder migrationBuilder) 11 | { 12 | migrationBuilder.CreateTable( 13 | name: "Categories", 14 | columns: table => new 15 | { 16 | CategoryId = table.Column(type: "int", nullable: false) 17 | .Annotation("SqlServer:Identity", "1, 1"), 18 | Title = table.Column(type: "nvarchar(50)", nullable: false), 19 | Icon = table.Column(type: "nvarchar(5)", nullable: false), 20 | Type = table.Column(type: "nvarchar(10)", nullable: false) 21 | }, 22 | constraints: table => 23 | { 24 | table.PrimaryKey("PK_Categories", x => x.CategoryId); 25 | }); 26 | 27 | migrationBuilder.CreateTable( 28 | name: "Transactions", 29 | columns: table => new 30 | { 31 | TransactionId = table.Column(type: "int", nullable: false) 32 | .Annotation("SqlServer:Identity", "1, 1"), 33 | CategoryId = table.Column(type: "int", nullable: false), 34 | Amount = table.Column(type: "int", nullable: false), 35 | Note = table.Column(type: "nvarchar(75)", nullable: true), 36 | Date = table.Column(type: "datetime2", nullable: false) 37 | }, 38 | constraints: table => 39 | { 40 | table.PrimaryKey("PK_Transactions", x => x.TransactionId); 41 | table.ForeignKey( 42 | name: "FK_Transactions_Categories_CategoryId", 43 | column: x => x.CategoryId, 44 | principalTable: "Categories", 45 | principalColumn: "CategoryId", 46 | onDelete: ReferentialAction.Cascade); 47 | }); 48 | 49 | migrationBuilder.CreateIndex( 50 | name: "IX_Transactions_CategoryId", 51 | table: "Transactions", 52 | column: "CategoryId"); 53 | } 54 | 55 | protected override void Down(MigrationBuilder migrationBuilder) 56 | { 57 | migrationBuilder.DropTable( 58 | name: "Transactions"); 59 | 60 | migrationBuilder.DropTable( 61 | name: "Categories"); 62 | } 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /Expense Tracker/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using Expense_Tracker.Models; 4 | using Microsoft.EntityFrameworkCore; 5 | using Microsoft.EntityFrameworkCore.Infrastructure; 6 | using Microsoft.EntityFrameworkCore.Metadata; 7 | using Microsoft.EntityFrameworkCore.Storage.ValueConversion; 8 | 9 | #nullable disable 10 | 11 | namespace Expense_Tracker.Migrations 12 | { 13 | [DbContext(typeof(ApplicationDbContext))] 14 | partial class ApplicationDbContextModelSnapshot : ModelSnapshot 15 | { 16 | protected override void BuildModel(ModelBuilder modelBuilder) 17 | { 18 | #pragma warning disable 612, 618 19 | modelBuilder 20 | .HasAnnotation("ProductVersion", "6.0.3") 21 | .HasAnnotation("Relational:MaxIdentifierLength", 128); 22 | 23 | SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder, 1L, 1); 24 | 25 | modelBuilder.Entity("Expense_Tracker.Models.Category", b => 26 | { 27 | b.Property("CategoryId") 28 | .ValueGeneratedOnAdd() 29 | .HasColumnType("int"); 30 | 31 | SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("CategoryId"), 1L, 1); 32 | 33 | b.Property("Icon") 34 | .IsRequired() 35 | .HasColumnType("nvarchar(5)"); 36 | 37 | b.Property("Title") 38 | .IsRequired() 39 | .HasColumnType("nvarchar(50)"); 40 | 41 | b.Property("Type") 42 | .IsRequired() 43 | .HasColumnType("nvarchar(10)"); 44 | 45 | b.HasKey("CategoryId"); 46 | 47 | b.ToTable("Categories"); 48 | }); 49 | 50 | modelBuilder.Entity("Expense_Tracker.Models.Transaction", b => 51 | { 52 | b.Property("TransactionId") 53 | .ValueGeneratedOnAdd() 54 | .HasColumnType("int"); 55 | 56 | SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("TransactionId"), 1L, 1); 57 | 58 | b.Property("Amount") 59 | .HasColumnType("int"); 60 | 61 | b.Property("CategoryId") 62 | .HasColumnType("int"); 63 | 64 | b.Property("Date") 65 | .HasColumnType("datetime2"); 66 | 67 | b.Property("Note") 68 | .HasColumnType("nvarchar(75)"); 69 | 70 | b.HasKey("TransactionId"); 71 | 72 | b.HasIndex("CategoryId"); 73 | 74 | b.ToTable("Transactions"); 75 | }); 76 | 77 | modelBuilder.Entity("Expense_Tracker.Models.Transaction", b => 78 | { 79 | b.HasOne("Expense_Tracker.Models.Category", "Category") 80 | .WithMany() 81 | .HasForeignKey("CategoryId") 82 | .OnDelete(DeleteBehavior.Cascade) 83 | .IsRequired(); 84 | 85 | b.Navigation("Category"); 86 | }); 87 | #pragma warning restore 612, 618 88 | } 89 | } 90 | } 91 | -------------------------------------------------------------------------------- /Expense Tracker/Models/ApplicationDbContext.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore; 2 | 3 | namespace Expense_Tracker.Models 4 | { 5 | public class ApplicationDbContext:DbContext 6 | { 7 | public ApplicationDbContext(DbContextOptions options):base(options) 8 | {} 9 | 10 | public DbSet Transactions { get; set; } 11 | public DbSet Categories { get; set; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Expense Tracker/Models/Category.cs: -------------------------------------------------------------------------------- 1 | using System.ComponentModel.DataAnnotations; 2 | using System.ComponentModel.DataAnnotations.Schema; 3 | 4 | namespace Expense_Tracker.Models 5 | { 6 | public class Category 7 | { 8 | [Key] 9 | public int CategoryId { get; set; } 10 | 11 | [Column(TypeName = "nvarchar(50)")] 12 | [Required(ErrorMessage = "Title is required.")] 13 | public string Title { get; set; } 14 | 15 | [Column(TypeName = "nvarchar(5)")] 16 | public string Icon { get; set; } = ""; 17 | 18 | [Column(TypeName = "nvarchar(10)")] 19 | public string Type { get; set; } = "Expense"; 20 | 21 | [NotMapped] 22 | public string? TitleWithIcon 23 | { 24 | get 25 | { 26 | return this.Icon + " " + this.Title; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Expense Tracker/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- 1 | namespace Expense_Tracker.Models 2 | { 3 | public class ErrorViewModel 4 | { 5 | public string? RequestId { get; set; } 6 | 7 | public bool ShowRequestId => !string.IsNullOrEmpty(RequestId); 8 | } 9 | } -------------------------------------------------------------------------------- /Expense Tracker/Models/Transaction.cs: -------------------------------------------------------------------------------- 1 | using System.ComponentModel.DataAnnotations; 2 | using System.ComponentModel.DataAnnotations.Schema; 3 | 4 | namespace Expense_Tracker.Models 5 | { 6 | public class Transaction 7 | { 8 | [Key] 9 | public int TransactionId { get; set; } 10 | 11 | [Range(1,int.MaxValue,ErrorMessage ="Please select a category.")] 12 | public int CategoryId { get; set; } 13 | public Category? Category { get; set; } 14 | 15 | [Range(1, int.MaxValue, ErrorMessage = "Amount should be greater than 0.")] 16 | public int Amount { get; set; } 17 | 18 | [Column(TypeName = "nvarchar(75)")] 19 | public string? Note { get; set; } 20 | 21 | public DateTime Date { get; set; } = DateTime.Now; 22 | 23 | [NotMapped] 24 | public string? CategoryTitleWithIcon 25 | { 26 | get 27 | { 28 | return Category == null ? "" : Category.Icon + " " + Category.Title; 29 | } 30 | } 31 | 32 | [NotMapped] 33 | public string? FormattedAmount 34 | { 35 | get 36 | { 37 | return ((Category == null || Category.Type == "Expense") ? "- " : "+ ") + Amount.ToString("C0"); 38 | } 39 | } 40 | 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /Expense Tracker/Program.cs: -------------------------------------------------------------------------------- 1 | using Expense_Tracker.Models; 2 | using Microsoft.EntityFrameworkCore; 3 | 4 | var builder = WebApplication.CreateBuilder(args); 5 | 6 | // Add services to the container. 7 | builder.Services.AddControllersWithViews(); 8 | 9 | //DI 10 | builder.Services.AddDbContext(options => 11 | options.UseSqlServer(builder.Configuration.GetConnectionString("DevConnection"))); 12 | 13 | //Register Syncfusion license 14 | Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("Mgo+DSMBMAY9C3t2VVhhQlFac1pJXGFWfVJpTGpQdk5xdV9DaVZUTWY/P1ZhSXxRdkNjWn9edHNRRmZYWEM="); 15 | 16 | var app = builder.Build(); 17 | 18 | // Configure the HTTP request pipeline. 19 | if (!app.Environment.IsDevelopment()) 20 | { 21 | app.UseExceptionHandler("/Home/Error"); 22 | } 23 | app.UseStaticFiles(); 24 | 25 | app.UseRouting(); 26 | 27 | app.UseAuthorization(); 28 | 29 | app.MapControllerRoute( 30 | name: "default", 31 | pattern: "{controller=Dashboard}/{action=Index}/{id?}"); 32 | 33 | app.Run(); 34 | -------------------------------------------------------------------------------- /Expense Tracker/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "iisSettings": { 3 | "windowsAuthentication": false, 4 | "anonymousAuthentication": true, 5 | "iisExpress": { 6 | "applicationUrl": "http://localhost:24886", 7 | "sslPort": 0 8 | } 9 | }, 10 | "profiles": { 11 | "Expense_Tracker": { 12 | "commandName": "Project", 13 | "dotnetRunMessages": true, 14 | "launchBrowser": true, 15 | "applicationUrl": "http://localhost:5110", 16 | "environmentVariables": { 17 | "ASPNETCORE_ENVIRONMENT": "Development" 18 | } 19 | }, 20 | "IIS Express": { 21 | "commandName": "IISExpress", 22 | "launchBrowser": true, 23 | "environmentVariables": { 24 | "ASPNETCORE_ENVIRONMENT": "Development" 25 | } 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /Expense Tracker/Views/Category/AddOrEdit.cshtml: -------------------------------------------------------------------------------- 1 | @model Expense_Tracker.Models.Category 2 | 3 | @{ 4 | ViewData["PageTitle"] = Model.CategoryId == 0 ? "Create a new category" : "Edit category"; 5 | } 6 | 7 | 8 |
9 |
10 |
11 |
12 |
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 | 38 |
39 |
40 |
41 | 42 | 43 | @*@section Scripts { 44 | @{ 45 | await Html.RenderPartialAsync("_ValidationScriptsPartial"); 46 | } 47 | }*@ 48 | -------------------------------------------------------------------------------- /Expense Tracker/Views/Category/Index.cshtml: -------------------------------------------------------------------------------- 1 | @model IEnumerable 2 | 3 | @{ 4 | ViewData["PageTitle"] = "Categories"; 5 | ViewData["PageActionText"] = "+ New Category"; 6 | ViewData["PageActionUrl"] = "/Category/AddOrEdit"; 7 | } 8 | 9 | 10 |
11 |
12 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 |
23 |
24 | 25 |
26 |
27 |
28 | 29 | 36 | 37 | 51 | -------------------------------------------------------------------------------- /Expense Tracker/Views/Dashboard/Index.cshtml: -------------------------------------------------------------------------------- 1 | @* 2 | For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860 3 | *@ 4 | @{ 5 | ViewData["isDashboard"] = true; 6 | } 7 | 8 | @*Summary Widgets*@ 9 |
10 | 11 |
12 |
13 |
14 | 15 |
16 |
17 | Total Income 18 |

@ViewBag.TotalIncome

19 |
20 |
21 |
22 | 23 |
24 |
25 |
26 | 27 |
28 |
29 | Total Expense 30 |

@ViewBag.TotalExpense

31 |
32 |
33 |
34 | 35 |
36 |
37 |
38 | 39 |
40 |
41 | Balance 42 |

@ViewBag.Balance

43 |
44 |
45 |
46 |
47 | 48 | @*Doughnut and Spline Chart*@ 49 |
50 |
51 |
52 |
53 |
Expense By Category
54 |
55 | 56 | 57 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 |
70 |
71 |
72 |
73 |
74 |
Income vs Expense
75 |
76 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 93 | 95 | 96 | 97 | 98 | 99 | 100 | 101 |
102 |
103 |
104 | 105 | @*Recent Transactions and More*@ 106 |
107 |
108 |
109 |
110 |
Recent Transactions
111 |
112 |
113 | 115 | 116 | 117 | 118 | 119 | 120 | 121 |
122 |
123 |
124 |
125 |
126 |
127 | Widget 128 |
129 |
130 |
131 |
-------------------------------------------------------------------------------- /Expense Tracker/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Home Page"; 3 | } 4 | 5 |
6 |

Welcome

7 |

Learn about building Web apps with ASP.NET Core.

8 |
9 | -------------------------------------------------------------------------------- /Expense Tracker/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Privacy Policy"; 3 | } 4 |

@ViewData["Title"]

5 | 6 |

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

7 | -------------------------------------------------------------------------------- /Expense Tracker/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 | -------------------------------------------------------------------------------- /Expense Tracker/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | Expense Tracker 7 | 8 | @**@ 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 32 | 33 | 34 |
35 |
36 |
37 |
38 |
39 | @if (ViewData["isDashboard"] == null) 40 | { 41 |
42 |
43 |
44 |
45 |
46 |

@ViewData["PageTitle"]

47 |
48 |
49 | @if (ViewData["PageActionText"] != null) 50 | { 51 | 52 | @ViewData["PageActionText"] 53 | 54 | } 55 |
56 |
57 | ")"> 59 |
60 |
61 |
62 | } 63 | @RenderBody() 64 |
65 |
66 |
67 |
68 |
69 | 70 |
71 | 72 | 73 | 74 | 75 | @await RenderSectionAsync("Scripts", required: false) 76 | 77 | 78 | 79 | -------------------------------------------------------------------------------- /Expense Tracker/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 | -------------------------------------------------------------------------------- /Expense Tracker/Views/Shared/_SideBar.cshtml: -------------------------------------------------------------------------------- 1 | @* 2 | For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860 3 | *@ 4 | @{ 5 | List menuItems = new List(); 6 | 7 | menuItems.Add(new 8 | { 9 | text = "General", 10 | separator = true, 11 | }); 12 | menuItems.Add(new 13 | { 14 | text = "Dashboard", 15 | url = "/", 16 | iconCss = "fa-solid fa-box", 17 | }); 18 | menuItems.Add(new 19 | { 20 | text = "Categories", 21 | url = "/Category", 22 | iconCss = "fa-solid fa-folder-closed", 23 | }); 24 | menuItems.Add(new 25 | { 26 | text = "Transactions", 27 | iconCss = "fa-solid fa-arrow-right-arrow-left", 28 | url = "/Transaction" 29 | }); 30 | 31 | menuItems.Add(new 32 | { 33 | text = "Extras", 34 | separator = true, 35 | }); 36 | menuItems.Add(new 37 | { 38 | text = "Reports", 39 | iconCss = "fa-solid fa-chart-simple", 40 | url = "#" 41 | }); menuItems.Add(new 42 | { 43 | text = "Settings", 44 | iconCss = "fa-solid fa-gear", 45 | url = "#" 46 | }); 47 | } 48 | 49 | 50 | 52 | 53 | 54 |
55 | 58 |
59 | 60 |
61 | 62 |
63 | 64 |
65 |
Wallet App
66 | Ashton Cox 67 |
68 |
69 | 70 | 74 |
75 |
76 | 77 | 86 | -------------------------------------------------------------------------------- /Expense Tracker/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /Expense Tracker/Views/Transaction/AddOrEdit.cshtml: -------------------------------------------------------------------------------- 1 | @model Expense_Tracker.Models.Transaction 2 | 3 | @{ 4 | ViewData["PageTitle"] = Model.TransactionId == 0 ? "Create a new transaction" : "Edit transaction"; 5 | } 6 | 7 |
8 |
9 |
10 |
11 |
12 | 13 |
14 | 17 |
18 |
19 | 23 | 24 | 25 | 26 |
27 |
28 | 31 | 32 |
33 |
34 | 36 |
37 | 38 |
39 |
40 |
41 |
42 |
43 | 44 |
45 |
46 |
47 | 48 | @*@section Scripts { 49 | @{ 50 | await Html.RenderPartialAsync("_ValidationScriptsPartial"); 51 | } 52 | }*@ 53 | -------------------------------------------------------------------------------- /Expense Tracker/Views/Transaction/Index.cshtml: -------------------------------------------------------------------------------- 1 | @model IEnumerable 2 | 3 | @{ 4 | ViewData["PageTitle"] = "Transactions"; 5 | ViewData["PageActionText"] = "+ New Transaction"; 6 | ViewData["PageActionUrl"] = "/Transaction/AddOrEdit"; 7 | } 8 | 9 |
10 |
11 | 13 | 14 | 15 | 16 | 18 | 19 | 20 | 21 | 22 |
23 |
24 |
25 | 26 |
27 |
28 |
29 | 30 | 44 | -------------------------------------------------------------------------------- /Expense Tracker/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using Expense_Tracker 2 | @using Expense_Tracker.Models 3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 4 | @addTagHelper *, Syncfusion.EJ2 -------------------------------------------------------------------------------- /Expense Tracker/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /Expense Tracker/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Expense Tracker/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | }, 8 | "AllowedHosts": "*", 9 | "ConnectionStrings": { 10 | "DevConnection": "Server=(local)\\sqlexpress;Database=TransactionDB;Trusted_Connection=True;MultipleActiveResultSets=True;" 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Expense Tracker.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Expense Tracker.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Expense Tracker.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Expense Tracker.exe -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Expense Tracker.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Expense Tracker.pdb -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Expense Tracker.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net6.0", 4 | "frameworks": [ 5 | { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "6.0.0" 8 | }, 9 | { 10 | "name": "Microsoft.AspNetCore.App", 11 | "version": "6.0.0" 12 | } 13 | ], 14 | "configProperties": { 15 | "System.GC.Server": true, 16 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 17 | } 18 | } 19 | } -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Humanizer.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/MessagePack.Annotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/MessagePack.Annotations.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/MessagePack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/MessagePack.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.AspNetCore.Razor.Language.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.AspNetCore.Razor.Language.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.Build.Locator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.Build.Locator.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.Features.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.Features.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.CodeAnalysis.Features.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.CodeAnalysis.Features.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.CodeAnalysis.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.CodeAnalysis.Razor.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.CodeAnalysis.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.CodeAnalysis.Scripting.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.CodeAnalysis.VisualBasic.Features.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.CodeAnalysis.VisualBasic.Features.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.CodeAnalysis.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.CodeAnalysis.VisualBasic.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.CodeAnalysis.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.CodeAnalysis.Workspaces.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.DiaSymReader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.DiaSymReader.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.DotNet.Scaffolding.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.DotNet.Scaffolding.Shared.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Design.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.Extensions.Caching.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.Extensions.Caching.Memory.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.VisualStudio.Debugger.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.VisualStudio.Debugger.Contracts.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/NuGet.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/NuGet.Common.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/NuGet.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/NuGet.Configuration.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/NuGet.DependencyResolver.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/NuGet.DependencyResolver.Core.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/NuGet.LibraryModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/NuGet.LibraryModel.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/NuGet.Packaging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/NuGet.Packaging.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/NuGet.ProjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/NuGet.ProjectModel.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/NuGet.Protocol.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/NuGet.Protocol.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/NuGet.Versioning.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/NuGet.Versioning.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Syncfusion.EJ2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Syncfusion.EJ2.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/Syncfusion.Licensing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/Syncfusion.Licensing.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/System.Composition.AttributedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/System.Composition.AttributedModel.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/System.Composition.Convention.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/System.Composition.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/System.Composition.Hosting.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/System.Composition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/System.Composition.Runtime.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/System.Composition.TypedParts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/System.Security.Permissions.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | }, 8 | "AllowedHosts": "*", 9 | "ConnectionStrings": { 10 | "DevConnection": "Server=(local)\\sqlexpress;Database=TransactionDB;Trusted_Connection=True;MultipleActiveResultSets=True;" 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/dotnet-aspnet-codegenerator-design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/dotnet-aspnet-codegenerator-design.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/runtimes/win-arm/lib/net6.0/dotnet-aspnet-codegenerator-design.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/runtimes/win-arm/lib/net6.0/dotnet-aspnet-codegenerator-design.exe -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/runtimes/win-arm64/lib/net6.0/dotnet-aspnet-codegenerator-design.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/runtimes/win-arm64/lib/net6.0/dotnet-aspnet-codegenerator-design.exe -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Expense Tracker/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /Expense Tracker/obj/Debug/net6.0/Expense Tracker.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("Expense Tracker")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("Expense Tracker")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("Expense Tracker")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /Expense Tracker/obj/Debug/net6.0/Expense Tracker.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | fc0a140f6f6ec8b3ac45b0ac275bda5c23f77953 2 | -------------------------------------------------------------------------------- /Expense Tracker/obj/Debug/net6.0/Expense Tracker.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net6.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = true 5 | build_property.ProjectTypeGuids = 6 | build_property.InvariantGlobalization = 7 | build_property.PlatformNeutralAssembly = 8 | build_property._SupportedPlatformList = Linux,macOS,Windows 9 | build_property.RootNamespace = Expense_Tracker 10 | build_property.RootNamespace = Expense_Tracker 11 | build_property.ProjectDir = D:\YouTube\Videos\Asp.Net Core\Expense Tracker\Project\Expense Tracker\Expense Tracker\ 12 | build_property.RazorLangVersion = 6.0 13 | build_property.SupportLocalizedComponentNames = 14 | build_property.GenerateRazorMetadataSourceChecksumAttributes = 15 | build_property.MSBuildProjectDirectory = D:\YouTube\Videos\Asp.Net Core\Expense Tracker\Project\Expense Tracker\Expense Tracker 16 | build_property._RazorSourceGeneratorDebug = 17 | 18 | [D:/YouTube/Videos/Asp.Net Core/Expense Tracker/Project/Expense Tracker/Expense Tracker/Views/Category/AddOrEdit.cshtml] 19 | build_metadata.AdditionalFiles.TargetPath = Vmlld3NcQ2F0ZWdvcnlcQWRkT3JFZGl0LmNzaHRtbA== 20 | build_metadata.AdditionalFiles.CssScope = 21 | 22 | [D:/YouTube/Videos/Asp.Net Core/Expense Tracker/Project/Expense Tracker/Expense Tracker/Views/Category/Index.cshtml] 23 | build_metadata.AdditionalFiles.TargetPath = Vmlld3NcQ2F0ZWdvcnlcSW5kZXguY3NodG1s 24 | build_metadata.AdditionalFiles.CssScope = 25 | 26 | [D:/YouTube/Videos/Asp.Net Core/Expense Tracker/Project/Expense Tracker/Expense Tracker/Views/Dashboard/Index.cshtml] 27 | build_metadata.AdditionalFiles.TargetPath = Vmlld3NcRGFzaGJvYXJkXEluZGV4LmNzaHRtbA== 28 | build_metadata.AdditionalFiles.CssScope = 29 | 30 | [D:/YouTube/Videos/Asp.Net Core/Expense Tracker/Project/Expense Tracker/Expense Tracker/Views/Home/Index.cshtml] 31 | build_metadata.AdditionalFiles.TargetPath = Vmlld3NcSG9tZVxJbmRleC5jc2h0bWw= 32 | build_metadata.AdditionalFiles.CssScope = 33 | 34 | [D:/YouTube/Videos/Asp.Net Core/Expense Tracker/Project/Expense Tracker/Expense Tracker/Views/Home/Privacy.cshtml] 35 | build_metadata.AdditionalFiles.TargetPath = Vmlld3NcSG9tZVxQcml2YWN5LmNzaHRtbA== 36 | build_metadata.AdditionalFiles.CssScope = 37 | 38 | [D:/YouTube/Videos/Asp.Net Core/Expense Tracker/Project/Expense Tracker/Expense Tracker/Views/Shared/Error.cshtml] 39 | build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXEVycm9yLmNzaHRtbA== 40 | build_metadata.AdditionalFiles.CssScope = 41 | 42 | [D:/YouTube/Videos/Asp.Net Core/Expense Tracker/Project/Expense Tracker/Expense Tracker/Views/Shared/_SideBar.cshtml] 43 | build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXF9TaWRlQmFyLmNzaHRtbA== 44 | build_metadata.AdditionalFiles.CssScope = 45 | 46 | [D:/YouTube/Videos/Asp.Net Core/Expense Tracker/Project/Expense Tracker/Expense Tracker/Views/Shared/_ValidationScriptsPartial.cshtml] 47 | build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXF9WYWxpZGF0aW9uU2NyaXB0c1BhcnRpYWwuY3NodG1s 48 | build_metadata.AdditionalFiles.CssScope = 49 | 50 | [D:/YouTube/Videos/Asp.Net Core/Expense Tracker/Project/Expense Tracker/Expense Tracker/Views/Transaction/AddOrEdit.cshtml] 51 | build_metadata.AdditionalFiles.TargetPath = Vmlld3NcVHJhbnNhY3Rpb25cQWRkT3JFZGl0LmNzaHRtbA== 52 | build_metadata.AdditionalFiles.CssScope = 53 | 54 | [D:/YouTube/Videos/Asp.Net Core/Expense Tracker/Project/Expense Tracker/Expense Tracker/Views/Transaction/Index.cshtml] 55 | build_metadata.AdditionalFiles.TargetPath = Vmlld3NcVHJhbnNhY3Rpb25cSW5kZXguY3NodG1s 56 | build_metadata.AdditionalFiles.CssScope = 57 | 58 | [D:/YouTube/Videos/Asp.Net Core/Expense Tracker/Project/Expense Tracker/Expense Tracker/Views/_ViewImports.cshtml] 59 | build_metadata.AdditionalFiles.TargetPath = Vmlld3NcX1ZpZXdJbXBvcnRzLmNzaHRtbA== 60 | build_metadata.AdditionalFiles.CssScope = 61 | 62 | [D:/YouTube/Videos/Asp.Net Core/Expense Tracker/Project/Expense Tracker/Expense Tracker/Views/_ViewStart.cshtml] 63 | build_metadata.AdditionalFiles.TargetPath = Vmlld3NcX1ZpZXdTdGFydC5jc2h0bWw= 64 | build_metadata.AdditionalFiles.CssScope = 65 | 66 | [D:/YouTube/Videos/Asp.Net Core/Expense Tracker/Project/Expense Tracker/Expense Tracker/Views/Shared/_Layout.cshtml] 67 | build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXF9MYXlvdXQuY3NodG1s 68 | build_metadata.AdditionalFiles.CssScope = b-wqxxju1nyy 69 | -------------------------------------------------------------------------------- /Expense Tracker/obj/Debug/net6.0/Expense Tracker.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 | -------------------------------------------------------------------------------- /Expense Tracker/obj/Debug/net6.0/Expense Tracker.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/obj/Debug/net6.0/Expense Tracker.MvcApplicationPartsAssemblyInfo.cache -------------------------------------------------------------------------------- /Expense Tracker/obj/Debug/net6.0/Expense Tracker.MvcApplicationPartsAssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] 15 | [assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Syncfusion.EJ2")] 16 | 17 | // Generated by the MSBuild WriteCodeFragment class. 18 | 19 | -------------------------------------------------------------------------------- /Expense Tracker/obj/Debug/net6.0/Expense Tracker.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 5860763757f4f08c7ebdea1b3a94a18109f17861 2 | -------------------------------------------------------------------------------- /Expense Tracker/obj/Debug/net6.0/Expense Tracker.RazorAssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ProvideApplicationPartFactoryAttribute("Microsoft.AspNetCore.Mvc.ApplicationParts.ConsolidatedAssemblyApplicationPartFact" + 15 | "ory, Microsoft.AspNetCore.Mvc.Razor")] 16 | 17 | // Generated by the MSBuild WriteCodeFragment class. 18 | 19 | -------------------------------------------------------------------------------- /Expense Tracker/obj/Debug/net6.0/Expense Tracker.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/obj/Debug/net6.0/Expense Tracker.assets.cache -------------------------------------------------------------------------------- /Expense Tracker/obj/Debug/net6.0/Expense Tracker.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/obj/Debug/net6.0/Expense Tracker.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Expense Tracker/obj/Debug/net6.0/Expense Tracker.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/obj/Debug/net6.0/Expense Tracker.csproj.BuildWithSkipAnalyzers -------------------------------------------------------------------------------- /Expense Tracker/obj/Debug/net6.0/Expense Tracker.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/obj/Debug/net6.0/Expense Tracker.csproj.CopyComplete -------------------------------------------------------------------------------- /Expense Tracker/obj/Debug/net6.0/Expense Tracker.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 7e9067b0282a9c0e7ad882bceb3921f0b656c78a 2 | -------------------------------------------------------------------------------- /Expense Tracker/obj/Debug/net6.0/Expense Tracker.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/obj/Debug/net6.0/Expense Tracker.dll -------------------------------------------------------------------------------- /Expense Tracker/obj/Debug/net6.0/Expense Tracker.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 9e2a0f99e4ffbf478288b0e149df1b40adccb363 2 | -------------------------------------------------------------------------------- /Expense Tracker/obj/Debug/net6.0/Expense Tracker.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/obj/Debug/net6.0/Expense Tracker.pdb -------------------------------------------------------------------------------- /Expense Tracker/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /Expense Tracker/obj/Debug/net6.0/ref/Expense Tracker.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/obj/Debug/net6.0/ref/Expense Tracker.dll -------------------------------------------------------------------------------- /Expense Tracker/obj/Debug/net6.0/refint/Expense Tracker.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/obj/Debug/net6.0/refint/Expense Tracker.dll -------------------------------------------------------------------------------- /Expense Tracker/obj/Debug/net6.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-wqxxju1nyy] { 5 | white-space: normal; 6 | text-align: center; 7 | word-break: break-all; 8 | } 9 | 10 | a[b-wqxxju1nyy] { 11 | color: #0077cc; 12 | } 13 | 14 | .btn-primary[b-wqxxju1nyy] { 15 | color: #fff; 16 | background-color: #1b6ec2; 17 | border-color: #1861ac; 18 | } 19 | 20 | .nav-pills .nav-link.active[b-wqxxju1nyy], .nav-pills .show > .nav-link[b-wqxxju1nyy] { 21 | color: #fff; 22 | background-color: #1b6ec2; 23 | border-color: #1861ac; 24 | } 25 | 26 | .border-top[b-wqxxju1nyy] { 27 | border-top: 1px solid #e5e5e5; 28 | } 29 | .border-bottom[b-wqxxju1nyy] { 30 | border-bottom: 1px solid #e5e5e5; 31 | } 32 | 33 | .box-shadow[b-wqxxju1nyy] { 34 | box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); 35 | } 36 | 37 | button.accept-policy[b-wqxxju1nyy] { 38 | font-size: 1rem; 39 | line-height: inherit; 40 | } 41 | 42 | .footer[b-wqxxju1nyy] { 43 | position: absolute; 44 | bottom: 0; 45 | width: 100%; 46 | white-space: nowrap; 47 | line-height: 60px; 48 | } 49 | -------------------------------------------------------------------------------- /Expense Tracker/obj/Debug/net6.0/scopedcss/bundle/Expense Tracker.styles.css: -------------------------------------------------------------------------------- 1 | /* _content/Expense Tracker/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-wqxxju1nyy] { 6 | white-space: normal; 7 | text-align: center; 8 | word-break: break-all; 9 | } 10 | 11 | a[b-wqxxju1nyy] { 12 | color: #0077cc; 13 | } 14 | 15 | .btn-primary[b-wqxxju1nyy] { 16 | color: #fff; 17 | background-color: #1b6ec2; 18 | border-color: #1861ac; 19 | } 20 | 21 | .nav-pills .nav-link.active[b-wqxxju1nyy], .nav-pills .show > .nav-link[b-wqxxju1nyy] { 22 | color: #fff; 23 | background-color: #1b6ec2; 24 | border-color: #1861ac; 25 | } 26 | 27 | .border-top[b-wqxxju1nyy] { 28 | border-top: 1px solid #e5e5e5; 29 | } 30 | .border-bottom[b-wqxxju1nyy] { 31 | border-bottom: 1px solid #e5e5e5; 32 | } 33 | 34 | .box-shadow[b-wqxxju1nyy] { 35 | box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); 36 | } 37 | 38 | button.accept-policy[b-wqxxju1nyy] { 39 | font-size: 1rem; 40 | line-height: inherit; 41 | } 42 | 43 | .footer[b-wqxxju1nyy] { 44 | position: absolute; 45 | bottom: 0; 46 | width: 100%; 47 | white-space: nowrap; 48 | line-height: 60px; 49 | } 50 | -------------------------------------------------------------------------------- /Expense Tracker/obj/Debug/net6.0/scopedcss/projectbundle/Expense Tracker.bundle.scp.css: -------------------------------------------------------------------------------- 1 | /* _content/Expense Tracker/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-wqxxju1nyy] { 6 | white-space: normal; 7 | text-align: center; 8 | word-break: break-all; 9 | } 10 | 11 | a[b-wqxxju1nyy] { 12 | color: #0077cc; 13 | } 14 | 15 | .btn-primary[b-wqxxju1nyy] { 16 | color: #fff; 17 | background-color: #1b6ec2; 18 | border-color: #1861ac; 19 | } 20 | 21 | .nav-pills .nav-link.active[b-wqxxju1nyy], .nav-pills .show > .nav-link[b-wqxxju1nyy] { 22 | color: #fff; 23 | background-color: #1b6ec2; 24 | border-color: #1861ac; 25 | } 26 | 27 | .border-top[b-wqxxju1nyy] { 28 | border-top: 1px solid #e5e5e5; 29 | } 30 | .border-bottom[b-wqxxju1nyy] { 31 | border-bottom: 1px solid #e5e5e5; 32 | } 33 | 34 | .box-shadow[b-wqxxju1nyy] { 35 | box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); 36 | } 37 | 38 | button.accept-policy[b-wqxxju1nyy] { 39 | font-size: 1rem; 40 | line-height: inherit; 41 | } 42 | 43 | .footer[b-wqxxju1nyy] { 44 | position: absolute; 45 | bottom: 0; 46 | width: 100%; 47 | white-space: nowrap; 48 | line-height: 60px; 49 | } 50 | -------------------------------------------------------------------------------- /Expense Tracker/obj/Expense Tracker.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "D:\\YouTube\\Videos\\Asp.Net Core\\Expense Tracker\\Project\\Expense Tracker\\Expense Tracker\\Expense Tracker.csproj": {} 5 | }, 6 | "projects": { 7 | "D:\\YouTube\\Videos\\Asp.Net Core\\Expense Tracker\\Project\\Expense Tracker\\Expense Tracker\\Expense Tracker.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "D:\\YouTube\\Videos\\Asp.Net Core\\Expense Tracker\\Project\\Expense Tracker\\Expense Tracker\\Expense Tracker.csproj", 11 | "projectName": "Expense Tracker", 12 | "projectPath": "D:\\YouTube\\Videos\\Asp.Net Core\\Expense Tracker\\Project\\Expense Tracker\\Expense Tracker\\Expense Tracker.csproj", 13 | "packagesPath": "C:\\Users\\CodAffection\\.nuget\\packages\\", 14 | "outputPath": "D:\\YouTube\\Videos\\Asp.Net Core\\Expense Tracker\\Project\\Expense Tracker\\Expense Tracker\\obj\\", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "C:\\Users\\CodAffection\\AppData\\Roaming\\NuGet\\NuGet.Config", 18 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 19 | ], 20 | "originalTargetFrameworks": [ 21 | "net6.0" 22 | ], 23 | "sources": { 24 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 25 | "https://api.nuget.org/v3/index.json": {} 26 | }, 27 | "frameworks": { 28 | "net6.0": { 29 | "targetAlias": "net6.0", 30 | "projectReferences": {} 31 | } 32 | }, 33 | "warningProperties": { 34 | "warnAsError": [ 35 | "NU1605" 36 | ] 37 | } 38 | }, 39 | "frameworks": { 40 | "net6.0": { 41 | "targetAlias": "net6.0", 42 | "dependencies": { 43 | "Microsoft.EntityFrameworkCore": { 44 | "target": "Package", 45 | "version": "[6.0.5, )" 46 | }, 47 | "Microsoft.EntityFrameworkCore.SqlServer": { 48 | "target": "Package", 49 | "version": "[6.0.5, )" 50 | }, 51 | "Microsoft.EntityFrameworkCore.Tools": { 52 | "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", 53 | "suppressParent": "All", 54 | "target": "Package", 55 | "version": "[6.0.5, )" 56 | }, 57 | "Microsoft.VisualStudio.Web.CodeGeneration.Design": { 58 | "target": "Package", 59 | "version": "[6.0.5, )" 60 | }, 61 | "Swashbuckle.AspNetCore": { 62 | "target": "Package", 63 | "version": "[6.3.0, )" 64 | }, 65 | "Syncfusion.EJ2.AspNet.Core": { 66 | "target": "Package", 67 | "version": "[20.1.0.58, )" 68 | } 69 | }, 70 | "imports": [ 71 | "net461", 72 | "net462", 73 | "net47", 74 | "net471", 75 | "net472", 76 | "net48" 77 | ], 78 | "assetTargetFallback": true, 79 | "warn": true, 80 | "frameworkReferences": { 81 | "Microsoft.AspNetCore.App": { 82 | "privateAssets": "none" 83 | }, 84 | "Microsoft.NETCore.App": { 85 | "privateAssets": "all" 86 | } 87 | }, 88 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.201\\RuntimeIdentifierGraph.json" 89 | } 90 | } 91 | } 92 | } 93 | } -------------------------------------------------------------------------------- /Expense Tracker/obj/Expense Tracker.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\CodAffection\.nuget\packages\ 9 | PackageReference 10 | 6.1.0 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | C:\Users\CodAffection\.nuget\packages\microsoft.extensions.apidescription.server\3.0.0 22 | C:\Users\CodAffection\.nuget\packages\messagepackanalyzer\2.1.152 23 | C:\Users\CodAffection\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.2 24 | C:\Users\CodAffection\.nuget\packages\microsoft.codeanalysis.analyzerutilities\3.3.0 25 | C:\Users\CodAffection\.nuget\packages\microsoft.entityframeworkcore.tools\6.0.5 26 | 27 | -------------------------------------------------------------------------------- /Expense Tracker/obj/Expense Tracker.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Expense Tracker/obj/staticwebassets.pack.sentinel: -------------------------------------------------------------------------------- 1 | 2.0 2 | 2.0 3 | 2.0 4 | 2.0 5 | 2.0 6 | 2.0 7 | 2.0 8 | 2.0 9 | 2.0 10 | 2.0 11 | 2.0 12 | 2.0 13 | 2.0 14 | 2.0 15 | 2.0 16 | 2.0 17 | 2.0 18 | 2.0 19 | 2.0 20 | 2.0 21 | 2.0 22 | 2.0 23 | 2.0 24 | 2.0 25 | 2.0 26 | 2.0 27 | 2.0 28 | 2.0 29 | 2.0 30 | 2.0 31 | 2.0 32 | 2.0 33 | 2.0 34 | 2.0 35 | 2.0 36 | 2.0 37 | 2.0 38 | 2.0 39 | 2.0 40 | 2.0 41 | 2.0 42 | 2.0 43 | 2.0 44 | 2.0 45 | 2.0 46 | 2.0 47 | 2.0 48 | 2.0 49 | 2.0 50 | 2.0 51 | 2.0 52 | 2.0 53 | 2.0 54 | 2.0 55 | 2.0 56 | 2.0 57 | 2.0 58 | 2.0 59 | 2.0 60 | 2.0 61 | 2.0 62 | 2.0 63 | 2.0 64 | 2.0 65 | 2.0 66 | 2.0 67 | 2.0 68 | 2.0 69 | 2.0 70 | 2.0 71 | 2.0 72 | 2.0 73 | 2.0 74 | 2.0 75 | 2.0 76 | 2.0 77 | 2.0 78 | 2.0 79 | 2.0 80 | 2.0 81 | 2.0 82 | 2.0 83 | 2.0 84 | 2.0 85 | 2.0 86 | 2.0 87 | 2.0 88 | 2.0 89 | 2.0 90 | 2.0 91 | 2.0 92 | 2.0 93 | 2.0 94 | 2.0 95 | 2.0 96 | 2.0 97 | 2.0 98 | 2.0 99 | 2.0 100 | 2.0 101 | 2.0 102 | 2.0 103 | 2.0 104 | 2.0 105 | 2.0 106 | 2.0 107 | 2.0 108 | 2.0 109 | 2.0 110 | 2.0 111 | 2.0 112 | 2.0 113 | 2.0 114 | 2.0 115 | 2.0 116 | 2.0 117 | 2.0 118 | 2.0 119 | 2.0 120 | 2.0 121 | 2.0 122 | 2.0 123 | 2.0 124 | 2.0 125 | 2.0 126 | 2.0 127 | 2.0 128 | 2.0 129 | 2.0 130 | 2.0 131 | 2.0 132 | 2.0 133 | 2.0 134 | 2.0 135 | 2.0 136 | 2.0 137 | 2.0 138 | 2.0 139 | 2.0 140 | 2.0 141 | 2.0 142 | 2.0 143 | 2.0 144 | 2.0 145 | 2.0 146 | 2.0 147 | 2.0 148 | 2.0 149 | 2.0 150 | 2.0 151 | 2.0 152 | 2.0 153 | 2.0 154 | 2.0 155 | 2.0 156 | 2.0 157 | 2.0 158 | 2.0 159 | 2.0 160 | 2.0 161 | 2.0 162 | 2.0 163 | 2.0 164 | 2.0 165 | 2.0 166 | 2.0 167 | 2.0 168 | 2.0 169 | 2.0 170 | 2.0 171 | 2.0 172 | 2.0 173 | 2.0 174 | 2.0 175 | 2.0 176 | 2.0 177 | 2.0 178 | 2.0 179 | 2.0 180 | 2.0 181 | 2.0 182 | 2.0 183 | 2.0 184 | 2.0 185 | 2.0 186 | 2.0 187 | 2.0 188 | 2.0 189 | 2.0 190 | 2.0 191 | 2.0 192 | 2.0 193 | 2.0 194 | 2.0 195 | 2.0 196 | 2.0 197 | 2.0 198 | 2.0 199 | 2.0 200 | 2.0 201 | 2.0 202 | 2.0 203 | 2.0 204 | 2.0 205 | 2.0 206 | -------------------------------------------------------------------------------- /Expense Tracker/wwwroot/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/wwwroot/favicon-16x16.png -------------------------------------------------------------------------------- /Expense Tracker/wwwroot/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/wwwroot/favicon-32x32.png -------------------------------------------------------------------------------- /Expense Tracker/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Expense Tracker/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 | -------------------------------------------------------------------------------- /Expense Tracker/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 | -------------------------------------------------------------------------------- /Expense Tracker/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Reboot v5.1.0 (https://getbootstrap.com/) 3 | * Copyright 2011-2021 The Bootstrap Authors 4 | * Copyright 2011-2021 Twitter, Inc. 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) 6 | * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) 7 | */*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){h1{font-size:2.5rem}}h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){h2{font-size:2rem}}h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){h3{font-size:1.75rem}}h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){h4{font-size:1.5rem}}h5{font-size:1.25rem}h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:.875em}mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important} 8 | /*# sourceMappingURL=bootstrap-reboot.min.css.map */ -------------------------------------------------------------------------------- /Expense Tracker/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Reboot v5.1.0 (https://getbootstrap.com/) 3 | * Copyright 2011-2021 The Bootstrap Authors 4 | * Copyright 2011-2021 Twitter, Inc. 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) 6 | * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) 7 | */ 8 | *, 9 | *::before, 10 | *::after { 11 | box-sizing: border-box; 12 | } 13 | 14 | @media (prefers-reduced-motion: no-preference) { 15 | :root { 16 | scroll-behavior: smooth; 17 | } 18 | } 19 | 20 | body { 21 | margin: 0; 22 | font-family: var(--bs-body-font-family); 23 | font-size: var(--bs-body-font-size); 24 | font-weight: var(--bs-body-font-weight); 25 | line-height: var(--bs-body-line-height); 26 | color: var(--bs-body-color); 27 | text-align: var(--bs-body-text-align); 28 | background-color: var(--bs-body-bg); 29 | -webkit-text-size-adjust: 100%; 30 | -webkit-tap-highlight-color: rgba(0, 0, 0, 0); 31 | } 32 | 33 | hr { 34 | margin: 1rem 0; 35 | color: inherit; 36 | background-color: currentColor; 37 | border: 0; 38 | opacity: 0.25; 39 | } 40 | 41 | hr:not([size]) { 42 | height: 1px; 43 | } 44 | 45 | h6, h5, h4, h3, h2, h1 { 46 | margin-top: 0; 47 | margin-bottom: 0.5rem; 48 | font-weight: 500; 49 | line-height: 1.2; 50 | } 51 | 52 | h1 { 53 | font-size: calc(1.375rem + 1.5vw); 54 | } 55 | @media (min-width: 1200px) { 56 | h1 { 57 | font-size: 2.5rem; 58 | } 59 | } 60 | 61 | h2 { 62 | font-size: calc(1.325rem + 0.9vw); 63 | } 64 | @media (min-width: 1200px) { 65 | h2 { 66 | font-size: 2rem; 67 | } 68 | } 69 | 70 | h3 { 71 | font-size: calc(1.3rem + 0.6vw); 72 | } 73 | @media (min-width: 1200px) { 74 | h3 { 75 | font-size: 1.75rem; 76 | } 77 | } 78 | 79 | h4 { 80 | font-size: calc(1.275rem + 0.3vw); 81 | } 82 | @media (min-width: 1200px) { 83 | h4 { 84 | font-size: 1.5rem; 85 | } 86 | } 87 | 88 | h5 { 89 | font-size: 1.25rem; 90 | } 91 | 92 | h6 { 93 | font-size: 1rem; 94 | } 95 | 96 | p { 97 | margin-top: 0; 98 | margin-bottom: 1rem; 99 | } 100 | 101 | abbr[title], 102 | abbr[data-bs-original-title] { 103 | -webkit-text-decoration: underline dotted; 104 | text-decoration: underline dotted; 105 | cursor: help; 106 | -webkit-text-decoration-skip-ink: none; 107 | text-decoration-skip-ink: none; 108 | } 109 | 110 | address { 111 | margin-bottom: 1rem; 112 | font-style: normal; 113 | line-height: inherit; 114 | } 115 | 116 | ol, 117 | ul { 118 | padding-right: 2rem; 119 | } 120 | 121 | ol, 122 | ul, 123 | dl { 124 | margin-top: 0; 125 | margin-bottom: 1rem; 126 | } 127 | 128 | ol ol, 129 | ul ul, 130 | ol ul, 131 | ul ol { 132 | margin-bottom: 0; 133 | } 134 | 135 | dt { 136 | font-weight: 700; 137 | } 138 | 139 | dd { 140 | margin-bottom: 0.5rem; 141 | margin-right: 0; 142 | } 143 | 144 | blockquote { 145 | margin: 0 0 1rem; 146 | } 147 | 148 | b, 149 | strong { 150 | font-weight: bolder; 151 | } 152 | 153 | small { 154 | font-size: 0.875em; 155 | } 156 | 157 | mark { 158 | padding: 0.2em; 159 | background-color: #fcf8e3; 160 | } 161 | 162 | sub, 163 | sup { 164 | position: relative; 165 | font-size: 0.75em; 166 | line-height: 0; 167 | vertical-align: baseline; 168 | } 169 | 170 | sub { 171 | bottom: -0.25em; 172 | } 173 | 174 | sup { 175 | top: -0.5em; 176 | } 177 | 178 | a { 179 | color: #0d6efd; 180 | text-decoration: underline; 181 | } 182 | a:hover { 183 | color: #0a58ca; 184 | } 185 | 186 | a:not([href]):not([class]), a:not([href]):not([class]):hover { 187 | color: inherit; 188 | text-decoration: none; 189 | } 190 | 191 | pre, 192 | code, 193 | kbd, 194 | samp { 195 | font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; 196 | font-size: 1em; 197 | direction: ltr ; 198 | unicode-bidi: bidi-override; 199 | } 200 | 201 | pre { 202 | display: block; 203 | margin-top: 0; 204 | margin-bottom: 1rem; 205 | overflow: auto; 206 | font-size: 0.875em; 207 | } 208 | pre code { 209 | font-size: inherit; 210 | color: inherit; 211 | word-break: normal; 212 | } 213 | 214 | code { 215 | font-size: 0.875em; 216 | color: #d63384; 217 | word-wrap: break-word; 218 | } 219 | a > code { 220 | color: inherit; 221 | } 222 | 223 | kbd { 224 | padding: 0.2rem 0.4rem; 225 | font-size: 0.875em; 226 | color: #fff; 227 | background-color: #212529; 228 | border-radius: 0.2rem; 229 | } 230 | kbd kbd { 231 | padding: 0; 232 | font-size: 1em; 233 | font-weight: 700; 234 | } 235 | 236 | figure { 237 | margin: 0 0 1rem; 238 | } 239 | 240 | img, 241 | svg { 242 | vertical-align: middle; 243 | } 244 | 245 | table { 246 | caption-side: bottom; 247 | border-collapse: collapse; 248 | } 249 | 250 | caption { 251 | padding-top: 0.5rem; 252 | padding-bottom: 0.5rem; 253 | color: #6c757d; 254 | text-align: right; 255 | } 256 | 257 | th { 258 | text-align: inherit; 259 | text-align: -webkit-match-parent; 260 | } 261 | 262 | thead, 263 | tbody, 264 | tfoot, 265 | tr, 266 | td, 267 | th { 268 | border-color: inherit; 269 | border-style: solid; 270 | border-width: 0; 271 | } 272 | 273 | label { 274 | display: inline-block; 275 | } 276 | 277 | button { 278 | border-radius: 0; 279 | } 280 | 281 | button:focus:not(:focus-visible) { 282 | outline: 0; 283 | } 284 | 285 | input, 286 | button, 287 | select, 288 | optgroup, 289 | textarea { 290 | margin: 0; 291 | font-family: inherit; 292 | font-size: inherit; 293 | line-height: inherit; 294 | } 295 | 296 | button, 297 | select { 298 | text-transform: none; 299 | } 300 | 301 | [role=button] { 302 | cursor: pointer; 303 | } 304 | 305 | select { 306 | word-wrap: normal; 307 | } 308 | select:disabled { 309 | opacity: 1; 310 | } 311 | 312 | [list]::-webkit-calendar-picker-indicator { 313 | display: none; 314 | } 315 | 316 | button, 317 | [type=button], 318 | [type=reset], 319 | [type=submit] { 320 | -webkit-appearance: button; 321 | } 322 | button:not(:disabled), 323 | [type=button]:not(:disabled), 324 | [type=reset]:not(:disabled), 325 | [type=submit]:not(:disabled) { 326 | cursor: pointer; 327 | } 328 | 329 | ::-moz-focus-inner { 330 | padding: 0; 331 | border-style: none; 332 | } 333 | 334 | textarea { 335 | resize: vertical; 336 | } 337 | 338 | fieldset { 339 | min-width: 0; 340 | padding: 0; 341 | margin: 0; 342 | border: 0; 343 | } 344 | 345 | legend { 346 | float: right; 347 | width: 100%; 348 | padding: 0; 349 | margin-bottom: 0.5rem; 350 | font-size: calc(1.275rem + 0.3vw); 351 | line-height: inherit; 352 | } 353 | @media (min-width: 1200px) { 354 | legend { 355 | font-size: 1.5rem; 356 | } 357 | } 358 | legend + * { 359 | clear: right; 360 | } 361 | 362 | ::-webkit-datetime-edit-fields-wrapper, 363 | ::-webkit-datetime-edit-text, 364 | ::-webkit-datetime-edit-minute, 365 | ::-webkit-datetime-edit-hour-field, 366 | ::-webkit-datetime-edit-day-field, 367 | ::-webkit-datetime-edit-month-field, 368 | ::-webkit-datetime-edit-year-field { 369 | padding: 0; 370 | } 371 | 372 | ::-webkit-inner-spin-button { 373 | height: auto; 374 | } 375 | 376 | [type=search] { 377 | outline-offset: -2px; 378 | -webkit-appearance: textfield; 379 | } 380 | 381 | [type="tel"], 382 | [type="url"], 383 | [type="email"], 384 | [type="number"] { 385 | direction: ltr; 386 | } 387 | ::-webkit-search-decoration { 388 | -webkit-appearance: none; 389 | } 390 | 391 | ::-webkit-color-swatch-wrapper { 392 | padding: 0; 393 | } 394 | 395 | ::file-selector-button { 396 | font: inherit; 397 | } 398 | 399 | ::-webkit-file-upload-button { 400 | font: inherit; 401 | -webkit-appearance: button; 402 | } 403 | 404 | output { 405 | display: inline-block; 406 | } 407 | 408 | iframe { 409 | border: 0; 410 | } 411 | 412 | summary { 413 | display: list-item; 414 | cursor: pointer; 415 | } 416 | 417 | progress { 418 | vertical-align: baseline; 419 | } 420 | 421 | [hidden] { 422 | display: none !important; 423 | } 424 | /*# sourceMappingURL=bootstrap-reboot.rtl.css.map */ -------------------------------------------------------------------------------- /Expense Tracker/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Reboot v5.1.0 (https://getbootstrap.com/) 3 | * Copyright 2011-2021 The Bootstrap Authors 4 | * Copyright 2011-2021 Twitter, Inc. 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) 6 | * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) 7 | */*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){h1{font-size:2.5rem}}h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){h2{font-size:2rem}}h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){h3{font-size:1.75rem}}h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){h4{font-size:1.5rem}}h5{font-size:1.25rem}h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-right:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-right:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:.875em}mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:right}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:right;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:right}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}[type=email],[type=number],[type=tel],[type=url]{direction:ltr}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important} 8 | /*# sourceMappingURL=bootstrap-reboot.rtl.min.css.map */ -------------------------------------------------------------------------------- /Expense Tracker/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) .NET Foundation. All rights reserved. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); you may not use 4 | these files except in compliance with the License. You may obtain a copy of the 5 | License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software distributed 10 | under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR 11 | CONDITIONS OF ANY KIND, either express or implied. See the License for the 12 | specific language governing permissions and limitations under the License. 13 | -------------------------------------------------------------------------------- /Expense Tracker/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- 1 | // Unobtrusive validation support library for jQuery and jQuery Validate 2 | // Copyright (c) .NET Foundation. All rights reserved. 3 | // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. 4 | // @version v3.2.11 5 | !function(a){"function"==typeof define&&define.amd?define("jquery.validate.unobtrusive",["jquery-validation"],a):"object"==typeof module&&module.exports?module.exports=a(require("jquery-validation")):jQuery.validator.unobtrusive=a(jQuery)}(function(a){function e(a,e,n){a.rules[e]=n,a.message&&(a.messages[e]=a.message)}function n(a){return a.replace(/^\s+|\s+$/g,"").split(/\s*,\s*/g)}function t(a){return a.replace(/([!"#$%&'()*+,.\/:;<=>?@\[\\\]^`{|}~])/g,"\\$1")}function r(a){return a.substr(0,a.lastIndexOf(".")+1)}function i(a,e){return 0===a.indexOf("*.")&&(a=a.replace("*.",e)),a}function o(e,n){var r=a(this).find("[data-valmsg-for='"+t(n[0].name)+"']"),i=r.attr("data-valmsg-replace"),o=i?a.parseJSON(i)!==!1:null;r.removeClass("field-validation-valid").addClass("field-validation-error"),e.data("unobtrusiveContainer",r),o?(r.empty(),e.removeClass("input-validation-error").appendTo(r)):e.hide()}function d(e,n){var t=a(this).find("[data-valmsg-summary=true]"),r=t.find("ul");r&&r.length&&n.errorList.length&&(r.empty(),t.addClass("validation-summary-errors").removeClass("validation-summary-valid"),a.each(n.errorList,function(){a("
  • ").html(this.message).appendTo(r)}))}function s(e){var n=e.data("unobtrusiveContainer");if(n){var t=n.attr("data-valmsg-replace"),r=t?a.parseJSON(t):null;n.addClass("field-validation-valid").removeClass("field-validation-error"),e.removeData("unobtrusiveContainer"),r&&n.empty()}}function l(e){var n=a(this),t="__jquery_unobtrusive_validation_form_reset";if(!n.data(t)){n.data(t,!0);try{n.data("validator").resetForm()}finally{n.removeData(t)}n.find(".validation-summary-errors").addClass("validation-summary-valid").removeClass("validation-summary-errors"),n.find(".field-validation-error").addClass("field-validation-valid").removeClass("field-validation-error").removeData("unobtrusiveContainer").find(">*").removeData("unobtrusiveContainer")}}function u(e){var n=a(e),t=n.data(v),r=a.proxy(l,e),i=f.unobtrusive.options||{},u=function(n,t){var r=i[n];r&&a.isFunction(r)&&r.apply(e,t)};return t||(t={options:{errorClass:i.errorClass||"input-validation-error",errorElement:i.errorElement||"span",errorPlacement:function(){o.apply(e,arguments),u("errorPlacement",arguments)},invalidHandler:function(){d.apply(e,arguments),u("invalidHandler",arguments)},messages:{},rules:{},success:function(){s.apply(e,arguments),u("success",arguments)}},attachValidation:function(){n.off("reset."+v,r).on("reset."+v,r).validate(this.options)},validate:function(){return n.validate(),n.valid()}},n.data(v,t)),t}var m,f=a.validator,v="unobtrusiveValidation";return f.unobtrusive={adapters:[],parseElement:function(e,n){var t,r,i,o=a(e),d=o.parents("form")[0];d&&(t=u(d),t.options.rules[e.name]=r={},t.options.messages[e.name]=i={},a.each(this.adapters,function(){var n="data-val-"+this.name,t=o.attr(n),s={};void 0!==t&&(n+="-",a.each(this.params,function(){s[this]=o.attr(n+this)}),this.adapt({element:e,form:d,message:t,params:s,rules:r,messages:i}))}),a.extend(r,{__dummy__:!0}),n||t.attachValidation())},parse:function(e){var n=a(e),t=n.parents().addBack().filter("form").add(n.find("form")).has("[data-val=true]");n.find("[data-val=true]").each(function(){f.unobtrusive.parseElement(this,!0)}),t.each(function(){var a=u(this);a&&a.attachValidation()})}},m=f.unobtrusive.adapters,m.add=function(a,e,n){return n||(n=e,e=[]),this.push({name:a,params:e,adapt:n}),this},m.addBool=function(a,n){return this.add(a,function(t){e(t,n||a,!0)})},m.addMinMax=function(a,n,t,r,i,o){return this.add(a,[i||"min",o||"max"],function(a){var i=a.params.min,o=a.params.max;i&&o?e(a,r,[i,o]):i?e(a,n,i):o&&e(a,t,o)})},m.addSingleVal=function(a,n,t){return this.add(a,[n||"val"],function(r){e(r,t||a,r.params[n])})},f.addMethod("__dummy__",function(a,e,n){return!0}),f.addMethod("regex",function(a,e,n){var t;return!!this.optional(e)||(t=new RegExp(n).exec(a),t&&0===t.index&&t[0].length===a.length)}),f.addMethod("nonalphamin",function(a,e,n){var t;return n&&(t=a.match(/\W/g),t=t&&t.length>=n),t}),f.methods.extension?(m.addSingleVal("accept","mimtype"),m.addSingleVal("extension","extension")):m.addSingleVal("extension","extension","accept"),m.addSingleVal("regex","pattern"),m.addBool("creditcard").addBool("date").addBool("digits").addBool("email").addBool("number").addBool("url"),m.addMinMax("length","minlength","maxlength","rangelength").addMinMax("range","min","max","range"),m.addMinMax("minlength","minlength").addMinMax("maxlength","minlength","maxlength"),m.add("equalto",["other"],function(n){var o=r(n.element.name),d=n.params.other,s=i(d,o),l=a(n.form).find(":input").filter("[name='"+t(s)+"']")[0];e(n,"equalTo",l)}),m.add("required",function(a){"INPUT"===a.element.tagName.toUpperCase()&&"CHECKBOX"===a.element.type.toUpperCase()||e(a,"required",!0)}),m.add("remote",["url","type","additionalfields"],function(o){var d={url:o.params.url,type:o.params.type||"GET",data:{}},s=r(o.element.name);a.each(n(o.params.additionalfields||o.element.name),function(e,n){var r=i(n,s);d.data[r]=function(){var e=a(o.form).find(":input").filter("[name='"+t(r)+"']");return e.is(":checkbox")?e.filter(":checked").val()||e.filter(":hidden").val()||"":e.is(":radio")?e.filter(":checked").val()||"":e.val()}}),e(o,"remote",d)}),m.add("password",["min","nonalphamin","regex"],function(a){a.params.min&&e(a,"minlength",a.params.min),a.params.nonalphamin&&e(a,"nonalphamin",a.params.nonalphamin),a.params.regex&&e(a,"regex",a.params.regex)}),m.add("fileextensions",["extensions"],function(a){e(a,"extension",a.params.extensions)}),a(function(){f.unobtrusive.parse(document)}),f.unobtrusive}); 6 | -------------------------------------------------------------------------------- /Expense Tracker/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 | -------------------------------------------------------------------------------- /Expense Tracker/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright JS Foundation and other contributors, https://js.foundation/ 2 | 3 | This software consists of voluntary contributions made by many 4 | individuals. For exact contribution history, see the revision history 5 | available at https://github.com/jquery/jquery 6 | 7 | The following license applies to all parts of this software except as 8 | documented below: 9 | 10 | ==== 11 | 12 | Permission is hereby granted, free of charge, to any person obtaining 13 | a copy of this software and associated documentation files (the 14 | "Software"), to deal in the Software without restriction, including 15 | without limitation the rights to use, copy, modify, merge, publish, 16 | distribute, sublicense, and/or sell copies of the Software, and to 17 | permit persons to whom the Software is furnished to do so, subject to 18 | the following conditions: 19 | 20 | The above copyright notice and this permission notice shall be 21 | included in all copies or substantial portions of the Software. 22 | 23 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 24 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 25 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 26 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 27 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 28 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 29 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 30 | 31 | ==== 32 | 33 | All files located in the node_modules and external directories are 34 | externally maintained libraries used by this software which have their 35 | own licenses; we recommend you read them, as their terms may differ from 36 | the terms above. 37 | -------------------------------------------------------------------------------- /Expense Tracker/wwwroot/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/wwwroot/logo.png -------------------------------------------------------------------------------- /Expense Tracker/wwwroot/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Expense-Tracker-App-in-Asp.Net-Core-MVC/daa51751c9574e8dd6111a7dcd8380eb14c83021/Expense Tracker/wwwroot/profile.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Expense-Tracker-App-in-Asp.Net-Core-MVC 2 | This is an Expense Tracker App in Asp.Net Core MVC using SyncFusion Components. 3 | 4 | This is a complete Asp.Net Core application to demonstrate the building an enterprise application from scratch. 5 | 6 | Discussed Points : 7 | Implemented CRUD Operation of Category & Transaction 8 | Grid with Paging & Sorting 9 | Dashboard with Chart Elements 10 | Side Menu within Dockable Side Bar 11 | Etc. 12 | 13 | 14 | 15 | ## How it works ? 16 | 17 | :tv: Video tutorial on this same topic 18 | Url : https://youtu.be/zQ5eijfpuu8 19 | 20 | Video demonstrating creation of an expense tracker application from scratch 23 | 24 | 25 | | :bar_chart: | List of Tutorials | | :moneybag: | Support Us | 26 | |--------------------------:|:---------------------|---|---------------------:|:-------------------------------------| 27 | | Angular |http://bit.ly/2KQN9xF | |Paypal | https://goo.gl/bPcyXW | 28 | | Asp.Net Core |http://bit.ly/30fPDMg | |Amazon Affiliate | https://geni.us/JDzpE | 29 | | React |http://bit.ly/325temF | | 30 | | Python |http://bit.ly/2ws4utg | | :point_right: | Follow Us | 31 | | Node.js |https://goo.gl/viJcFs | |Website |http://www.codaffection.com | 32 | | Asp.Net MVC |https://goo.gl/gvjUJ7 | |YouTube |https://www.youtube.com/codaffection | 33 | | Flutter |https://bit.ly/3ggmmJz| |Facebook |https://www.facebook.com/codaffection | 34 | | Web API |https://goo.gl/itVayJ | |Twitter |https://twitter.com/CodAffection | 35 | | MEAN Stack |https://goo.gl/YJPPAH | | 36 | | C# Tutorial |https://goo.gl/s1zJxo | | 37 | | Asp.Net WebForm |https://goo.gl/GXC2aJ | | 38 | | C# WinForm |https://goo.gl/vHS9Hd | | 39 | | MS SQL |https://goo.gl/MLYS9e | | 40 | | Crystal Report |https://goo.gl/5Vou7t | | 41 | | CG Exercises in C Program |https://goo.gl/qEWJCs | | 42 | --------------------------------------------------------------------------------