嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
摄影大赛管理系统
├── DB
│ ├── PhotographyBase.mdf
│ └── PhotographyBase_log.ldf
└── SampleTransfer
├── BKL
│ ├── BKL.csproj
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── UserInfoBLL.cs
│ ├── bin
│ │ ├── Debug
│ │ └── Release
│ └── obj
│ └── Debug
│ ├── BKL.csproj.CoreCompileInputs.cache
│ ├── BKL.csprojAssemblyReference.cache
│ ├── BLL.csproj.CoreCompileInputs.cache
│ ├── BLL.csprojAssemblyReference.cache
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── TempPE
│ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
├── BLL
│ ├── BLL.csproj
│ ├── CommentInfoBLL.cs
│ ├── CompetitionBLL.cs
│ ├── ProductInfoBLL.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── UserInfoBLL.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── BLL.dll
│ │ │ ├── BLL.pdb
│ │ │ ├── DAL.dll
│ │ │ ├── DAL.pdb
│ │ │ ├── Model.dll
│ │ │ └── Model.pdb
│ │ └── Release
│ └── obj
│ └── Debug
│ ├── BLL.csproj.CopyComplete
│ ├── BLL.csproj.CoreCompileInputs.cache
│ ├── BLL.csproj.FileListAbsolute.txt
│ ├── BLL.csprojAssemblyReference.cache
│ ├── BLL.dll
│ ├── BLL.pdb
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── TempPE
│ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
├── DAL
│ ├── CommentInfoDAL.cs
│ ├── CompetitionDAL.cs
│ ├── DAL.csproj
│ ├── DBHelper.cs
│ ├── ProductInfoDAL.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── UserInfoSetDAL.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── DAL.dll
│ │ │ ├── DAL.pdb
│ │ │ ├── Model.dll
│ │ │ └── Model.pdb
│ │ └── Release
│ └── obj
│ └── Debug
│ ├── DAL.csproj.CopyComplete
│ ├── DAL.csproj.CoreCompileInputs.cache
│ ├── DAL.csproj.FileListAbsolute.txt
│ ├── DAL.csprojAssemblyReference.cache
│ ├── DAL.dll
│ ├── DAL.pdb
│ ├── DesignTimeResolveAssemblyReferences.cache
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── TempPE
│ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
├── Model
│ ├── BaseModel.cs
│ ├── CommentInfo.cs
│ ├── Competition.cs
│ ├── Model.csproj
│ ├── ProductInfo.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── StudentInfoSet.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── Model.dll
│ │ │ └── Model.pdb
│ │ └── Release
│ └── obj
│ └── Debug
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── Model.csproj.CoreCompileInputs.cache
│ ├── Model.csproj.FileListAbsolute.txt
│ ├── Model.csprojAssemblyReference.cache
│ ├── Model.dll
│ ├── Model.pdb
│ ├── TempPE
│ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
├── SampleTransfer
│ ├── About.aspx
│ ├── About.aspx.cs
│ ├── About.aspx.designer.cs
│ ├── Admin
│ │ ├── CommentInfoManage
│ │ │ ├── CommentInfoAdd.aspx
│ │ │ ├── CommentInfoAdd.aspx.cs
│ │ │ ├── CommentInfoAdd.aspx.designer.cs
│ │ │ ├── WebCommentInfoList.aspx
│ │ │ ├── WebCommentInfoList.aspx.cs
│ │ │ ├── WebCommentInfoList.aspx.designer.cs
│ │ │ ├── WebCommentInfoUpdate.aspx
│ │ │ ├── WebCommentInfoUpdate.aspx.cs
│ │ │ └── WebCommentInfoUpdate.aspx.designer.cs
│ │ ├── CompetitionManage
│ │ │ ├── WebCompetition.aspx
│ │ │ ├── WebCompetition.aspx.cs
│ │ │ ├── WebCompetition.aspx.designer.cs
│ │ │ ├── WebCompetitionList.aspx
│ │ │ ├── WebCompetitionList.aspx.cs
│ │ │ ├── WebCompetitionList.aspx.designer.cs
│ │ │ ├── WebCompetitionUpdate.aspx
│ │ │ ├── WebCompetitionUpdate.aspx.cs
│ │ │ └── WebCompetitionUpdate.aspx.designer.cs
│ │ ├── ProductInfoManage
│ │ │ ├── ProductInfoAdd.aspx
│ │ │ ├── ProductInfoAdd.aspx.cs
│ │ │ ├── ProductInfoAdd.aspx.designer.cs
│ │ │ ├── ProductInfoList.aspx
│ │ │ ├── ProductInfoList.aspx.cs
│ │ │ ├── ProductInfoList.aspx.designer.cs
│ │ │ ├── ProductInfoUpdate.aspx
│ │ │ ├── ProductInfoUpdate.aspx.cs
│ │ │ └── ProductInfoUpdate.aspx.designer.cs
│ │ ├── Template
│ │ │ ├── Admin.Master
│ │ │ ├── Admin.Master.cs
│ │ │ ├── Admin.Master.designer.cs
│ │ │ ├── css
│ │ │ │ ├── font.css
│ │ │ │ ├── login.css
│ │ │ │ ├── theme1.css
│ │ │ │ ├── theme2.css
│ │ │ │ ├── theme3.css
│ │ │ │ ├── theme4.css
│ │ │ │ ├── theme5.css
│ │ │ │ └── xadmin.css
│ │ │ ├── fonts
│ │ │ │ ├── iconfont.eot
│ │ │ │ ├── iconfont.svg
│ │ │ │ ├── iconfont.ttf
│ │ │ │ └── iconfont.woff
│ │ │ ├── images
│ │ │ │ ├── aiwrap.png
│ │ │ │ └── bg.png
│ │ │ ├── index.html
│ │ │ ├── js
│ │ │ │ ├── jquery.min.js
│ │ │ │ ├── xadmin.js
│ │ │ │ └── xcity.js
│ │ │ ├── lib
│ │ │ │ └── layui
│ │ │ │ ├── css
│ │ │ │ │ ├── layui.css
│ │ │ │ │ ├── layui.mobile.css
│ │ │ │ │ └── modules
│ │ │ │ │ ├── code.css
│ │ │ │ │ ├── laydate
│ │ │ │ │ │ └── default
│ │ │ │ │ │ └── laydate.css
│ │ │ │ │ └── layer
│ │ │ │ │ └── default
│ │ │ │ │ ├── icon-ext.png
│ │ │ │ │ ├── icon.png
│ │ │ │ │ ├── layer.css
│ │ │ │ │ ├── loading-0.gif
│ │ │ │ │ ├── loading-1.gif
│ │ │ │ │ └── loading-2.gif
│ │ │ │ ├── font
│ │ │ │ │ ├── iconfont.eot
│ │ │ │ │ ├── iconfont.svg
│ │ │ │ │ ├── iconfont.ttf
│ │ │ │ │ └── iconfont.woff
│ │ │ │ ├── images
│ │ │ │ │ └── face
│ │ │ │ │ ├── 0.gif
│ │ │ │ │ ├── 1.gif
│ │ │ │ │ ├── 10.gif
│ │ │ │ │ ├── 11.gif
│ │ │ │ │ ├── 12.gif
│ │ │ │ │ ├── 13.gif
│ │ │ │ │ ├── 14.gif
│ │ │ │ │ ├── 15.gif
│ │ │ │ │ ├── 16.gif
│ │ │ │ │ ├── 17.gif
│ │ │ │ │ ├── 18.gif
│ │ │ │ │ ├── 19.gif
│ │ │ │ │ ├── 2.gif
│ │ │ │ │ ├── 20.gif
│ │ │ │ │ ├── 21.gif
│ │ │ │ │ ├── 22.gif
│ │ │ │ │ ├── 23.gif
│ │ │ │ │ ├── 24.gif
│ │ │ │ │ ├── 25.gif
│ │ │ │ │ ├── 26.gif
│ │ │ │ │ ├── 27.gif
│ │ │ │ │ ├── 28.gif
│ │ │ │ │ ├── 29.gif
│ │ │ │ │ ├── 3.gif
│ │ │ │ │ ├── 30.gif
│ │ │ │ │ ├── 31.gif
│ │ │ │ │ ├── 32.gif
│ │ │ │ │ ├── 33.gif
│ │ │ │ │ ├── 34.gif
│ │ │ │ │ ├── 35.gif
│ │ │ │ │ ├── 36.gif
│ │ │ │ │ ├── 37.gif
│ │ │ │ │ ├── 38.gif
│ │ │ │ │ ├── 39.gif
│ │ │ │ │ ├── 4.gif
│ │ │ │ │ ├── 40.gif
│ │ │ │ │ ├── 41.gif
│ │ │ │ │ ├── 42.gif
│ │ │ │ │ ├── 43.gif
│ │ │ │ │ ├── 44.gif
│ │ │ │ │ ├── 45.gif
│ │ │ │ │ ├── 46.gif
│ │ │ │ │ ├── 47.gif
│ │ │ │ │ ├── 48.gif
│ │ │ │ │ ├── 49.gif
│ │ │ │ │ ├── 5.gif
│ │ │ │ │ ├── 50.gif
│ │ │ │ │ ├── 51.gif
│ │ │ │ │ ├── 52.gif
│ │ │ │ │ ├── 53.gif
│ │ │ │ │ ├── 54.gif
│ │ │ │ │ ├── 55.gif
│ │ │ │ │ ├── 56.gif
│ │ │ │ │ ├── 57.gif
│ │ │ │ │ ├── 58.gif
│ │ │ │ │ ├── 59.gif
│ │ │ │ │ ├── 6.gif
│ │ │ │ │ ├── 60.gif
│ │ │ │ │ ├── 61.gif
│ │ │ │ │ ├── 62.gif
│ │ │ │ │ ├── 63.gif
│ │ │ │ │ ├── 64.gif
│ │ │ │ │ ├── 65.gif
│ │ │ │ │ ├── 66.gif
│ │ │ │ │ ├── 67.gif
│ │ │ │ │ ├── 68.gif
│ │ │ │ │ ├── 69.gif
│ │ │ │ │ ├── 7.gif
│ │ │ │ │ ├── 70.gif
│ │ │ │ │ ├── 71.gif
│ │ │ │ │ ├── 8.gif
│ │ │ │ │ └── 9.gif
│ │ │ │ ├── lay
│ │ │ │ │ └── modules
│ │ │ │ │ ├── carousel.js
│ │ │ │ │ ├── code.js
│ │ │ │ │ ├── colorpicker.js
│ │ │ │ │ ├── element.js
│ │ │ │ │ ├── flow.js
│ │ │ │ │ ├── form.js
│ │ │ │ │ ├── jquery.js
│ │ │ │ │ ├── laydate.js
│ │ │ │ │ ├── layedit.js
│ │ │ │ │ ├── layer.js
│ │ │ │ │ ├── laypage.js
│ │ │ │ │ ├── laytpl.js
│ │ │ │ │ ├── mobile.js
│ │ │ │ │ ├── rate.js
│ │ │ │ │ ├── slider.js
│ │ │ │ │ ├── table.js
│ │ │ │ │ ├── tree.js
│ │ │ │ │ ├── upload.js
│ │ │ │ │ └── util.js
│ │ │ │ ├── layui.all.js
│ │ │ │ └── layui.js
│ │ │ └── login.html
│ │ ├── UserInfoManage
│ │ │ ├── WebUserInfoAdd.aspx
│ │ │ ├── WebUserInfoAdd.aspx.cs
│ │ │ ├── WebUserInfoAdd.aspx.designer.cs
│ │ │ ├── WebUserInfoList.aspx
│ │ │ ├── WebUserInfoList.aspx.cs
│ │ │ ├── WebUserInfoList.aspx.designer.cs
│ │ │ ├── WebUserInfoUpdate.aspx
│ │ │ ├── WebUserInfoUpdate.aspx.cs
│ │ │ └── WebUserInfoUpdate.aspx.designer.cs
│ │ ├── WebAdminIndex.aspx
│ │ ├── WebAdminIndex.aspx.cs
│ │ ├── WebAdminIndex.aspx.designer.cs
│ │ ├── WebAdminLogin.aspx
│ │ ├── WebAdminLogin.aspx.cs
│ │ ├── WebAdminLogin.aspx.designer.cs
│ │ ├── WebTest.aspx
│ │ ├── WebTest.aspx.cs
│ │ └── WebTest.aspx.designer.cs
│ ├── App_Data
│ ├── App_Start
│ │ ├── BundleConfig.cs
│ │ └── RouteConfig.cs
│ ├── Bundle.config
│ ├── Comment.cs
│ ├── Contact.aspx
│ ├── Contact.aspx.cs
│ ├── Contact.aspx.designer.cs
│ ├── 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
│ ├── Default.aspx
│ ├── Default.aspx.cs
│ ├── Default.aspx.designer.cs
│ ├── Global.asax
│ ├── Global.asax.cs
│ ├── Model1.Context.cs
│ ├── Model1.Context.tt
│ ├── Model1.Designer.cs
│ ├── Model1.cs
│ ├── Model1.edmx
│ ├── Model1.edmx.diagram
│ ├── Model1.edmx.sql
│ ├── Model1.tt
│ ├── Product.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SampleTransfer.csproj
│ ├── SampleTransfer.csproj.user
│ ├── Scripts
│ │ ├── WebForms
│ │ │ ├── DetailsView.js
│ │ │ ├── Focus.js
│ │ │ ├── GridView.js
│ │ │ ├── MSAjax
│ │ │ │ ├── MicrosoftAjax.js
│ │ │ │ ├── MicrosoftAjaxApplicationServices.js
│ │ │ │ ├── MicrosoftAjaxComponentModel.js
│ │ │ │ ├── MicrosoftAjaxCore.js
│ │ │ │ ├── MicrosoftAjaxGlobalization.js
│ │ │ │ ├── MicrosoftAjaxHistory.js
│ │ │ │ ├── MicrosoftAjaxNetwork.js
│ │ │ │ ├── MicrosoftAjaxSerialization.js
│ │ │ │ ├── MicrosoftAjaxTimer.js
│ │ │ │ ├── MicrosoftAjaxWebForms.js
│ │ │ │ └── MicrosoftAjaxWebServices.js
│ │ │ ├── Menu.js
│ │ │ ├── MenuStandards.js
│ │ │ ├── SmartNav.js
│ │ │ ├── TreeView.js
│ │ │ ├── WebForms.js
│ │ │ ├── WebParts.js
│ │ │ └── WebUIValidation.js
│ │ ├── bootstrap.js
│ │ ├── bootstrap.min.js
│ │ ├── jquery-3.3.1.intellisense.js
│ │ ├── jquery-3.3.1.js
│ │ ├── jquery-3.3.1.min.js
│ │ ├── jquery-3.3.1.min.map
│ │ ├── jquery-3.3.1.slim.js
│ │ ├── jquery-3.3.1.slim.min.js
│ │ ├── jquery-3.3.1.slim.min.map
│ │ └── modernizr-2.8.3.js
│ ├── Site.Master
│ ├── Site.Master.cs
│ ├── Site.Master.designer.cs
│ ├── Site.Mobile.Master
│ ├── Site.Mobile.Master.cs
│ ├── Site.Mobile.Master.designer.cs
│ ├── UpLoad
│ │ ├── Hydrangeas.jpg
│ │ ├── Jellyfish.jpg
│ │ ├── Lighthouse.jpg
│ │ ├── Penguins.jpg
│ │ └── Tulips.jpg
│ ├── User.cs
│ ├── ViewSwitcher.ascx
│ ├── ViewSwitcher.ascx.cs
│ ├── ViewSwitcher.ascx.designer.cs
│ ├── Web.Debug.config
│ ├── Web.Release.config
│ ├── Web.config
│ ├── bin
│ │ ├── Antlr3.Runtime.dll
│ │ ├── Antlr3.Runtime.pdb
│ │ ├── AspNet.ScriptManager.bootstrap.dll
│ │ ├── AspNet.ScriptManager.jQuery.dll
│ │ ├── BLL.dll
│ │ ├── BLL.pdb
│ │ ├── CKEditor.NET.dll
│ │ ├── CKEditor.NET.pdb
│ │ ├── DAL.dll
│ │ ├── DAL.pdb
│ │ ├── EntityFramework.SqlServer.dll
│ │ ├── EntityFramework.SqlServer.xml
│ │ ├── EntityFramework.dll
│ │ ├── EntityFramework.xml
│ │ ├── Microsoft.AspNet.FriendlyUrls.dll
│ │ ├── Microsoft.AspNet.FriendlyUrls.xml
│ │ ├── Microsoft.AspNet.Web.Optimization.WebForms.dll
│ │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll
│ │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml
│ │ ├── Microsoft.ScriptManager.MSAjax.dll
│ │ ├── Microsoft.ScriptManager.WebForms.dll
│ │ ├── Microsoft.Web.Infrastructure.dll
│ │ ├── Model.dll
│ │ ├── Model.pdb
│ │ ├── Newtonsoft.Json.dll
│ │ ├── Newtonsoft.Json.xml
│ │ ├── SampleTransfer.dll
│ │ ├── SampleTransfer.dll.config
│ │ ├── SampleTransfer.pdb
│ │ ├── System.Web.Optimization.dll
│ │ ├── System.Web.Optimization.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
│ │ │ ├── System.AppContext.dll
│ │ │ ├── System.Collections.Immutable.dll
│ │ │ ├── System.Console.dll
│ │ │ ├── System.Diagnostics.FileVersionInfo.dll
│ │ │ ├── System.Diagnostics.StackTrace.dll
│ │ │ ├── System.IO.Compression.dll
│ │ │ ├── System.IO.FileSystem.Primitives.dll
│ │ │ ├── System.IO.FileSystem.dll
│ │ │ ├── System.IO.Pipes.AccessControl.dll
│ │ │ ├── System.IO.Pipes.dll
│ │ │ ├── System.Reflection.Metadata.dll
│ │ │ ├── System.Security.AccessControl.dll
│ │ │ ├── System.Security.Claims.dll
│ │ │ ├── System.Security.Cryptography.Algorithms.dll
│ │ │ ├── System.Security.Cryptography.Encoding.dll
│ │ │ ├── System.Security.Cryptography.Primitives.dll
│ │ │ ├── System.Security.Cryptography.X509Certificates.dll
│ │ │ ├── System.Security.Principal.Windows.dll
│ │ │ ├── System.Text.Encoding.CodePages.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
│ │ └── zh-Hans
│ │ ├── EntityFramework.resources.dll
│ │ ├── Microsoft.AspNet.FriendlyUrls.resources.dll
│ │ └── System.Web.Optimization.resources.dll
│ ├── ckeditor
│ │ ├── CHANGES.html
│ │ ├── INSTALL.html
│ │ ├── LICENSE.html
│ │ ├── adapters
│ │ │ └── jquery.js
│ │ ├── ckeditor.js
│ │ ├── ckeditor_basic.js
│ │ ├── config.js
│ │ ├── contents.css
│ │ ├── images
│ │ │ └── spacer.gif
│ │ ├── lang
│ │ │ ├── _languages.js
│ │ │ ├── _translationstatus.txt
│ │ │ ├── af.js
│ │ │ ├── ar.js
│ │ │ ├── bg.js
│ │ │ ├── bn.js
│ │ │ ├── bs.js
│ │ │ ├── ca.js
│ │ │ ├── cs.js
│ │ │ ├── cy.js
│ │ │ ├── da.js
│ │ │ ├── de.js
│ │ │ ├── el.js
│ │ │ ├── en-au.js
│ │ │ ├── en-ca.js
│ │ │ ├── en-gb.js
│ │ │ ├── en.js
│ │ │ ├── eo.js
│ │ │ ├── es.js
│ │ │ ├── et.js
│ │ │ ├── eu.js
│ │ │ ├── fa.js
│ │ │ ├── fi.js
│ │ │ ├── fo.js
│ │ │ ├── fr-ca.js
│ │ │ ├── fr.js
│ │ │ ├── gl.js
│ │ │ ├── gu.js
│ │ │ ├── he.js
│ │ │ ├── hi.js
│ │ │ ├── hr.js
│ │ │ ├── hu.js
│ │ │ ├── id.js
│ │ │ ├── is.js
│ │ │ ├── it.js
│ │ │ ├── ja.js
│ │ │ ├── ka.js
│ │ │ ├── km.js
│ │ │ ├── ko.js
│ │ │ ├── lt.js
│ │ │ ├── lv.js
│ │ │ ├── mk.js
│ │ │ ├── mn.js
│ │ │ ├── ms.js
│ │ │ ├── nb.js
│ │ │ ├── nl.js
│ │ │ ├── no.js
│ │ │ ├── pl.js
│ │ │ ├── pt-br.js
│ │ │ ├── pt.js
│ │ │ ├── ro.js
│ │ │ ├── ru.js
│ │ │ ├── sk.js
│ │ │ ├── sl.js
│ │ │ ├── sr-latn.js
│ │ │ ├── sr.js
│ │ │ ├── sv.js
│ │ │ ├── th.js
│ │ │ ├── tr.js
│ │ │ ├── ug.js
│ │ │ ├── uk.js
│ │ │ ├── vi.js
│ │ │ ├── zh-cn.js
│ │ │ └── zh.js
│ │ ├── plugins
│ │ │ ├── a11yhelp
│ │ │ │ ├── dialogs
│ │ │ │ │ └── a11yhelp.js
│ │ │ │ └── lang
│ │ │ │ ├── _translationstatus.txt
│ │ │ │ ├── cs.js
│ │ │ │ ├── cy.js
│ │ │ │ ├── da.js
│ │ │ │ ├── de.js
│ │ │ │ ├── el.js
│ │ │ │ ├── en.js
│ │ │ │ ├── eo.js
│ │ │ │ ├── fa.js
│ │ │ │ ├── fi.js
│ │ │ │ ├── fr.js
│ │ │ │ ├── gu.js
│ │ │ │ ├── he.js
│ │ │ │ ├── it.js
│ │ │ │ ├── mk.js
│ │ │ │ ├── nb.js
│ │ │ │ ├── nl.js
│ │ │ │ ├── no.js
│ │ │ │ ├── pt-br.js
│ │ │ │ ├── ro.js
│ │ │ │ ├── tr.js
│ │ │ │ ├── ug.js
│ │ │ │ ├── vi.js
│ │ │ │ └── zh-cn.js
│ │ │ ├── about
│ │ │ │ └── dialogs
│ │ │ │ ├── about.js
│ │ │ │ └── logo_ckeditor.png
│ │ │ ├── adobeair
│ │ │ │ └── plugin.js
│ │ │ ├── ajax
│ │ │ │ └── plugin.js
│ │ │ ├── autogrow
│ │ │ │ └── plugin.js
│ │ │ ├── bbcode
│ │ │ │ └── plugin.js
│ │ │ ├── clipboard
│ │ │ │ └── dialogs
│ │ │ │ └── paste.js
│ │ │ ├── colordialog
│ │ │ │ └── dialogs
│ │ │ │ └── colordialog.js
│ │ │ ├── devtools
│ │ │ │ ├── lang
│ │ │ │ │ ├── _translationstatus.txt
│ │ │ │ │ ├── bg.js
│ │ │ │ │ ├── cs.js
│ │ │ │ │ ├── cy.js
│ │ │ │ │ ├── da.js
│ │ │ │ │ ├── de.js
│ │ │ │ │ ├── el.js
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── eo.js
│ │ │ │ │ ├── et.js
│ │ │ │ │ ├── fa.js
│ │ │ │ │ ├── fi.js
│ │ │ │ │ ├── fr.js
│ │ │ │ │ ├── gu.js
│ │ │ │ │ ├── he.js
│ │ │ │ │ ├── hr.js
│ │ │ │ │ ├── it.js
│ │ │ │ │ ├── nb.js
│ │ │ │ │ ├── nl.js
│ │ │ │ │ ├── no.js
│ │ │ │ │ ├── pl.js
│ │ │ │ │ ├── pt-br.js
│ │ │ │ │ ├── tr.js
│ │ │ │ │ ├── ug.js
│ │ │ │ │ ├── uk.js
│ │ │ │ │ ├── vi.js
│ │ │ │ │ └── zh-cn.js
│ │ │ │ └── plugin.js
│ │ │ ├── dialog
│ │ │ │ └── dialogDefinition.js
│ │ │ ├── div
│ │ │ │ └── dialogs
│ │ │ │ └── div.js
│ │ │ ├── docprops
│ │ │ │ ├── dialogs
│ │ │ │ │ └── docprops.js
│ │ │ │ └── plugin.js
│ │ │ ├── find
│ │ │ │ └── dialogs
│ │ │ │ └── find.js
│ │ │ ├── flash
│ │ │ │ ├── dialogs
│ │ │ │ │ └── flash.js
│ │ │ │ └── images
│ │ │ │ └── placeholder.png
│ │ │ ├── forms
│ │ │ │ ├── dialogs
│ │ │ │ │ ├── button.js
│ │ │ │ │ ├── checkbox.js
│ │ │ │ │ ├── form.js
│ │ │ │ │ ├── hiddenfield.js
│ │ │ │ │ ├── radio.js
│ │ │ │ │ ├── select.js
│ │ │ │ │ ├── textarea.js
│ │ │ │ │ └── textfield.js
│ │ │ │ └── images
│ │ │ │ └── hiddenfield.gif
│ │ │ ├── iframe
│ │ │ │ ├── dialogs
│ │ │ │ │ └── iframe.js
│ │ │ │ └── images
│ │ │ │ └── placeholder.png
│ │ │ ├── iframedialog
│ │ │ │ └── plugin.js
│ │ │ ├── image
│ │ │ │ └── dialogs
│ │ │ │ └── image.js
│ │ │ ├── link
│ │ │ │ ├── dialogs
│ │ │ │ │ ├── anchor.js
│ │ │ │ │ └── link.js
│ │ │ │ └── images
│ │ │ │ └── anchor.gif
│ │ │ ├── liststyle
│ │ │ │ └── dialogs
│ │ │ │ └── liststyle.js
│ │ │ ├── pagebreak
│ │ │ │ └── images
│ │ │ │ └── pagebreak.gif
│ │ │ ├── pastefromword
│ │ │ │ └── filter
│ │ │ │ └── default.js
│ │ │ ├── pastetext
│ │ │ │ └── dialogs
│ │ │ │ └── pastetext.js
│ │ │ ├── placeholder
│ │ │ │ ├── dialogs
│ │ │ │ │ └── placeholder.js
│ │ │ │ ├── lang
│ │ │ │ │ ├── _translationstatus.txt
│ │ │ │ │ ├── bg.js
│ │ │ │ │ ├── cs.js
│ │ │ │ │ ├── cy.js
│ │ │ │ │ ├── da.js
│ │ │ │ │ ├── de.js
│ │ │ │ │ ├── el.js
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── eo.js
│ │ │ │ │ ├── et.js
│ │ │ │ │ ├── fa.js
│ │ │ │ │ ├── fi.js
│ │ │ │ │ ├── fr.js
│ │ │ │ │ ├── he.js
│ │ │ │ │ ├── hr.js
│ │ │ │ │ ├── it.js
│ │ │ │ │ ├── nb.js
│ │ │ │ │ ├── nl.js
│ │ │ │ │ ├── no.js
│ │ │ │ │ ├── pl.js
│ │ │ │ │ ├── pt-br.js
│ │ │ │ │ ├── tr.js
│ │ │ │ │ ├── ug.js
│ │ │ │ │ ├── uk.js
│ │ │ │ │ ├── vi.js
│ │ │ │ │ └── zh-cn.js
│ │ │ │ ├── placeholder.gif
│ │ │ │ └── plugin.js
│ │ │ ├── preview
│ │ │ │ └── preview.html
│ │ │ ├── scayt
│ │ │ │ └── dialogs
│ │ │ │ ├── options.js
│ │ │ │ └── toolbar.css
│ │ │ ├── showblocks
│ │ │ │ └── images
│ │ │ │ ├── block_address.png
│ │ │ │ ├── block_blockquote.png
│ │ │ │ ├── block_div.png
│ │ │ │ ├── block_h1.png
│ │ │ │ ├── block_h2.png
│ │ │ │ ├── block_h3.png
│ │ │ │ ├── block_h4.png
│ │ │ │ ├── block_h5.png
│ │ │ │ ├── block_h6.png
│ │ │ │ ├── block_p.png
│ │ │ │ └── block_pre.png
│ │ │ ├── smiley
│ │ │ │ ├── dialogs
│ │ │ │ │ └── smiley.js
│ │ │ │ └── images
│ │ │ │ ├── angel_smile.gif
│ │ │ │ ├── angry_smile.gif
│ │ │ │ ├── broken_heart.gif
│ │ │ │ ├── confused_smile.gif
│ │ │ │ ├── cry_smile.gif
│ │ │ │ ├── devil_smile.gif
│ │ │ │ ├── embaressed_smile.gif
│ │ │ │ ├── envelope.gif
│ │ │ │ ├── heart.gif
│ │ │ │ ├── kiss.gif
│ │ │ │ ├── lightbulb.gif
│ │ │ │ ├── omg_smile.gif
│ │ │ │ ├── regular_smile.gif
│ │ │ │ ├── sad_smile.gif
│ │ │ │ ├── shades_smile.gif
│ │ │ │ ├── teeth_smile.gif
│ │ │ │ ├── thumbs_down.gif
│ │ │ │ ├── thumbs_up.gif
│ │ │ │ ├── tounge_smile.gif
│ │ │ │ ├── whatchutalkingabout_smile.gif
│ │ │ │ └── wink_smile.gif
│ │ │ ├── specialchar
│ │ │ │ ├── dialogs
│ │ │ │ │ └── specialchar.js
│ │ │ │ └── lang
│ │ │ │ ├── _translationstatus.txt
│ │ │ │ ├── cs.js
│ │ │ │ ├── cy.js
│ │ │ │ ├── de.js
│ │ │ │ ├── el.js
│ │ │ │ ├── en.js
│ │ │ │ ├── eo.js
│ │ │ │ ├── et.js
│ │ │ │ ├── fa.js
│ │ │ │ ├── fi.js
│ │ │ │ ├── fr.js
│ │ │ │ ├── he.js
│ │ │ │ ├── hr.js
│ │ │ │ ├── it.js
│ │ │ │ ├── nb.js
│ │ │ │ ├── nl.js
│ │ │ │ ├── no.js
│ │ │ │ ├── pt-br.js
│ │ │ │ ├── tr.js
│ │ │ │ ├── ug.js
│ │ │ │ └── zh-cn.js
│ │ │ ├── styles
│ │ │ │ └── styles
│ │ │ │ └── default.js
│ │ │ ├── stylesheetparser
│ │ │ │ └── plugin.js
│ │ │ ├── table
│ │ │ │ └── dialogs
│ │ │ │ └── table.js
│ │ │ ├── tableresize
│ │ │ │ └── plugin.js
│ │ │ ├── tabletools
│ │ │ │ └── dialogs
│ │ │ │ └── tableCell.js
│ │ │ ├── templates
│ │ │ │ ├── dialogs
│ │ │ │ │ └── templates.js
│ │ │ │ └── templates
│ │ │ │ ├── default.js
│ │ │ │ └── images
│ │ │ │ ├── template1.gif
│ │ │ │ ├── template2.gif
│ │ │ │ └── template3.gif
│ │ │ ├── uicolor
│ │ │ │ ├── dialogs
│ │ │ │ │ └── uicolor.js
│ │ │ │ ├── lang
│ │ │ │ │ ├── _translationstatus.txt
│ │ │ │ │ ├── bg.js
│ │ │ │ │ ├── cs.js
│ │ │ │ │ ├── cy.js
│ │ │ │ │ ├── da.js
│ │ │ │ │ ├── de.js
│ │ │ │ │ ├── el.js
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── eo.js
│ │ │ │ │ ├── et.js
│ │ │ │ │ ├── fa.js
│ │ │ │ │ ├── fi.js
│ │ │ │ │ ├── fr.js
│ │ │ │ │ ├── he.js
│ │ │ │ │ ├── hr.js
│ │ │ │ │ ├── it.js
│ │ │ │ │ ├── mk.js
│ │ │ │ │ ├── nb.js
│ │ │ │ │ ├── nl.js
│ │ │ │ │ ├── no.js
│ │ │ │ │ ├── pl.js
│ │ │ │ │ ├── pt-br.js
│ │ │ │ │ ├── tr.js
│ │ │ │ │ ├── ug.js
│ │ │ │ │ ├── uk.js
│ │ │ │ │ ├── vi.js
│ │ │ │ │ └── zh-cn.js
│ │ │ │ ├── plugin.js
│ │ │ │ ├── uicolor.gif
│ │ │ │ └── yui
│ │ │ │ ├── assets
│ │ │ │ │ ├── hue_bg.png
│ │ │ │ │ ├── hue_thumb.png
│ │ │ │ │ ├── picker_mask.png
│ │ │ │ │ ├── picker_thumb.png
│ │ │ │ │ └── yui.css
│ │ │ │ └── yui.js
│ │ │ ├── wsc
│ │ │ │ └── dialogs
│ │ │ │ ├── ciframe.html
│ │ │ │ ├── tmpFrameset.html
│ │ │ │ ├── wsc.css
│ │ │ │ └── wsc.js
│ │ │ └── xml
│ │ │ └── plugin.js
│ │ ├── skins
│ │ │ ├── kama
│ │ │ │ ├── dialog.css
│ │ │ │ ├── editor.css
│ │ │ │ ├── icons.png
│ │ │ │ ├── icons_rtl.png
│ │ │ │ ├── images
│ │ │ │ │ ├── dialog_sides.gif
│ │ │ │ │ ├── dialog_sides.png
│ │ │ │ │ ├── dialog_sides_rtl.png
│ │ │ │ │ ├── mini.gif
│ │ │ │ │ ├── noimage.png
│ │ │ │ │ ├── sprites.png
│ │ │ │ │ ├── sprites_ie6.png
│ │ │ │ │ └── toolbar_start.gif
│ │ │ │ ├── skin.js
│ │ │ │ └── templates.css
│ │ │ ├── office2003
│ │ │ │ ├── dialog.css
│ │ │ │ ├── editor.css
│ │ │ │ ├── icons.png
│ │ │ │ ├── icons_rtl.png
│ │ │ │ ├── images
│ │ │ │ │ ├── dialog_sides.gif
│ │ │ │ │ ├── dialog_sides.png
│ │ │ │ │ ├── dialog_sides_rtl.png
│ │ │ │ │ ├── mini.gif
│ │ │ │ │ ├── noimage.png
│ │ │ │ │ ├── sprites.png
│ │ │ │ │ └── sprites_ie6.png
│ │ │ │ ├── skin.js
│ │ │ │ └── templates.css
│ │ │ └── v2
│ │ │ ├── dialog.css
│ │ │ ├── editor.css
│ │ │ ├── icons.png
│ │ │ ├── icons_rtl.png
│ │ │ ├── images
│ │ │ │ ├── dialog_sides.gif
│ │ │ │ ├── dialog_sides.png
│ │ │ │ ├── dialog_sides_rtl.png
│ │ │ │ ├── mini.gif
│ │ │ │ ├── noimage.png
│ │ │ │ ├── sprites.png
│ │ │ │ ├── sprites_ie6.png
│ │ │ │ └── toolbar_start.gif
│ │ │ ├── skin.js
│ │ │ └── templates.css
│ │ └── themes
│ │ └── default
│ │ └── theme.js
│ ├── 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
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── SampleTransfer.csproj.CopyComplete
│ │ ├── SampleTransfer.csproj.CoreCompileInputs.cache
│ │ ├── SampleTransfer.csproj.FileListAbsolute.txt
│ │ ├── SampleTransfer.csprojAssemblyReference.cache
│ │ ├── SampleTransfer.dll
│ │ ├── SampleTransfer.pdb
│ │ ├── TempPE
│ │ │ ├── Model1.Context.cs.dll
│ │ │ ├── Model1.Designer.cs.dll
│ │ │ └── Model1.cs.dll
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ └── edmxResourcesToEmbed
│ │ ├── Model1.csdl
│ │ ├── Model1.msl
│ │ └── Model1.ssdl
│ └── packages.config
├── SampleTransfer.sln
└── packages
├── Antlr.3.5.0.2
│ ├── Antlr.3.5.0.2.nupkg
│ └── lib
│ ├── Antlr3.Runtime.dll
│ └── Antlr3.Runtime.pdb
├── AspNet.ScriptManager.bootstrap.3.3.7
│ ├── AspNet.ScriptManager.bootstrap.3.3.7.nupkg
│ └── lib
│ ├── net40
│ │ └── AspNet.ScriptManager.bootstrap.dll
│ └── net45
│ └── AspNet.ScriptManager.bootstrap.dll
├── AspNet.ScriptManager.jQuery.3.3.1
│ ├── AspNet.ScriptManager.jQuery.3.3.1.nupkg
│ └── lib
│ ├── net40
│ │ └── AspNet.ScriptManager.jQuery.dll
│ └── net45
│ └── AspNet.ScriptManager.jQuery.dll
├── 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
│ │ │ └── zh-Hans
│ │ │ ├── EntityFramework.resources.dll
│ │ │ └── EntityFramework.xml
│ │ └── net45
│ │ ├── EntityFramework.SqlServer.dll
│ │ ├── EntityFramework.SqlServer.xml
│ │ ├── EntityFramework.dll
│ │ ├── EntityFramework.xml
│ │ └── zh-Hans
│ │ ├── EntityFramework.resources.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
├── EntityFramework.zh-Hans.6.2.0
│ ├── EntityFramework.zh-Hans.6.2.0.nupkg
│ └── lib
│ ├── net40
│ │ └── zh-Hans
│ │ ├── EntityFramework.resources.dll
│ │ └── EntityFramework.xml
│ └── net45
│ └── zh-Hans
│ ├── EntityFramework.resources.dll
│ └── EntityFramework.xml
├── Microsoft.AspNet.FriendlyUrls.1.0.2
│ ├── Content
│ │ ├── App_Start
│ │ │ └── RouteConfig.cs.pp
│ │ ├── Site.Mobile.Master.cs.pp
│ │ ├── Site.Mobile.Master.designer.cs.pp
│ │ ├── Site.Mobile.Master.pp
│ │ ├── ViewSwitcher.ascx.cs.pp
│ │ ├── ViewSwitcher.ascx.designer.cs.pp
│ │ └── ViewSwitcher.ascx.pp
│ ├── Microsoft.AspNet.FriendlyUrls.1.0.2.nupkg
│ └── readme.txt
├── Microsoft.AspNet.FriendlyUrls.Core.1.0.2
│ ├── Microsoft.AspNet.FriendlyUrls.Core.1.0.2.nupkg
│ └── lib
│ ├── net40
│ │ ├── Microsoft.AspNet.FriendlyUrls.dll
│ │ ├── Microsoft.AspNet.FriendlyUrls.xml
│ │ └── zh-Hans
│ │ ├── Microsoft.AspNet.FriendlyUrls.resources.dll
│ │ └── Microsoft.AspNet.FriendlyUrls.xml
│ └── net45
│ ├── Microsoft.AspNet.FriendlyUrls.dll
│ ├── Microsoft.AspNet.FriendlyUrls.xml
│ └── zh-Hans
│ ├── Microsoft.AspNet.FriendlyUrls.resources.dll
│ └── Microsoft.AspNet.FriendlyUrls.xml
├── Microsoft.AspNet.FriendlyUrls.Core.zh-Hans.1.0.2
│ ├── Microsoft.AspNet.FriendlyUrls.Core.zh-Hans.1.0.2.nupkg
│ └── lib
│ ├── net40
│ │ └── zh-Hans
│ │ ├── Microsoft.AspNet.FriendlyUrls.resources.dll
│ │ └── Microsoft.AspNet.FriendlyUrls.xml
│ └── net45
│ └── zh-Hans
│ ├── Microsoft.AspNet.FriendlyUrls.resources.dll
│ └── Microsoft.AspNet.FriendlyUrls.xml
├── Microsoft.AspNet.ScriptManager.MSAjax.5.0.0
│ ├── Microsoft.AspNet.ScriptManager.MSAjax.5.0.0.nupkg
│ ├── content
│ │ └── Scripts
│ │ └── WebForms
│ │ └── MSAjax
│ │ ├── MicrosoftAjax.js
│ │ ├── MicrosoftAjaxApplicationServices.js
│ │ ├── MicrosoftAjaxComponentModel.js
│ │ ├── MicrosoftAjaxCore.js
│ │ ├── MicrosoftAjaxGlobalization.js
│ │ ├── MicrosoftAjaxHistory.js
│ │ ├── MicrosoftAjaxNetwork.js
│ │ ├── MicrosoftAjaxSerialization.js
│ │ ├── MicrosoftAjaxTimer.js
│ │ ├── MicrosoftAjaxWebForms.js
│ │ └── MicrosoftAjaxWebServices.js
│ └── lib
│ └── net45
│ └── Microsoft.ScriptManager.MSAjax.dll
├── Microsoft.AspNet.ScriptManager.WebForms.5.0.0
│ ├── Microsoft.AspNet.ScriptManager.WebForms.5.0.0.nupkg
│ ├── content
│ │ └── Scripts
│ │ └── WebForms
│ │ ├── DetailsView.js
│ │ ├── Focus.js
│ │ ├── GridView.js
│ │ ├── Menu.js
│ │ ├── MenuStandards.js
│ │ ├── SmartNav.js
│ │ ├── TreeView.js
│ │ ├── WebForms.js
│ │ ├── WebParts.js
│ │ └── WebUIValidation.js
│ └── lib
│ └── net45
│ └── Microsoft.ScriptManager.WebForms.dll
├── Microsoft.AspNet.Web.Optimization.1.1.3
│ ├── Microsoft.AspNet.Web.Optimization.1.1.3.nupkg
│ └── lib
│ └── net40
│ ├── System.Web.Optimization.dll
│ ├── system.web.optimization.xml
│ └── zh-Hans
│ └── System.Web.Optimization.resources.dll
├── Microsoft.AspNet.Web.Optimization.WebForms.1.1.3
│ ├── Microsoft.AspNet.Web.Optimization.WebForms.1.1.3.nupkg
│ ├── content
│ │ └── web.config.transform
│ └── lib
│ └── net45
│ └── Microsoft.AspNet.Web.Optimization.WebForms.dll
├── Microsoft.AspNet.Web.Optimization.zh-Hans.1.1.3
│ ├── Microsoft.AspNet.Web.Optimization.zh-Hans.1.1.3.nupkg
│ └── lib
│ └── net40
│ └── zh-Hans
│ └── System.Web.Optimization.resources.dll
├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0
│ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0.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
│ │ ├── System.AppContext.dll
│ │ ├── System.Collections.Immutable.dll
│ │ ├── System.Console.dll
│ │ ├── System.Diagnostics.FileVersionInfo.dll
│ │ ├── System.Diagnostics.StackTrace.dll
│ │ ├── System.IO.Compression.dll
│ │ ├── System.IO.FileSystem.Primitives.dll
│ │ ├── System.IO.FileSystem.dll
│ │ ├── System.IO.Pipes.AccessControl.dll
│ │ ├── System.IO.Pipes.dll
│ │ ├── System.Reflection.Metadata.dll
│ │ ├── System.Security.AccessControl.dll
│ │ ├── System.Security.Claims.dll
│ │ ├── System.Security.Cryptography.Algorithms.dll
│ │ ├── System.Security.Cryptography.Encoding.dll
│ │ ├── System.Security.Cryptography.Primitives.dll
│ │ ├── System.Security.Cryptography.X509Certificates.dll
│ │ ├── System.Security.Principal.Windows.dll
│ │ ├── System.Text.Encoding.CodePages.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
│ ├── Microsoft.Web.Infrastructure.1.0.0.0.nupkg
│ └── lib
│ └── net40
│ └── Microsoft.Web.Infrastructure.dll
├── Modernizr.2.8.3
│ ├── Content
│ │ └── Scripts
│ │ └── modernizr-2.8.3.js
│ ├── Modernizr.2.8.3.nupkg
│ └── Tools
│ ├── common.ps1
│ ├── install.ps1
│ └── uninstall.ps1
├── Newtonsoft.Json.11.0.1
│ ├── LICENSE.md
│ ├── Newtonsoft.Json.11.0.1.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%2Bsl5%2Bwin8%2Bwp8%2Bwpa81
│ │ ├── Newtonsoft.Json.dll
│ │ └── Newtonsoft.Json.xml
│ └── portable-net45%2Bwin8%2Bwp8%2Bwpa81
│ ├── Newtonsoft.Json.dll
│ └── Newtonsoft.Json.xml
├── WebGrease.1.6.0
│ ├── WebGrease.1.6.0.nupkg
│ ├── lib
│ │ └── WebGrease.dll
│ └── tools
│ └── WG.EXE
├── bootstrap.3.3.7
│ ├── bootstrap.3.3.7.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
└── jQuery.3.3.1
├── Content
│ └── Scripts
│ ├── jquery-3.3.1-vsdoc.js
│ ├── jquery-3.3.1.js
│ ├── jquery-3.3.1.min.js
│ ├── jquery-3.3.1.min.map
│ ├── jquery-3.3.1.slim.js
│ ├── jquery-3.3.1.slim.min.js
│ └── jquery-3.3.1.slim.min.map
├── Tools
│ ├── common.ps1
│ ├── install.ps1
│ ├── jquery-3.3.1.intellisense.js
│ └── uninstall.ps1
└── jQuery.3.3.1.nupkg
276 directories, 1022 files