├── .gitignore ├── .vs ├── CRUDdemo │ ├── config │ │ └── applicationhost.config │ └── v16 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ └── storage.ide ├── ProjectSettings.json └── slnx.sqlite ├── CRUDDemo.sln ├── CRUDDemo ├── App_Start │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ └── RouteConfig.cs ├── CRUDDemo.Context.cs ├── CRUDDemo.Context.tt ├── CRUDDemo.Designer.cs ├── CRUDDemo.cs ├── CRUDDemo.csproj ├── CRUDDemo.csproj.user ├── CRUDDemo.edmx ├── CRUDDemo.edmx.diagram ├── CRUDDemo.tt ├── Content │ ├── Site.css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap-theme.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ └── bootstrap.min.css.map ├── Controllers │ ├── CRUDController.cs │ └── HomeController.cs ├── Global.asax ├── Global.asax.cs ├── Properties │ └── AssemblyInfo.cs ├── Scripts │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-3.4.1.intellisense.js │ ├── jquery-3.4.1.js │ ├── jquery-3.4.1.min.js │ ├── jquery-3.4.1.min.map │ ├── jquery-3.4.1.slim.js │ ├── jquery-3.4.1.slim.min.js │ ├── jquery-3.4.1.slim.min.map │ ├── jquery.validate-vsdoc.js │ ├── jquery.validate.js │ ├── jquery.validate.min.js │ ├── jquery.validate.unobtrusive.js │ ├── jquery.validate.unobtrusive.min.js │ └── modernizr-2.8.3.js ├── Student.cs ├── Views │ ├── CRUD │ │ ├── Delete.cshtml │ │ ├── Read.cshtml │ │ ├── Update.cshtml │ │ └── create.cshtml │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── Web.config │ └── _ViewStart.cshtml ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── bin │ ├── Antlr3.Runtime.dll │ ├── Antlr3.Runtime.pdb │ ├── CRUDDemo.dll │ ├── CRUDDemo.dll.config │ ├── CRUDDemo.pdb │ ├── EntityFramework.SqlServer.dll │ ├── EntityFramework.SqlServer.xml │ ├── EntityFramework.dll │ ├── EntityFramework.xml │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml │ ├── Microsoft.Web.Infrastructure.dll │ ├── Newtonsoft.Json.dll │ ├── Newtonsoft.Json.xml │ ├── System.Web.Helpers.dll │ ├── System.Web.Helpers.xml │ ├── System.Web.Mvc.dll │ ├── System.Web.Mvc.xml │ ├── System.Web.Optimization.dll │ ├── System.Web.Optimization.xml │ ├── System.Web.Razor.dll │ ├── System.Web.Razor.xml │ ├── System.Web.WebPages.Deployment.dll │ ├── System.Web.WebPages.Deployment.xml │ ├── System.Web.WebPages.Razor.dll │ ├── System.Web.WebPages.Razor.xml │ ├── System.Web.WebPages.dll │ ├── System.Web.WebPages.xml │ ├── WebGrease.dll │ └── roslyn │ │ ├── Microsoft.Build.Tasks.CodeAnalysis.dll │ │ ├── Microsoft.CSharp.Core.targets │ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.dll │ │ ├── Microsoft.CodeAnalysis.Scripting.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.dll │ │ ├── Microsoft.CodeAnalysis.dll │ │ ├── Microsoft.DiaSymReader.Native.amd64.dll │ │ ├── Microsoft.DiaSymReader.Native.x86.dll │ │ ├── Microsoft.Managed.Core.targets │ │ ├── Microsoft.VisualBasic.Core.targets │ │ ├── Microsoft.Win32.Primitives.dll │ │ ├── System.AppContext.dll │ │ ├── System.Collections.Immutable.dll │ │ ├── System.Console.dll │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ ├── System.Diagnostics.FileVersionInfo.dll │ │ ├── System.Diagnostics.StackTrace.dll │ │ ├── System.Globalization.Calendars.dll │ │ ├── System.IO.Compression.ZipFile.dll │ │ ├── System.IO.Compression.dll │ │ ├── System.IO.FileSystem.Primitives.dll │ │ ├── System.IO.FileSystem.dll │ │ ├── System.Net.Http.dll │ │ ├── System.Net.Sockets.dll │ │ ├── System.Reflection.Metadata.dll │ │ ├── System.Runtime.InteropServices.RuntimeInformation.dll │ │ ├── System.Security.Cryptography.Algorithms.dll │ │ ├── System.Security.Cryptography.Encoding.dll │ │ ├── System.Security.Cryptography.Primitives.dll │ │ ├── System.Security.Cryptography.X509Certificates.dll │ │ ├── System.Text.Encoding.CodePages.dll │ │ ├── System.Threading.Tasks.Extensions.dll │ │ ├── System.ValueTuple.dll │ │ ├── System.Xml.ReaderWriter.dll │ │ ├── System.Xml.XPath.XDocument.dll │ │ ├── System.Xml.XPath.dll │ │ ├── System.Xml.XmlDocument.dll │ │ ├── VBCSCompiler.exe │ │ ├── VBCSCompiler.exe.config │ │ ├── csc.exe │ │ ├── csc.exe.config │ │ ├── csc.rsp │ │ ├── csi.exe │ │ ├── csi.exe.config │ │ ├── csi.rsp │ │ ├── vbc.exe │ │ ├── vbc.exe.config │ │ └── vbc.rsp ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── obj │ └── Debug │ │ ├── CRUDDemo.csproj.CopyComplete │ │ ├── CRUDDemo.csproj.FileListAbsolute.txt │ │ ├── CRUDDemo.csprojAssemblyReference.cache │ │ ├── CRUDDemo.dll │ │ ├── CRUDDemo.pdb │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TempPE │ │ ├── CRUDDemo.Context.cs.dll │ │ ├── CRUDDemo.Designer.cs.dll │ │ └── CRUDDemo.cs.dll │ │ └── edmxResourcesToEmbed │ │ ├── CRUDDemo.csdl │ │ ├── CRUDDemo.msl │ │ └── CRUDDemo.ssdl └── packages.config ├── README.md └── packages ├── Antlr.3.5.0.2 ├── .signature.p7s ├── Antlr.3.5.0.2.nupkg └── lib │ ├── Antlr3.Runtime.dll │ └── Antlr3.Runtime.pdb ├── EntityFramework.6.2.0 ├── Content │ └── net40 │ │ ├── App.config.transform │ │ └── Web.config.transform ├── EntityFramework.6.2.0.nupkg ├── lib │ ├── net40 │ │ ├── EntityFramework.SqlServer.dll │ │ ├── EntityFramework.SqlServer.xml │ │ ├── EntityFramework.dll │ │ └── EntityFramework.xml │ └── net45 │ │ ├── EntityFramework.SqlServer.dll │ │ ├── EntityFramework.SqlServer.xml │ │ ├── EntityFramework.dll │ │ └── EntityFramework.xml └── tools │ ├── EntityFramework.PowerShell.Utility.dll │ ├── EntityFramework.PowerShell.dll │ ├── EntityFramework.psd1 │ ├── EntityFramework.psm1 │ ├── about_EntityFramework.help.txt │ ├── init.ps1 │ ├── install.ps1 │ └── migrate.exe ├── Microsoft.AspNet.Mvc.5.2.7 ├── .signature.p7s ├── Content │ ├── Web.config.install.xdt │ └── Web.config.uninstall.xdt ├── Microsoft.AspNet.Mvc.5.2.7.nupkg └── lib │ └── net45 │ ├── System.Web.Mvc.dll │ └── System.Web.Mvc.xml ├── Microsoft.AspNet.Razor.3.2.7 ├── .signature.p7s ├── Microsoft.AspNet.Razor.3.2.7.nupkg └── lib │ └── net45 │ ├── System.Web.Razor.dll │ └── System.Web.Razor.xml ├── Microsoft.AspNet.Web.Optimization.1.1.3 ├── .signature.p7s ├── Microsoft.AspNet.Web.Optimization.1.1.3.nupkg └── lib │ └── net40 │ ├── System.Web.Optimization.dll │ └── system.web.optimization.xml ├── Microsoft.AspNet.WebPages.3.2.7 ├── .signature.p7s ├── Content │ ├── Web.config.install.xdt │ └── Web.config.uninstall.xdt ├── Microsoft.AspNet.WebPages.3.2.7.nupkg └── lib │ └── net45 │ ├── System.Web.Helpers.dll │ ├── System.Web.Helpers.xml │ ├── System.Web.WebPages.Deployment.dll │ ├── System.Web.WebPages.Deployment.xml │ ├── System.Web.WebPages.Razor.dll │ ├── System.Web.WebPages.Razor.xml │ ├── System.Web.WebPages.dll │ └── System.Web.WebPages.xml ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1 ├── .signature.p7s ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1.nupkg ├── build │ ├── net45 │ │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.Extensions.props │ │ └── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props │ └── net46 │ │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.Extensions.props │ │ └── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props ├── content │ ├── net45 │ │ ├── app.config.install.xdt │ │ ├── app.config.uninstall.xdt │ │ ├── web.config.install.xdt │ │ └── web.config.uninstall.xdt │ └── net46 │ │ ├── app.config.install.xdt │ │ ├── app.config.uninstall.xdt │ │ ├── web.config.install.xdt │ │ └── web.config.uninstall.xdt ├── lib │ └── net45 │ │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll │ │ └── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml └── tools │ ├── Roslyn45 │ ├── Microsoft.Build.Tasks.CodeAnalysis.dll │ ├── Microsoft.CSharp.Core.targets │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.dll │ ├── Microsoft.CodeAnalysis.CSharp.dll │ ├── Microsoft.CodeAnalysis.Scripting.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.dll │ ├── Microsoft.CodeAnalysis.dll │ ├── Microsoft.DiaSymReader.Native.amd64.dll │ ├── Microsoft.DiaSymReader.Native.x86.dll │ ├── Microsoft.VisualBasic.Core.targets │ ├── System.AppContext.dll │ ├── System.Collections.Immutable.dll │ ├── System.Diagnostics.StackTrace.dll │ ├── System.IO.FileSystem.Primitives.dll │ ├── System.IO.FileSystem.dll │ ├── System.Reflection.Metadata.dll │ ├── VBCSCompiler.exe │ ├── VBCSCompiler.exe.config │ ├── csc.exe │ ├── csc.exe.config │ ├── csc.rsp │ ├── csi.exe │ ├── csi.rsp │ ├── vbc.exe │ ├── vbc.exe.config │ └── vbc.rsp │ ├── RoslynLatest │ ├── Microsoft.Build.Tasks.CodeAnalysis.dll │ ├── Microsoft.CSharp.Core.targets │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.dll │ ├── Microsoft.CodeAnalysis.CSharp.dll │ ├── Microsoft.CodeAnalysis.Scripting.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.dll │ ├── Microsoft.CodeAnalysis.dll │ ├── Microsoft.DiaSymReader.Native.amd64.dll │ ├── Microsoft.DiaSymReader.Native.x86.dll │ ├── Microsoft.Managed.Core.targets │ ├── Microsoft.VisualBasic.Core.targets │ ├── Microsoft.Win32.Primitives.dll │ ├── System.AppContext.dll │ ├── System.Collections.Immutable.dll │ ├── System.Console.dll │ ├── System.Diagnostics.DiagnosticSource.dll │ ├── System.Diagnostics.FileVersionInfo.dll │ ├── System.Diagnostics.StackTrace.dll │ ├── System.Globalization.Calendars.dll │ ├── System.IO.Compression.ZipFile.dll │ ├── System.IO.Compression.dll │ ├── System.IO.FileSystem.Primitives.dll │ ├── System.IO.FileSystem.dll │ ├── System.Net.Http.dll │ ├── System.Net.Sockets.dll │ ├── System.Reflection.Metadata.dll │ ├── System.Runtime.InteropServices.RuntimeInformation.dll │ ├── System.Security.Cryptography.Algorithms.dll │ ├── System.Security.Cryptography.Encoding.dll │ ├── System.Security.Cryptography.Primitives.dll │ ├── System.Security.Cryptography.X509Certificates.dll │ ├── System.Text.Encoding.CodePages.dll │ ├── System.Threading.Tasks.Extensions.dll │ ├── System.ValueTuple.dll │ ├── System.Xml.ReaderWriter.dll │ ├── System.Xml.XPath.XDocument.dll │ ├── System.Xml.XPath.dll │ ├── System.Xml.XmlDocument.dll │ ├── VBCSCompiler.exe │ ├── VBCSCompiler.exe.config │ ├── csc.exe │ ├── csc.exe.config │ ├── csc.rsp │ ├── csi.exe │ ├── csi.exe.config │ ├── csi.rsp │ ├── vbc.exe │ ├── vbc.exe.config │ └── vbc.rsp │ └── net45 │ ├── install.ps1 │ └── uninstall.ps1 ├── Microsoft.Web.Infrastructure.1.0.0.0 ├── .signature.p7s ├── Microsoft.Web.Infrastructure.1.0.0.0.nupkg └── lib │ └── net40 │ └── Microsoft.Web.Infrastructure.dll ├── Microsoft.jQuery.Unobtrusive.Validation.3.2.11 ├── .signature.p7s ├── Content │ └── Scripts │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js └── Microsoft.jQuery.Unobtrusive.Validation.3.2.11.nupkg ├── Modernizr.2.8.3 ├── .signature.p7s ├── Content │ └── Scripts │ │ └── modernizr-2.8.3.js ├── Modernizr.2.8.3.nupkg └── Tools │ ├── common.ps1 │ ├── install.ps1 │ └── uninstall.ps1 ├── Newtonsoft.Json.12.0.2 ├── .signature.p7s ├── LICENSE.md ├── Newtonsoft.Json.12.0.2.nupkg └── lib │ ├── net20 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── net35 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── net40 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── net45 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── netstandard1.0 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── netstandard1.3 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── netstandard2.0 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── portable-net40+sl5+win8+wp8+wpa81 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ └── portable-net45+win8+wp8+wpa81 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml ├── WebGrease.1.6.0 ├── .signature.p7s ├── WebGrease.1.6.0.nupkg ├── lib │ └── WebGrease.dll └── tools │ └── WG.EXE ├── bootstrap.3.4.1 ├── .signature.p7s ├── LICENSE.txt ├── bootstrap.3.4.1.nupkg ├── content │ ├── Content │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ ├── Scripts │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ └── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 └── contentFiles │ ├── Content │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap-theme.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ └── bootstrap.min.css.map │ ├── Scripts │ ├── bootstrap.js │ └── bootstrap.min.js │ └── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── jQuery.3.4.1 ├── .signature.p7s ├── Content │ └── Scripts │ │ ├── jquery-3.4.1-vsdoc.js │ │ ├── jquery-3.4.1.js │ │ ├── jquery-3.4.1.min.js │ │ ├── jquery-3.4.1.min.map │ │ ├── jquery-3.4.1.slim.js │ │ ├── jquery-3.4.1.slim.min.js │ │ └── jquery-3.4.1.slim.min.map ├── Tools │ ├── common.ps1 │ ├── install.ps1 │ ├── jquery-3.4.1.intellisense.js │ └── uninstall.ps1 └── jQuery.3.4.1.nupkg └── jQuery.Validation.1.17.0 ├── .signature.p7s ├── Content └── Scripts │ ├── jquery.validate-vsdoc.js │ ├── jquery.validate.js │ └── jquery.validate.min.js └── jQuery.Validation.1.17.0.nupkg /.gitignore: -------------------------------------------------------------------------------- 1 | .vs/CRUDdemo/v16/Server/sqlite3/db.lock 2 | -------------------------------------------------------------------------------- /.vs/CRUDdemo/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/.vs/CRUDdemo/config/applicationhost.config -------------------------------------------------------------------------------- /.vs/CRUDdemo/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/.vs/CRUDdemo/v16/.suo -------------------------------------------------------------------------------- /.vs/CRUDdemo/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/CRUDdemo/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/.vs/CRUDdemo/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /CRUDDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo.sln -------------------------------------------------------------------------------- /CRUDDemo/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /CRUDDemo/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /CRUDDemo/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /CRUDDemo/CRUDDemo.Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/CRUDDemo.Context.cs -------------------------------------------------------------------------------- /CRUDDemo/CRUDDemo.Context.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/CRUDDemo.Context.tt -------------------------------------------------------------------------------- /CRUDDemo/CRUDDemo.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/CRUDDemo.Designer.cs -------------------------------------------------------------------------------- /CRUDDemo/CRUDDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/CRUDDemo.cs -------------------------------------------------------------------------------- /CRUDDemo/CRUDDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/CRUDDemo.csproj -------------------------------------------------------------------------------- /CRUDDemo/CRUDDemo.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/CRUDDemo.csproj.user -------------------------------------------------------------------------------- /CRUDDemo/CRUDDemo.edmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/CRUDDemo.edmx -------------------------------------------------------------------------------- /CRUDDemo/CRUDDemo.edmx.diagram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/CRUDDemo.edmx.diagram -------------------------------------------------------------------------------- /CRUDDemo/CRUDDemo.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/CRUDDemo.tt -------------------------------------------------------------------------------- /CRUDDemo/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Content/Site.css -------------------------------------------------------------------------------- /CRUDDemo/Content/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Content/bootstrap-theme.css -------------------------------------------------------------------------------- /CRUDDemo/Content/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Content/bootstrap-theme.css.map -------------------------------------------------------------------------------- /CRUDDemo/Content/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Content/bootstrap-theme.min.css -------------------------------------------------------------------------------- /CRUDDemo/Content/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Content/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /CRUDDemo/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Content/bootstrap.css -------------------------------------------------------------------------------- /CRUDDemo/Content/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Content/bootstrap.css.map -------------------------------------------------------------------------------- /CRUDDemo/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Content/bootstrap.min.css -------------------------------------------------------------------------------- /CRUDDemo/Content/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Content/bootstrap.min.css.map -------------------------------------------------------------------------------- /CRUDDemo/Controllers/CRUDController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Controllers/CRUDController.cs -------------------------------------------------------------------------------- /CRUDDemo/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Controllers/HomeController.cs -------------------------------------------------------------------------------- /CRUDDemo/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Global.asax -------------------------------------------------------------------------------- /CRUDDemo/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Global.asax.cs -------------------------------------------------------------------------------- /CRUDDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CRUDDemo/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Scripts/bootstrap.js -------------------------------------------------------------------------------- /CRUDDemo/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /CRUDDemo/Scripts/jquery-3.4.1.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Scripts/jquery-3.4.1.intellisense.js -------------------------------------------------------------------------------- /CRUDDemo/Scripts/jquery-3.4.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Scripts/jquery-3.4.1.js -------------------------------------------------------------------------------- /CRUDDemo/Scripts/jquery-3.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Scripts/jquery-3.4.1.min.js -------------------------------------------------------------------------------- /CRUDDemo/Scripts/jquery-3.4.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Scripts/jquery-3.4.1.min.map -------------------------------------------------------------------------------- /CRUDDemo/Scripts/jquery-3.4.1.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Scripts/jquery-3.4.1.slim.js -------------------------------------------------------------------------------- /CRUDDemo/Scripts/jquery-3.4.1.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Scripts/jquery-3.4.1.slim.min.js -------------------------------------------------------------------------------- /CRUDDemo/Scripts/jquery-3.4.1.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Scripts/jquery-3.4.1.slim.min.map -------------------------------------------------------------------------------- /CRUDDemo/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /CRUDDemo/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /CRUDDemo/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /CRUDDemo/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /CRUDDemo/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /CRUDDemo/Scripts/modernizr-2.8.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Scripts/modernizr-2.8.3.js -------------------------------------------------------------------------------- /CRUDDemo/Student.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Student.cs -------------------------------------------------------------------------------- /CRUDDemo/Views/CRUD/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Views/CRUD/Delete.cshtml -------------------------------------------------------------------------------- /CRUDDemo/Views/CRUD/Read.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Views/CRUD/Read.cshtml -------------------------------------------------------------------------------- /CRUDDemo/Views/CRUD/Update.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Views/CRUD/Update.cshtml -------------------------------------------------------------------------------- /CRUDDemo/Views/CRUD/create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Views/CRUD/create.cshtml -------------------------------------------------------------------------------- /CRUDDemo/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Views/Home/About.cshtml -------------------------------------------------------------------------------- /CRUDDemo/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /CRUDDemo/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /CRUDDemo/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /CRUDDemo/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /CRUDDemo/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Views/Web.config -------------------------------------------------------------------------------- /CRUDDemo/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /CRUDDemo/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Web.Debug.config -------------------------------------------------------------------------------- /CRUDDemo/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Web.Release.config -------------------------------------------------------------------------------- /CRUDDemo/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/Web.config -------------------------------------------------------------------------------- /CRUDDemo/bin/Antlr3.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/Antlr3.Runtime.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/Antlr3.Runtime.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/Antlr3.Runtime.pdb -------------------------------------------------------------------------------- /CRUDDemo/bin/CRUDDemo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/CRUDDemo.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/CRUDDemo.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/CRUDDemo.dll.config -------------------------------------------------------------------------------- /CRUDDemo/bin/CRUDDemo.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/CRUDDemo.pdb -------------------------------------------------------------------------------- /CRUDDemo/bin/EntityFramework.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/EntityFramework.SqlServer.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/EntityFramework.SqlServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/EntityFramework.SqlServer.xml -------------------------------------------------------------------------------- /CRUDDemo/bin/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/EntityFramework.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/EntityFramework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/EntityFramework.xml -------------------------------------------------------------------------------- /CRUDDemo/bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml -------------------------------------------------------------------------------- /CRUDDemo/bin/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /CRUDDemo/bin/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/System.Web.Helpers.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/System.Web.Helpers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/System.Web.Helpers.xml -------------------------------------------------------------------------------- /CRUDDemo/bin/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/System.Web.Mvc.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/System.Web.Mvc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/System.Web.Mvc.xml -------------------------------------------------------------------------------- /CRUDDemo/bin/System.Web.Optimization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/System.Web.Optimization.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/System.Web.Optimization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/System.Web.Optimization.xml -------------------------------------------------------------------------------- /CRUDDemo/bin/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/System.Web.Razor.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/System.Web.Razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/System.Web.Razor.xml -------------------------------------------------------------------------------- /CRUDDemo/bin/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/System.Web.WebPages.Deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/System.Web.WebPages.Deployment.xml -------------------------------------------------------------------------------- /CRUDDemo/bin/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/System.Web.WebPages.Razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/System.Web.WebPages.Razor.xml -------------------------------------------------------------------------------- /CRUDDemo/bin/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/System.Web.WebPages.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/System.Web.WebPages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/System.Web.WebPages.xml -------------------------------------------------------------------------------- /CRUDDemo/bin/WebGrease.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/WebGrease.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/Microsoft.Build.Tasks.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/Microsoft.Build.Tasks.CodeAnalysis.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/Microsoft.CSharp.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/Microsoft.CSharp.Core.targets -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/Microsoft.CodeAnalysis.CSharp.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/Microsoft.CodeAnalysis.CSharp.Scripting.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/Microsoft.CodeAnalysis.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/Microsoft.CodeAnalysis.Scripting.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/Microsoft.CodeAnalysis.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/Microsoft.CodeAnalysis.VisualBasic.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/Microsoft.DiaSymReader.Native.amd64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/Microsoft.DiaSymReader.Native.amd64.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/Microsoft.DiaSymReader.Native.x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/Microsoft.DiaSymReader.Native.x86.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/Microsoft.Managed.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/Microsoft.Managed.Core.targets -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/Microsoft.VisualBasic.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/Microsoft.VisualBasic.Core.targets -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/Microsoft.Win32.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/Microsoft.Win32.Primitives.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/System.AppContext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/System.AppContext.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/System.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/System.Console.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/System.Diagnostics.FileVersionInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/System.Diagnostics.FileVersionInfo.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/System.Diagnostics.StackTrace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/System.Diagnostics.StackTrace.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/System.Globalization.Calendars.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/System.Globalization.Calendars.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/System.IO.Compression.ZipFile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/System.IO.Compression.ZipFile.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/System.IO.Compression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/System.IO.Compression.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/System.IO.FileSystem.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/System.IO.FileSystem.Primitives.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/System.IO.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/System.IO.FileSystem.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/System.Net.Http.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/System.Net.Sockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/System.Net.Sockets.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/System.Runtime.InteropServices.RuntimeInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/System.Runtime.InteropServices.RuntimeInformation.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/System.Text.Encoding.CodePages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/System.Text.Encoding.CodePages.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/System.ValueTuple.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/System.Xml.ReaderWriter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/System.Xml.ReaderWriter.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/System.Xml.XPath.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/System.Xml.XPath.XDocument.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/System.Xml.XPath.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/System.Xml.XPath.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/System.Xml.XmlDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/System.Xml.XmlDocument.dll -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/VBCSCompiler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/VBCSCompiler.exe -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/VBCSCompiler.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/VBCSCompiler.exe.config -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/csc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/csc.exe -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/csc.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/csc.exe.config -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/csc.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/csc.rsp -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/csi.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/csi.exe -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/csi.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/csi.exe.config -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/csi.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/csi.rsp -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/vbc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/vbc.exe -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/vbc.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/vbc.exe.config -------------------------------------------------------------------------------- /CRUDDemo/bin/roslyn/vbc.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/bin/roslyn/vbc.rsp -------------------------------------------------------------------------------- /CRUDDemo/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/favicon.ico -------------------------------------------------------------------------------- /CRUDDemo/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /CRUDDemo/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /CRUDDemo/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /CRUDDemo/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /CRUDDemo/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /CRUDDemo/obj/Debug/CRUDDemo.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CRUDDemo/obj/Debug/CRUDDemo.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/obj/Debug/CRUDDemo.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /CRUDDemo/obj/Debug/CRUDDemo.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/obj/Debug/CRUDDemo.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /CRUDDemo/obj/Debug/CRUDDemo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/obj/Debug/CRUDDemo.dll -------------------------------------------------------------------------------- /CRUDDemo/obj/Debug/CRUDDemo.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/obj/Debug/CRUDDemo.pdb -------------------------------------------------------------------------------- /CRUDDemo/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /CRUDDemo/obj/Debug/TempPE/CRUDDemo.Context.cs.dll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CRUDDemo/obj/Debug/TempPE/CRUDDemo.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/obj/Debug/TempPE/CRUDDemo.Designer.cs.dll -------------------------------------------------------------------------------- /CRUDDemo/obj/Debug/TempPE/CRUDDemo.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/obj/Debug/TempPE/CRUDDemo.cs.dll -------------------------------------------------------------------------------- /CRUDDemo/obj/Debug/edmxResourcesToEmbed/CRUDDemo.csdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/obj/Debug/edmxResourcesToEmbed/CRUDDemo.csdl -------------------------------------------------------------------------------- /CRUDDemo/obj/Debug/edmxResourcesToEmbed/CRUDDemo.msl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/obj/Debug/edmxResourcesToEmbed/CRUDDemo.msl -------------------------------------------------------------------------------- /CRUDDemo/obj/Debug/edmxResourcesToEmbed/CRUDDemo.ssdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/obj/Debug/edmxResourcesToEmbed/CRUDDemo.ssdl -------------------------------------------------------------------------------- /CRUDDemo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/CRUDDemo/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/README.md -------------------------------------------------------------------------------- /packages/Antlr.3.5.0.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Antlr.3.5.0.2/.signature.p7s -------------------------------------------------------------------------------- /packages/Antlr.3.5.0.2/Antlr.3.5.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Antlr.3.5.0.2/Antlr.3.5.0.2.nupkg -------------------------------------------------------------------------------- /packages/Antlr.3.5.0.2/lib/Antlr3.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Antlr.3.5.0.2/lib/Antlr3.Runtime.dll -------------------------------------------------------------------------------- /packages/Antlr.3.5.0.2/lib/Antlr3.Runtime.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Antlr.3.5.0.2/lib/Antlr3.Runtime.pdb -------------------------------------------------------------------------------- /packages/EntityFramework.6.2.0/Content/net40/App.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/EntityFramework.6.2.0/Content/net40/App.config.transform -------------------------------------------------------------------------------- /packages/EntityFramework.6.2.0/Content/net40/Web.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/EntityFramework.6.2.0/Content/net40/Web.config.transform -------------------------------------------------------------------------------- /packages/EntityFramework.6.2.0/EntityFramework.6.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/EntityFramework.6.2.0/EntityFramework.6.2.0.nupkg -------------------------------------------------------------------------------- /packages/EntityFramework.6.2.0/lib/net40/EntityFramework.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/EntityFramework.6.2.0/lib/net40/EntityFramework.SqlServer.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.2.0/lib/net40/EntityFramework.SqlServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/EntityFramework.6.2.0/lib/net40/EntityFramework.SqlServer.xml -------------------------------------------------------------------------------- /packages/EntityFramework.6.2.0/lib/net40/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/EntityFramework.6.2.0/lib/net40/EntityFramework.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.2.0/lib/net40/EntityFramework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/EntityFramework.6.2.0/lib/net40/EntityFramework.xml -------------------------------------------------------------------------------- /packages/EntityFramework.6.2.0/lib/net45/EntityFramework.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/EntityFramework.6.2.0/lib/net45/EntityFramework.SqlServer.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.2.0/lib/net45/EntityFramework.SqlServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/EntityFramework.6.2.0/lib/net45/EntityFramework.SqlServer.xml -------------------------------------------------------------------------------- /packages/EntityFramework.6.2.0/lib/net45/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/EntityFramework.6.2.0/lib/net45/EntityFramework.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.2.0/lib/net45/EntityFramework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/EntityFramework.6.2.0/lib/net45/EntityFramework.xml -------------------------------------------------------------------------------- /packages/EntityFramework.6.2.0/tools/EntityFramework.PowerShell.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/EntityFramework.6.2.0/tools/EntityFramework.PowerShell.Utility.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.2.0/tools/EntityFramework.PowerShell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/EntityFramework.6.2.0/tools/EntityFramework.PowerShell.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.2.0/tools/EntityFramework.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/EntityFramework.6.2.0/tools/EntityFramework.psd1 -------------------------------------------------------------------------------- /packages/EntityFramework.6.2.0/tools/EntityFramework.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/EntityFramework.6.2.0/tools/EntityFramework.psm1 -------------------------------------------------------------------------------- /packages/EntityFramework.6.2.0/tools/about_EntityFramework.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/EntityFramework.6.2.0/tools/about_EntityFramework.help.txt -------------------------------------------------------------------------------- /packages/EntityFramework.6.2.0/tools/init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/EntityFramework.6.2.0/tools/init.ps1 -------------------------------------------------------------------------------- /packages/EntityFramework.6.2.0/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/EntityFramework.6.2.0/tools/install.ps1 -------------------------------------------------------------------------------- /packages/EntityFramework.6.2.0/tools/migrate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/EntityFramework.6.2.0/tools/migrate.exe -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.2.7/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.AspNet.Mvc.5.2.7/.signature.p7s -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.2.7/Content/Web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.AspNet.Mvc.5.2.7/Content/Web.config.install.xdt -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.2.7/Content/Web.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.AspNet.Mvc.5.2.7/Content/Web.config.uninstall.xdt -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.2.7/Microsoft.AspNet.Mvc.5.2.7.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.AspNet.Mvc.5.2.7/Microsoft.AspNet.Mvc.5.2.7.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.2.7/lib/net45/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.AspNet.Mvc.5.2.7/lib/net45/System.Web.Mvc.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.2.7/lib/net45/System.Web.Mvc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.AspNet.Mvc.5.2.7/lib/net45/System.Web.Mvc.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.3.2.7/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.AspNet.Razor.3.2.7/.signature.p7s -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.3.2.7/Microsoft.AspNet.Razor.3.2.7.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.AspNet.Razor.3.2.7/Microsoft.AspNet.Razor.3.2.7.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.3.2.7/lib/net45/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.AspNet.Razor.3.2.7/lib/net45/System.Web.Razor.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.3.2.7/lib/net45/System.Web.Razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.AspNet.Razor.3.2.7/lib/net45/System.Web.Razor.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Web.Optimization.1.1.3/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.AspNet.Web.Optimization.1.1.3/.signature.p7s -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Web.Optimization.1.1.3/Microsoft.AspNet.Web.Optimization.1.1.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.AspNet.Web.Optimization.1.1.3/Microsoft.AspNet.Web.Optimization.1.1.3.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Web.Optimization.1.1.3/lib/net40/System.Web.Optimization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.AspNet.Web.Optimization.1.1.3/lib/net40/System.Web.Optimization.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Web.Optimization.1.1.3/lib/net40/system.web.optimization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.AspNet.Web.Optimization.1.1.3/lib/net40/system.web.optimization.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.7/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.AspNet.WebPages.3.2.7/.signature.p7s -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.7/Content/Web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.AspNet.WebPages.3.2.7/Content/Web.config.install.xdt -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.7/Content/Web.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.AspNet.WebPages.3.2.7/Content/Web.config.uninstall.xdt -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.7/Microsoft.AspNet.WebPages.3.2.7.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.AspNet.WebPages.3.2.7/Microsoft.AspNet.WebPages.3.2.7.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.7/lib/net45/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.AspNet.WebPages.3.2.7/lib/net45/System.Web.Helpers.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.7/lib/net45/System.Web.Helpers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.AspNet.WebPages.3.2.7/lib/net45/System.Web.Helpers.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.7/lib/net45/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.AspNet.WebPages.3.2.7/lib/net45/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.7/lib/net45/System.Web.WebPages.Deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.AspNet.WebPages.3.2.7/lib/net45/System.Web.WebPages.Deployment.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.7/lib/net45/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.AspNet.WebPages.3.2.7/lib/net45/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.7/lib/net45/System.Web.WebPages.Razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.AspNet.WebPages.3.2.7/lib/net45/System.Web.WebPages.Razor.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.7/lib/net45/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.AspNet.WebPages.3.2.7/lib/net45/System.Web.WebPages.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.7/lib/net45/System.Web.WebPages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.AspNet.WebPages.3.2.7/lib/net45/System.Web.WebPages.xml -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/.signature.p7s -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/build/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.Extensions.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/build/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.Extensions.props -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/build/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/build/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/build/net46/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.Extensions.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/build/net46/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.Extensions.props -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/build/net46/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/build/net46/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/content/net45/app.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/content/net45/app.config.install.xdt -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/content/net45/app.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/content/net45/app.config.uninstall.xdt -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/content/net45/web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/content/net45/web.config.install.xdt -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/content/net45/web.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/content/net45/web.config.uninstall.xdt -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/content/net46/app.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/content/net46/app.config.install.xdt -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/content/net46/app.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/content/net46/app.config.uninstall.xdt -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/content/net46/web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/content/net46/web.config.install.xdt -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/content/net46/web.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/content/net46/web.config.uninstall.xdt -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/lib/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/lib/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/lib/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/lib/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/Microsoft.Build.Tasks.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/Microsoft.Build.Tasks.CodeAnalysis.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/Microsoft.CSharp.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/Microsoft.CSharp.Core.targets -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/Microsoft.CodeAnalysis.CSharp.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/Microsoft.CodeAnalysis.CSharp.Scripting.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/Microsoft.CodeAnalysis.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/Microsoft.CodeAnalysis.Scripting.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/Microsoft.CodeAnalysis.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/Microsoft.CodeAnalysis.VisualBasic.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/Microsoft.DiaSymReader.Native.amd64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/Microsoft.DiaSymReader.Native.amd64.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/Microsoft.DiaSymReader.Native.x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/Microsoft.DiaSymReader.Native.x86.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/Microsoft.VisualBasic.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/Microsoft.VisualBasic.Core.targets -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/System.AppContext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/System.AppContext.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/System.Diagnostics.StackTrace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/System.Diagnostics.StackTrace.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/System.IO.FileSystem.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/System.IO.FileSystem.Primitives.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/System.IO.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/System.IO.FileSystem.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/VBCSCompiler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/VBCSCompiler.exe -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/VBCSCompiler.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/VBCSCompiler.exe.config -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/csc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/csc.exe -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/csc.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/csc.exe.config -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/csc.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/csc.rsp -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/csi.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/csi.exe -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/csi.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/csi.rsp -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/vbc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/vbc.exe -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/vbc.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/vbc.exe.config -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/vbc.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/Roslyn45/vbc.rsp -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/Microsoft.Build.Tasks.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/Microsoft.Build.Tasks.CodeAnalysis.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/Microsoft.CSharp.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/Microsoft.CSharp.Core.targets -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/Microsoft.CodeAnalysis.CSharp.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/Microsoft.CodeAnalysis.CSharp.Scripting.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/Microsoft.CodeAnalysis.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/Microsoft.CodeAnalysis.Scripting.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/Microsoft.CodeAnalysis.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/Microsoft.CodeAnalysis.VisualBasic.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/Microsoft.DiaSymReader.Native.amd64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/Microsoft.DiaSymReader.Native.amd64.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/Microsoft.DiaSymReader.Native.x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/Microsoft.DiaSymReader.Native.x86.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/Microsoft.Managed.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/Microsoft.Managed.Core.targets -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/Microsoft.VisualBasic.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/Microsoft.VisualBasic.Core.targets -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/Microsoft.Win32.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/Microsoft.Win32.Primitives.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.AppContext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.AppContext.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Console.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Diagnostics.FileVersionInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Diagnostics.FileVersionInfo.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Diagnostics.StackTrace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Diagnostics.StackTrace.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Globalization.Calendars.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Globalization.Calendars.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.IO.Compression.ZipFile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.IO.Compression.ZipFile.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.IO.Compression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.IO.Compression.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.IO.FileSystem.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.IO.FileSystem.Primitives.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.IO.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.IO.FileSystem.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Net.Http.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Net.Sockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Net.Sockets.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Runtime.InteropServices.RuntimeInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Runtime.InteropServices.RuntimeInformation.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Text.Encoding.CodePages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Text.Encoding.CodePages.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.ValueTuple.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Xml.ReaderWriter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Xml.ReaderWriter.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Xml.XPath.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Xml.XPath.XDocument.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Xml.XPath.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Xml.XPath.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Xml.XmlDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/System.Xml.XmlDocument.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/VBCSCompiler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/VBCSCompiler.exe -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/VBCSCompiler.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/VBCSCompiler.exe.config -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/csc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/csc.exe -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/csc.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/csc.exe.config -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/csc.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/csc.rsp -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/csi.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/csi.exe -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/csi.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/csi.exe.config -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/csi.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/csi.rsp -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/vbc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/vbc.exe -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/vbc.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/vbc.exe.config -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/vbc.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/RoslynLatest/vbc.rsp -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/net45/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/net45/install.ps1 -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/net45/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1/tools/net45/uninstall.ps1 -------------------------------------------------------------------------------- /packages/Microsoft.Web.Infrastructure.1.0.0.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.Web.Infrastructure.1.0.0.0/.signature.p7s -------------------------------------------------------------------------------- /packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /packages/Microsoft.jQuery.Unobtrusive.Validation.3.2.11/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.jQuery.Unobtrusive.Validation.3.2.11/.signature.p7s -------------------------------------------------------------------------------- /packages/Microsoft.jQuery.Unobtrusive.Validation.3.2.11/Content/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.jQuery.Unobtrusive.Validation.3.2.11/Content/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /packages/Microsoft.jQuery.Unobtrusive.Validation.3.2.11/Content/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.jQuery.Unobtrusive.Validation.3.2.11/Content/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /packages/Microsoft.jQuery.Unobtrusive.Validation.3.2.11/Microsoft.jQuery.Unobtrusive.Validation.3.2.11.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Microsoft.jQuery.Unobtrusive.Validation.3.2.11/Microsoft.jQuery.Unobtrusive.Validation.3.2.11.nupkg -------------------------------------------------------------------------------- /packages/Modernizr.2.8.3/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Modernizr.2.8.3/.signature.p7s -------------------------------------------------------------------------------- /packages/Modernizr.2.8.3/Content/Scripts/modernizr-2.8.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Modernizr.2.8.3/Content/Scripts/modernizr-2.8.3.js -------------------------------------------------------------------------------- /packages/Modernizr.2.8.3/Modernizr.2.8.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Modernizr.2.8.3/Modernizr.2.8.3.nupkg -------------------------------------------------------------------------------- /packages/Modernizr.2.8.3/Tools/common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Modernizr.2.8.3/Tools/common.ps1 -------------------------------------------------------------------------------- /packages/Modernizr.2.8.3/Tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Modernizr.2.8.3/Tools/install.ps1 -------------------------------------------------------------------------------- /packages/Modernizr.2.8.3/Tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Modernizr.2.8.3/Tools/uninstall.ps1 -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Newtonsoft.Json.12.0.2/.signature.p7s -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.2/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Newtonsoft.Json.12.0.2/LICENSE.md -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.2/Newtonsoft.Json.12.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Newtonsoft.Json.12.0.2/Newtonsoft.Json.12.0.2.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.2/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Newtonsoft.Json.12.0.2/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.2/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Newtonsoft.Json.12.0.2/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.2/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Newtonsoft.Json.12.0.2/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.2/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Newtonsoft.Json.12.0.2/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.2/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Newtonsoft.Json.12.0.2/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.2/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Newtonsoft.Json.12.0.2/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.2/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Newtonsoft.Json.12.0.2/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.2/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Newtonsoft.Json.12.0.2/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.2/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Newtonsoft.Json.12.0.2/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.2/lib/netstandard1.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Newtonsoft.Json.12.0.2/lib/netstandard1.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.2/lib/netstandard1.3/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Newtonsoft.Json.12.0.2/lib/netstandard1.3/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.2/lib/netstandard1.3/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Newtonsoft.Json.12.0.2/lib/netstandard1.3/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.2/lib/netstandard2.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Newtonsoft.Json.12.0.2/lib/netstandard2.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.2/lib/netstandard2.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Newtonsoft.Json.12.0.2/lib/netstandard2.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.2/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Newtonsoft.Json.12.0.2/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.2/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Newtonsoft.Json.12.0.2/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.2/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Newtonsoft.Json.12.0.2/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.2/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/Newtonsoft.Json.12.0.2/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/WebGrease.1.6.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/WebGrease.1.6.0/.signature.p7s -------------------------------------------------------------------------------- /packages/WebGrease.1.6.0/WebGrease.1.6.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/WebGrease.1.6.0/WebGrease.1.6.0.nupkg -------------------------------------------------------------------------------- /packages/WebGrease.1.6.0/lib/WebGrease.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/WebGrease.1.6.0/lib/WebGrease.dll -------------------------------------------------------------------------------- /packages/WebGrease.1.6.0/tools/WG.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/WebGrease.1.6.0/tools/WG.EXE -------------------------------------------------------------------------------- /packages/bootstrap.3.4.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/bootstrap.3.4.1/.signature.p7s -------------------------------------------------------------------------------- /packages/bootstrap.3.4.1/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/bootstrap.3.4.1/LICENSE.txt -------------------------------------------------------------------------------- /packages/bootstrap.3.4.1/bootstrap.3.4.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/bootstrap.3.4.1/bootstrap.3.4.1.nupkg -------------------------------------------------------------------------------- /packages/bootstrap.3.4.1/content/Content/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/bootstrap.3.4.1/content/Content/bootstrap-theme.css -------------------------------------------------------------------------------- /packages/bootstrap.3.4.1/content/Content/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/bootstrap.3.4.1/content/Content/bootstrap-theme.css.map -------------------------------------------------------------------------------- /packages/bootstrap.3.4.1/content/Content/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/bootstrap.3.4.1/content/Content/bootstrap-theme.min.css -------------------------------------------------------------------------------- /packages/bootstrap.3.4.1/content/Content/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/bootstrap.3.4.1/content/Content/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /packages/bootstrap.3.4.1/content/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/bootstrap.3.4.1/content/Content/bootstrap.css -------------------------------------------------------------------------------- /packages/bootstrap.3.4.1/content/Content/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/bootstrap.3.4.1/content/Content/bootstrap.css.map -------------------------------------------------------------------------------- /packages/bootstrap.3.4.1/content/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/bootstrap.3.4.1/content/Content/bootstrap.min.css -------------------------------------------------------------------------------- /packages/bootstrap.3.4.1/content/Content/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/bootstrap.3.4.1/content/Content/bootstrap.min.css.map -------------------------------------------------------------------------------- /packages/bootstrap.3.4.1/content/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/bootstrap.3.4.1/content/Scripts/bootstrap.js -------------------------------------------------------------------------------- /packages/bootstrap.3.4.1/content/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/bootstrap.3.4.1/content/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /packages/bootstrap.3.4.1/content/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/bootstrap.3.4.1/content/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /packages/bootstrap.3.4.1/content/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/bootstrap.3.4.1/content/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /packages/bootstrap.3.4.1/content/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/bootstrap.3.4.1/content/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /packages/bootstrap.3.4.1/content/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/bootstrap.3.4.1/content/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /packages/bootstrap.3.4.1/content/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/bootstrap.3.4.1/content/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /packages/bootstrap.3.4.1/contentFiles/Content/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/bootstrap.3.4.1/contentFiles/Content/bootstrap-theme.css -------------------------------------------------------------------------------- /packages/bootstrap.3.4.1/contentFiles/Content/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/bootstrap.3.4.1/contentFiles/Content/bootstrap-theme.css.map -------------------------------------------------------------------------------- /packages/bootstrap.3.4.1/contentFiles/Content/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/bootstrap.3.4.1/contentFiles/Content/bootstrap-theme.min.css -------------------------------------------------------------------------------- /packages/bootstrap.3.4.1/contentFiles/Content/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/bootstrap.3.4.1/contentFiles/Content/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /packages/bootstrap.3.4.1/contentFiles/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/bootstrap.3.4.1/contentFiles/Content/bootstrap.css -------------------------------------------------------------------------------- /packages/bootstrap.3.4.1/contentFiles/Content/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/bootstrap.3.4.1/contentFiles/Content/bootstrap.css.map -------------------------------------------------------------------------------- /packages/bootstrap.3.4.1/contentFiles/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/bootstrap.3.4.1/contentFiles/Content/bootstrap.min.css -------------------------------------------------------------------------------- /packages/bootstrap.3.4.1/contentFiles/Content/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/bootstrap.3.4.1/contentFiles/Content/bootstrap.min.css.map -------------------------------------------------------------------------------- /packages/bootstrap.3.4.1/contentFiles/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/bootstrap.3.4.1/contentFiles/Scripts/bootstrap.js -------------------------------------------------------------------------------- /packages/bootstrap.3.4.1/contentFiles/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/bootstrap.3.4.1/contentFiles/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /packages/bootstrap.3.4.1/contentFiles/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/bootstrap.3.4.1/contentFiles/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /packages/bootstrap.3.4.1/contentFiles/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/bootstrap.3.4.1/contentFiles/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /packages/bootstrap.3.4.1/contentFiles/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/bootstrap.3.4.1/contentFiles/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /packages/bootstrap.3.4.1/contentFiles/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/bootstrap.3.4.1/contentFiles/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /packages/bootstrap.3.4.1/contentFiles/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/bootstrap.3.4.1/contentFiles/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /packages/jQuery.3.4.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/jQuery.3.4.1/.signature.p7s -------------------------------------------------------------------------------- /packages/jQuery.3.4.1/Content/Scripts/jquery-3.4.1-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/jQuery.3.4.1/Content/Scripts/jquery-3.4.1-vsdoc.js -------------------------------------------------------------------------------- /packages/jQuery.3.4.1/Content/Scripts/jquery-3.4.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/jQuery.3.4.1/Content/Scripts/jquery-3.4.1.js -------------------------------------------------------------------------------- /packages/jQuery.3.4.1/Content/Scripts/jquery-3.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/jQuery.3.4.1/Content/Scripts/jquery-3.4.1.min.js -------------------------------------------------------------------------------- /packages/jQuery.3.4.1/Content/Scripts/jquery-3.4.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/jQuery.3.4.1/Content/Scripts/jquery-3.4.1.min.map -------------------------------------------------------------------------------- /packages/jQuery.3.4.1/Content/Scripts/jquery-3.4.1.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/jQuery.3.4.1/Content/Scripts/jquery-3.4.1.slim.js -------------------------------------------------------------------------------- /packages/jQuery.3.4.1/Content/Scripts/jquery-3.4.1.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/jQuery.3.4.1/Content/Scripts/jquery-3.4.1.slim.min.js -------------------------------------------------------------------------------- /packages/jQuery.3.4.1/Content/Scripts/jquery-3.4.1.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/jQuery.3.4.1/Content/Scripts/jquery-3.4.1.slim.min.map -------------------------------------------------------------------------------- /packages/jQuery.3.4.1/Tools/common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/jQuery.3.4.1/Tools/common.ps1 -------------------------------------------------------------------------------- /packages/jQuery.3.4.1/Tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/jQuery.3.4.1/Tools/install.ps1 -------------------------------------------------------------------------------- /packages/jQuery.3.4.1/Tools/jquery-3.4.1.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/jQuery.3.4.1/Tools/jquery-3.4.1.intellisense.js -------------------------------------------------------------------------------- /packages/jQuery.3.4.1/Tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/jQuery.3.4.1/Tools/uninstall.ps1 -------------------------------------------------------------------------------- /packages/jQuery.3.4.1/jQuery.3.4.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/jQuery.3.4.1/jQuery.3.4.1.nupkg -------------------------------------------------------------------------------- /packages/jQuery.Validation.1.17.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/jQuery.Validation.1.17.0/.signature.p7s -------------------------------------------------------------------------------- /packages/jQuery.Validation.1.17.0/Content/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/jQuery.Validation.1.17.0/Content/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /packages/jQuery.Validation.1.17.0/Content/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/jQuery.Validation.1.17.0/Content/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /packages/jQuery.Validation.1.17.0/Content/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/jQuery.Validation.1.17.0/Content/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /packages/jQuery.Validation.1.17.0/jQuery.Validation.1.17.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhtyagi2306/CRUD-Demo/HEAD/packages/jQuery.Validation.1.17.0/jQuery.Validation.1.17.0.nupkg --------------------------------------------------------------------------------