实例介绍
【实例简介】websocket 群聊:基于c#控制台在fleck完成的双向通讯
基于c#控制台在fleck完成的双向通讯,实现群聊功能,源码注释说明详细
【实例截图】
【核心代码】
.
├── websocket 群聊:基于c#控制台在fleck完成的双向通讯.zip
└── 双向通讯
├── ConsoleApp1
│ ├── App.config
│ ├── ConsoleApp1.csproj
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── bin
│ │ └── Debug
│ │ ├── ConsoleApp1.exe
│ │ ├── ConsoleApp1.exe.config
│ │ ├── ConsoleApp1.pdb
│ │ └── Fleck.dll
│ ├── obj
│ │ └── Debug
│ │ ├── ConsoleApp1.csproj.AssemblyReference.cache
│ │ ├── ConsoleApp1.csproj.CopyComplete
│ │ ├── ConsoleApp1.csproj.CoreCompileInputs.cache
│ │ ├── ConsoleApp1.csproj.FileListAbsolute.txt
│ │ ├── ConsoleApp1.csproj.SuggestedBindingRedirects.cache
│ │ ├── ConsoleApp1.exe
│ │ ├── ConsoleApp1.pdb
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── TempPE
│ └── packages.config
├── asd
│ ├── HtmlPage1.html
│ ├── NewFolder1
│ │ └── JavaScript.js
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Web.Debug.config
│ ├── Web.Release.config
│ ├── Web.config
│ ├── asd.csproj
│ ├── asd.csproj.user
│ ├── bin
│ │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll
│ │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml
│ │ ├── asd.dll
│ │ ├── asd.dll.config
│ │ ├── asd.pdb
│ │ └── 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
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── TempPE
│ │ ├── asd.csproj.AssemblyReference.cache
│ │ ├── asd.csproj.CoreCompileInputs.cache
│ │ ├── asd.csproj.FileListAbsolute.txt
│ │ ├── asd.dll
│ │ └── asd.pdb
│ └── packages.config
├── ccc
│ ├── App_Data
│ ├── App_Start
│ │ ├── BundleConfig.cs
│ │ ├── FilterConfig.cs
│ │ └── RouteConfig.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
│ ├── Controllers
│ │ └── HomeController.cs
│ ├── Global.asax
│ ├── Global.asax.cs
│ ├── Handler1.ashx
│ ├── Handler1.ashx.cs
│ ├── HtmlPage1.html
│ ├── Models
│ ├── NewFolder1
│ │ └── jquery-3.5.1.min.js
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ └── PublishProfiles
│ │ ├── FolderProfile.pubxml
│ │ └── FolderProfile.pubxml.user
│ ├── 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
│ ├── Views
│ │ ├── 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
│ │ ├── 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
│ │ ├── ccc.dll
│ │ ├── ccc.dll.config
│ │ ├── ccc.pdb
│ │ ├── 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
│ │ └── zh-Hans
│ │ ├── System.Web.Helpers.resources.dll
│ │ ├── System.Web.Mvc.resources.dll
│ │ ├── System.Web.Optimization.resources.dll
│ │ ├── System.Web.Razor.resources.dll
│ │ ├── System.Web.WebPages.Deployment.resources.dll
│ │ ├── System.Web.WebPages.Razor.resources.dll
│ │ └── System.Web.WebPages.resources.dll
│ ├── ccc.csproj
│ ├── ccc.csproj.user
│ ├── 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
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TempPE
│ │ │ ├── ccc.csproj.AssemblyReference.cache
│ │ │ ├── ccc.csproj.CoreCompileInputs.cache
│ │ │ ├── ccc.csproj.FileListAbsolute.txt
│ │ │ ├── ccc.dll
│ │ │ └── ccc.pdb
│ │ └── Release
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Package
│ │ │ └── PackageTmp
│ │ │ ├── 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
│ │ │ ├── Global.asax
│ │ │ ├── Handler1.ashx
│ │ │ ├── Scripts
│ │ │ │ ├── bootstrap.js
│ │ │ │ ├── bootstrap.min.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.js
│ │ │ │ ├── jquery.validate.min.js
│ │ │ │ ├── jquery.validate.unobtrusive.js
│ │ │ │ ├── jquery.validate.unobtrusive.min.js
│ │ │ │ └── modernizr-2.8.3.js
│ │ │ ├── Views
│ │ │ │ ├── Home
│ │ │ │ │ ├── About.cshtml
│ │ │ │ │ ├── Contact.cshtml
│ │ │ │ │ └── Index.cshtml
│ │ │ │ ├── Shared
│ │ │ │ │ ├── Error.cshtml
│ │ │ │ │ └── _Layout.cshtml
│ │ │ │ ├── Web.config
│ │ │ │ └── _ViewStart.cshtml
│ │ │ ├── Web.config
│ │ │ ├── bin
│ │ │ │ ├── Antlr3.Runtime.dll
│ │ │ │ ├── Antlr3.Runtime.pdb
│ │ │ │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll
│ │ │ │ ├── Microsoft.Web.Infrastructure.dll
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ ├── System.Web.Helpers.dll
│ │ │ │ ├── System.Web.Mvc.dll
│ │ │ │ ├── System.Web.Optimization.dll
│ │ │ │ ├── System.Web.Razor.dll
│ │ │ │ ├── System.Web.WebPages.Deployment.dll
│ │ │ │ ├── System.Web.WebPages.Razor.dll
│ │ │ │ ├── System.Web.WebPages.dll
│ │ │ │ ├── WebGrease.dll
│ │ │ │ ├── ccc.dll
│ │ │ │ ├── ccc.pdb
│ │ │ │ ├── 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
│ │ │ │ └── zh-Hans
│ │ │ │ ├── System.Web.Helpers.resources.dll
│ │ │ │ ├── System.Web.Mvc.resources.dll
│ │ │ │ ├── System.Web.Optimization.resources.dll
│ │ │ │ ├── System.Web.Razor.resources.dll
│ │ │ │ ├── System.Web.WebPages.Deployment.resources.dll
│ │ │ │ ├── System.Web.WebPages.Razor.resources.dll
│ │ │ │ └── System.Web.WebPages.resources.dll
│ │ │ ├── favicon.ico
│ │ │ └── fonts
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ └── glyphicons-halflings-regular.woff2
│ │ ├── ProfileTransformWebConfig
│ │ │ └── transformed
│ │ │ └── Views
│ │ ├── TempPE
│ │ ├── TransformWebConfig
│ │ │ ├── assist
│ │ │ │ └── Web.config
│ │ │ ├── original
│ │ │ │ └── Web.config
│ │ │ └── transformed
│ │ │ ├── Views
│ │ │ └── Web.config
│ │ ├── _WPPLastBuildInfo.txt
│ │ ├── ccc.csproj.AssemblyReference.cache
│ │ ├── ccc.csproj.CopyComplete
│ │ ├── ccc.csproj.CoreCompileInputs.cache
│ │ ├── ccc.csproj.FileListAbsolute.txt
│ │ ├── ccc.dll
│ │ └── ccc.pdb
│ └── packages.config
├── ccc.sln
├── fduayi
│ ├── DBHerper.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ └── PublishProfiles
│ │ ├── FolderProfile.pubxml
│ │ └── FolderProfile.pubxml.user
│ ├── Web.Debug.config
│ ├── Web.Release.config
│ ├── Web.config
│ ├── WebForm1.aspx
│ ├── WebForm1.aspx.cs
│ ├── WebForm1.aspx.designer.cs
│ ├── bin
│ │ ├── Fleck.dll
│ │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll
│ │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml
│ │ ├── app.publish
│ │ │ ├── Web.config
│ │ │ ├── WebForm1.aspx
│ │ │ ├── WebForm2.aspx
│ │ │ └── bin
│ │ │ ├── Fleck.dll
│ │ │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll
│ │ │ ├── fduayi.dll
│ │ │ ├── fduayi.pdb
│ │ │ └── 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
│ │ ├── app.publish.7z
│ │ ├── fduayi.dll
│ │ ├── fduayi.dll.config
│ │ ├── fduayi.pdb
│ │ └── 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
│ ├── bqb
│ │ ├── dist
│ │ │ ├── css
│ │ │ │ ├── index.css
│ │ │ │ └── jquery.emoji.css
│ │ │ ├── img
│ │ │ │ ├── qq
│ │ │ │ │ ├── 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
│ │ │ │ │ ├── 72.gif
│ │ │ │ │ ├── 73.gif
│ │ │ │ │ ├── 74.gif
│ │ │ │ │ ├── 75.gif
│ │ │ │ │ ├── 76.gif
│ │ │ │ │ ├── 77.gif
│ │ │ │ │ ├── 78.gif
│ │ │ │ │ ├── 79.gif
│ │ │ │ │ ├── 8.gif
│ │ │ │ │ ├── 80.gif
│ │ │ │ │ ├── 81.gif
│ │ │ │ │ ├── 82.gif
│ │ │ │ │ ├── 83.gif
│ │ │ │ │ ├── 84.gif
│ │ │ │ │ ├── 85.gif
│ │ │ │ │ ├── 86.gif
│ │ │ │ │ ├── 87.gif
│ │ │ │ │ ├── 88.gif
│ │ │ │ │ ├── 89.gif
│ │ │ │ │ ├── 9.gif
│ │ │ │ │ ├── 90.gif
│ │ │ │ │ └── 91.gif
│ │ │ │ └── tieba
│ │ │ │ ├── 1.jpg
│ │ │ │ ├── 10.jpg
│ │ │ │ ├── 11.jpg
│ │ │ │ ├── 12.jpg
│ │ │ │ ├── 13.jpg
│ │ │ │ ├── 14.jpg
│ │ │ │ ├── 15.jpg
│ │ │ │ ├── 16.jpg
│ │ │ │ ├── 17.jpg
│ │ │ │ ├── 18.jpg
│ │ │ │ ├── 19.jpg
│ │ │ │ ├── 2.jpg
│ │ │ │ ├── 20.jpg
│ │ │ │ ├── 21.jpg
│ │ │ │ ├── 22.jpg
│ │ │ │ ├── 23.jpg
│ │ │ │ ├── 24.jpg
│ │ │ │ ├── 25.jpg
│ │ │ │ ├── 26.jpg
│ │ │ │ ├── 27.jpg
│ │ │ │ ├── 28.jpg
│ │ │ │ ├── 29.jpg
│ │ │ │ ├── 3.jpg
│ │ │ │ ├── 30.jpg
│ │ │ │ ├── 31.jpg
│ │ │ │ ├── 32.jpg
│ │ │ │ ├── 33.jpg
│ │ │ │ ├── 34.jpg
│ │ │ │ ├── 35.jpg
│ │ │ │ ├── 36.jpg
│ │ │ │ ├── 37.jpg
│ │ │ │ ├── 38.jpg
│ │ │ │ ├── 39.jpg
│ │ │ │ ├── 4.jpg
│ │ │ │ ├── 40.jpg
│ │ │ │ ├── 41.jpg
│ │ │ │ ├── 42.jpg
│ │ │ │ ├── 43.jpg
│ │ │ │ ├── 44.jpg
│ │ │ │ ├── 45.jpg
│ │ │ │ ├── 46.jpg
│ │ │ │ ├── 47.jpg
│ │ │ │ ├── 48.jpg
│ │ │ │ ├── 49.jpg
│ │ │ │ ├── 5.jpg
│ │ │ │ ├── 50.jpg
│ │ │ │ ├── 6.jpg
│ │ │ │ ├── 7.jpg
│ │ │ │ ├── 8.jpg
│ │ │ │ └── 9.jpg
│ │ │ └── js
│ │ │ └── jquery.emoji.min.js
│ │ ├── index.html
│ │ ├── jquery插件库.url
│ │ ├── lib
│ │ │ ├── css
│ │ │ │ ├── bootstrap.css
│ │ │ │ ├── jquery.mCustomScrollbar.min.css
│ │ │ │ └── railscasts.css
│ │ │ └── script
│ │ │ ├── highlight.pack.js
│ │ │ ├── jquery.mCustomScrollbar.min.js
│ │ │ ├── jquery.min.js
│ │ │ └── jquery.mousewheel-3.0.6.min.js
│ │ └── src
│ │ ├── css
│ │ │ ├── index.css
│ │ │ └── jquery.emoji.css
│ │ ├── img
│ │ │ ├── qq
│ │ │ │ ├── 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
│ │ │ │ ├── 72.gif
│ │ │ │ ├── 73.gif
│ │ │ │ ├── 74.gif
│ │ │ │ ├── 75.gif
│ │ │ │ ├── 76.gif
│ │ │ │ ├── 77.gif
│ │ │ │ ├── 78.gif
│ │ │ │ ├── 79.gif
│ │ │ │ ├── 8.gif
│ │ │ │ ├── 80.gif
│ │ │ │ ├── 81.gif
│ │ │ │ ├── 82.gif
│ │ │ │ ├── 83.gif
│ │ │ │ ├── 84.gif
│ │ │ │ ├── 85.gif
│ │ │ │ ├── 86.gif
│ │ │ │ ├── 87.gif
│ │ │ │ ├── 88.gif
│ │ │ │ ├── 89.gif
│ │ │ │ ├── 9.gif
│ │ │ │ ├── 90.gif
│ │ │ │ └── 91.gif
│ │ │ └── tieba
│ │ │ ├── 1.jpg
│ │ │ ├── 10.jpg
│ │ │ ├── 11.jpg
│ │ │ ├── 12.jpg
│ │ │ ├── 13.jpg
│ │ │ ├── 14.jpg
│ │ │ ├── 15.jpg
│ │ │ ├── 16.jpg
│ │ │ ├── 17.jpg
│ │ │ ├── 18.jpg
│ │ │ ├── 19.jpg
│ │ │ ├── 2.jpg
│ │ │ ├── 20.jpg
│ │ │ ├── 21.jpg
│ │ │ ├── 22.jpg
│ │ │ ├── 23.jpg
│ │ │ ├── 24.jpg
│ │ │ ├── 25.jpg
│ │ │ ├── 26.jpg
│ │ │ ├── 27.jpg
│ │ │ ├── 28.jpg
│ │ │ ├── 29.jpg
│ │ │ ├── 3.jpg
│ │ │ ├── 30.jpg
│ │ │ ├── 31.jpg
│ │ │ ├── 32.jpg
│ │ │ ├── 33.jpg
│ │ │ ├── 34.jpg
│ │ │ ├── 35.jpg
│ │ │ ├── 36.jpg
│ │ │ ├── 37.jpg
│ │ │ ├── 38.jpg
│ │ │ ├── 39.jpg
│ │ │ ├── 4.jpg
│ │ │ ├── 40.jpg
│ │ │ ├── 41.jpg
│ │ │ ├── 42.jpg
│ │ │ ├── 43.jpg
│ │ │ ├── 44.jpg
│ │ │ ├── 45.jpg
│ │ │ ├── 46.jpg
│ │ │ ├── 47.jpg
│ │ │ ├── 48.jpg
│ │ │ ├── 49.jpg
│ │ │ ├── 5.jpg
│ │ │ ├── 50.jpg
│ │ │ ├── 6.jpg
│ │ │ ├── 7.jpg
│ │ │ ├── 8.jpg
│ │ │ └── 9.jpg
│ │ └── js
│ │ └── jquery.emoji.js
│ ├── fduayi.csproj
│ ├── fduayi.csproj.user
│ ├── obj
│ │ ├── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TempPE
│ │ │ ├── fduayi.csproj.AssemblyReference.cache
│ │ │ ├── fduayi.csproj.CopyComplete
│ │ │ ├── fduayi.csproj.CoreCompileInputs.cache
│ │ │ ├── fduayi.csproj.FileListAbsolute.txt
│ │ │ ├── fduayi.dll
│ │ │ └── fduayi.pdb
│ │ └── Release
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Package
│ │ │ └── PackageTmp
│ │ │ ├── Web.config
│ │ │ ├── WebForm1.aspx
│ │ │ ├── WebForm2.aspx
│ │ │ └── bin
│ │ │ ├── Fleck.dll
│ │ │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll
│ │ │ ├── fduayi.dll
│ │ │ ├── fduayi.pdb
│ │ │ └── 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
│ │ ├── ProfileTransformWebConfig
│ │ │ └── transformed
│ │ ├── TempPE
│ │ ├── TransformWebConfig
│ │ │ ├── assist
│ │ │ │ └── Web.config
│ │ │ ├── original
│ │ │ │ └── Web.config
│ │ │ └── transformed
│ │ │ └── Web.config
│ │ ├── _WPPLastBuildInfo.txt
│ │ ├── fduayi.csproj.AssemblyReference.cache
│ │ ├── fduayi.csproj.CoreCompileInputs.cache
│ │ ├── fduayi.csproj.FileListAbsolute.txt
│ │ ├── fduayi.dll
│ │ └── fduayi.pdb
│ └── packages.config
├── fjkgf
│ ├── HtmlPage1.html
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Web.Debug.config
│ ├── Web.Release.config
│ ├── Web.config
│ ├── bin
│ │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll
│ │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml
│ │ ├── fjkgf.dll
│ │ ├── fjkgf.dll.config
│ │ ├── fjkgf.pdb
│ │ └── 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
│ ├── fjkgf.csproj
│ ├── fjkgf.csproj.user
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── TempPE
│ │ ├── fjkgf.csproj.AssemblyReference.cache
│ │ ├── fjkgf.csproj.CoreCompileInputs.cache
│ │ ├── fjkgf.csproj.FileListAbsolute.txt
│ │ ├── fjkgf.dll
│ │ └── fjkgf.pdb
│ └── packages.config
├── gffg
│ ├── App.config
│ ├── Program.cs
│ ├── ProjectInstaller.Designer.cs
│ ├── ProjectInstaller.cs
│ ├── ProjectInstaller.resx
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Service1.Designer.cs
│ ├── Service1.cs
│ ├── WebSocket.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── Fleck.dll
│ │ │ ├── gffg.exe
│ │ │ ├── gffg.exe.config
│ │ │ └── gffg.pdb
│ │ ├── Release
│ │ │ ├── Fleck.dll
│ │ │ ├── InstallUtil.InstallLog
│ │ │ ├── InstallUtil.exe
│ │ │ ├── gffg.InstallLog
│ │ │ ├── gffg.exe
│ │ │ ├── gffg.exe.config
│ │ │ ├── gffg.pdb
│ │ │ ├── setup.bat
│ │ │ └── unsetup.bat
│ │ └── 新建文件夹
│ │ ├── setup.bat
│ │ └── unsetup.bat
│ ├── gffg.csproj
│ ├── obj
│ │ ├── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TempPE
│ │ │ ├── gffg.csproj.AssemblyReference.cache
│ │ │ ├── gffg.csproj.CopyComplete
│ │ │ ├── gffg.csproj.CoreCompileInputs.cache
│ │ │ ├── gffg.csproj.FileListAbsolute.txt
│ │ │ ├── gffg.csproj.SuggestedBindingRedirects.cache
│ │ │ ├── gffg.exe
│ │ │ └── gffg.pdb
│ │ └── Release
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── TempPE
│ │ ├── gffg.ProjectInstaller.resources
│ │ ├── gffg.csproj.AssemblyReference.cache
│ │ ├── gffg.csproj.CopyComplete
│ │ ├── gffg.csproj.CoreCompileInputs.cache
│ │ ├── gffg.csproj.FileListAbsolute.txt
│ │ ├── gffg.csproj.GenerateResource.cache
│ │ ├── gffg.csproj.SuggestedBindingRedirects.cache
│ │ ├── gffg.exe
│ │ └── gffg.pdb
│ └── packages.config
└── packages
├── Antlr.3.5.0.2
│ ├── Antlr.3.5.0.2.nupkg
│ └── lib
│ ├── Antlr3.Runtime.dll
│ └── Antlr3.Runtime.pdb
├── Fleck.1.2.0
│ ├── Fleck.1.2.0.nupkg
│ └── lib
│ ├── net40
│ │ └── Fleck.dll
│ ├── net45
│ │ └── Fleck.dll
│ ├── netcoreapp2.0
│ │ └── Fleck.dll
│ └── netstandard2.0
│ └── Fleck.dll
├── Microsoft.AspNet.Mvc.5.2.7
│ ├── 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
│ └── zh-Hans
│ ├── System.Web.Mvc.resources.dll
│ └── System.Web.Mvc.xml
├── Microsoft.AspNet.Mvc.zh-Hans.5.2.7
│ ├── Microsoft.AspNet.Mvc.zh-Hans.5.2.7.nupkg
│ └── lib
│ └── net45
│ └── zh-Hans
│ ├── System.Web.Mvc.resources.dll
│ └── System.Web.Mvc.xml
├── Microsoft.AspNet.Razor.3.2.7
│ ├── Microsoft.AspNet.Razor.3.2.7.nupkg
│ └── lib
│ └── net45
│ ├── System.Web.Razor.dll
│ ├── System.Web.Razor.xml
│ └── zh-Hans
│ ├── System.Web.Razor.resources.dll
│ └── system.web.razor.xml
├── Microsoft.AspNet.Razor.zh-Hans.3.2.7
│ ├── Microsoft.AspNet.Razor.zh-Hans.3.2.7.nupkg
│ └── lib
│ └── net45
│ └── zh-Hans
│ ├── System.Web.Razor.resources.dll
│ └── system.web.razor.xml
├── 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.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.AspNet.WebPages.3.2.7
│ ├── 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
│ └── zh-Hans
│ ├── System.Web.Helpers.resources.dll
│ ├── System.Web.WebPages.Deployment.resources.dll
│ ├── System.Web.WebPages.Razor.resources.dll
│ ├── System.Web.WebPages.resources.dll
│ ├── system.web.helpers.xml
│ ├── system.web.webpages.deployment.xml
│ ├── system.web.webpages.razor.xml
│ └── system.web.webpages.xml
├── Microsoft.AspNet.WebPages.zh-Hans.3.2.7
│ ├── Microsoft.AspNet.WebPages.zh-Hans.3.2.7.nupkg
│ └── lib
│ └── net45
│ └── zh-Hans
│ ├── System.Web.Helpers.resources.dll
│ ├── System.Web.WebPages.Deployment.resources.dll
│ ├── System.Web.WebPages.Razor.resources.dll
│ ├── System.Web.WebPages.resources.dll
│ ├── system.web.helpers.xml
│ ├── system.web.webpages.deployment.xml
│ ├── system.web.webpages.razor.xml
│ └── system.web.webpages.xml
├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1
│ ├── 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
│ ├── Microsoft.Web.Infrastructure.1.0.0.0.nupkg
│ └── lib
│ └── net40
│ └── Microsoft.Web.Infrastructure.dll
├── Microsoft.jQuery.Unobtrusive.Validation.3.2.11
│ ├── Content
│ │ └── Scripts
│ │ ├── jquery.validate.unobtrusive.js
│ │ └── jquery.validate.unobtrusive.min.js
│ └── Microsoft.jQuery.Unobtrusive.Validation.3.2.11.nupkg
├── 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.12.0.2
│ ├── 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
│ ├── WebGrease.1.6.0.nupkg
│ ├── lib
│ │ └── WebGrease.dll
│ └── tools
│ └── WG.EXE
├── bootstrap.3.4.1
│ ├── 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
│ ├── 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
├── Content
│ └── Scripts
│ ├── jquery.validate-vsdoc.js
│ ├── jquery.validate.js
│ └── jquery.validate.min.js
└── jQuery.Validation.1.17.0.nupkg
210 directories, 1196 files
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论