1232112323

This commit is contained in:
2025-12-11 10:06:20 +08:00
commit 10c9346b86
142 changed files with 4770 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,41 @@
{
"Version": 1,
"WorkspaceRootPath": "D:\\socketServer\\SupperWebSocket\\",
"Documents": [
{
"AbsoluteMoniker": "D:0:0:{E5D4F14E-9A85-4A62-94C6-575CD92C622F}|Flek.csproj|d:\\socketserver\\supperwebsocket\\\u200Cwebsocketserver.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
"RelativeMoniker": "D:0:0:{E5D4F14E-9A85-4A62-94C6-575CD92C622F}|Flek.csproj|solutionrelative:\u200Cwebsocketserver.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
}
],
"DocumentGroupContainers": [
{
"Orientation": 0,
"VerticalTabListWidth": 256,
"DocumentGroups": [
{
"DockedWidth": 200,
"SelectedChildIndex": 1,
"Children": [
{
"$type": "Bookmark",
"Name": "ST:0:0:{aa2115a1-9712-457b-9047-dbb71ca2cdd2}"
},
{
"$type": "Document",
"DocumentIndex": 0,
"Title": "\u200CWebSocketServer.cs",
"DocumentMoniker": "D:\\socketServer\\SupperWebSocket\\\u200CWebSocketServer.cs",
"RelativeDocumentMoniker": "\u200CWebSocketServer.cs",
"ToolTip": "D:\\socketServer\\SupperWebSocket\\\u200CWebSocketServer.cs",
"RelativeToolTip": "\u200CWebSocketServer.cs",
"ViewState": "AgIAAE8AAAAAAAAAAAAIwFkAAABFAAAAAAAAAA==",
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
"WhenOpened": "2025-12-11T02:04:58.875Z",
"EditorCaption": ""
}
]
}
]
}
]
}

16
Flek.csproj Normal file
View File

@ -0,0 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Fleck" Version="1.2.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
</Project>

8
Flek.csproj.user Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Compile Update="Form1.cs">
<SubType>Form</SubType>
</Compile>
</ItemGroup>
</Project>

164
Form1.Designer.cs generated Normal file
View File

@ -0,0 +1,164 @@
namespace SupperWebSocket
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
components = new System.ComponentModel.Container();
button1 = new Button();
label1 = new Label();
label2 = new Label();
label3 = new Label();
label4 = new Label();
timer1 = new System.Windows.Forms.Timer(components);
label5 = new Label();
label6 = new Label();
label7 = new Label();
label8 = new Label();
SuspendLayout();
//
// button1
//
button1.Location = new Point(24, 158);
button1.Name = "button1";
button1.Size = new Size(136, 46);
button1.TabIndex = 0;
button1.Text = "开启Socket服务";
button1.UseVisualStyleBackColor = true;
button1.Click += button1_Click;
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(24, 86);
label1.Name = "label1";
label1.Size = new Size(68, 17);
label1.TabIndex = 1;
label1.Text = "在线人数:";
//
// label2
//
label2.AutoSize = true;
label2.Location = new Point(36, 24);
label2.Name = "label2";
label2.Size = new Size(56, 17);
label2.TabIndex = 1;
label2.Text = "学生端:";
//
// label3
//
label3.AutoSize = true;
label3.Location = new Point(36, 54);
label3.Name = "label3";
label3.Size = new Size(56, 17);
label3.TabIndex = 1;
label3.Text = "教师端:";
//
// label4
//
label4.AutoSize = true;
label4.Location = new Point(12, 117);
label4.Name = "label4";
label4.Size = new Size(80, 17);
label4.TabIndex = 1;
label4.Text = "课程开启数:";
//
// timer1
//
timer1.Tick += timer1_Tick;
//
// label5
//
label5.AutoSize = true;
label5.Location = new Point(92, 117);
label5.Name = "label5";
label5.Size = new Size(43, 17);
label5.TabIndex = 2;
label5.Text = "label5";
//
// label6
//
label6.AutoSize = true;
label6.Location = new Point(92, 86);
label6.Name = "label6";
label6.Size = new Size(43, 17);
label6.TabIndex = 2;
label6.Text = "label6";
//
// label7
//
label7.AutoSize = true;
label7.Location = new Point(92, 54);
label7.Name = "label7";
label7.Size = new Size(43, 17);
label7.TabIndex = 2;
label7.Text = "label7";
//
// label8
//
label8.AutoSize = true;
label8.Location = new Point(92, 26);
label8.Name = "label8";
label8.Size = new Size(43, 17);
label8.TabIndex = 2;
label8.Text = "label8";
//
// Form1
//
AutoScaleDimensions = new SizeF(7F, 17F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(192, 228);
Controls.Add(label8);
Controls.Add(label7);
Controls.Add(label6);
Controls.Add(label5);
Controls.Add(label4);
Controls.Add(label3);
Controls.Add(label2);
Controls.Add(label1);
Controls.Add(button1);
Name = "Form1";
Text = "Form1";
Load += Form1_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button button1;
private Label label1;
private Label label2;
private Label label3;
private Label label4;
private System.Windows.Forms.Timer timer1;
private Label label5;
private Label label6;
private Label label7;
private Label label8;
}
}

58
Form1.cs Normal file
View File

@ -0,0 +1,58 @@
using System.Security.Cryptography.X509Certificates;
using Fleck;
namespace SupperWebSocket
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private WebSocketServer _webSocketServer;
private void Form1_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
if (button1.Text == "<22><><EFBFBD><EFBFBD>Socket<65><74><EFBFBD><EFBFBD>")
{
string location = "wss://0.0.0.0:8181";
_webSocketServer = new WebSocketServer();
_webSocketServer.Start(location);
button1.Text = "<22>ر<EFBFBD>WebSocket";
timer1.Interval = 2000;
timer1.Start();
}
else
{
button1.Text = "<22><><EFBFBD><EFBFBD>Socket<65><74><EFBFBD><EFBFBD>";
_webSocketServer.Stop();
timer1.Stop();
}
}
private async void timer1_Tick(object sender, EventArgs e)
{
await Task.Run(() =>
{
this.Invoke(new Action(() =>
{
label5.Text = WebSocketServer._classInfos.Count.ToString();
label6.Text =WebSocketServer.IWebSocketUserinfo.Count.ToString();
label7.Text = WebSocketServer.IWebSocketUserinfo.Where(c=>c.UserType == 1 ).ToList().Count().ToString();
label8.Text = WebSocketServer.IWebSocketUserinfo.Where(c => c.UserType == 0).ToList().Count().ToString();
}));
});
}
}
}

123
Form1.resx Normal file
View File

@ -0,0 +1,123 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<metadata name="timer1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
</root>

17
Program.cs Normal file
View File

@ -0,0 +1,17 @@
namespace SupperWebSocket
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
Application.Run(new Form1());
}
}
}

25
SupperWebSocket.sln Normal file
View File

@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.13.35913.81
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Flek", "Flek.csproj", "{E5D4F14E-9A85-4A62-94C6-575CD92C622F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{E5D4F14E-9A85-4A62-94C6-575CD92C622F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E5D4F14E-9A85-4A62-94C6-575CD92C622F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E5D4F14E-9A85-4A62-94C6-575CD92C622F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E5D4F14E-9A85-4A62-94C6-575CD92C622F}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {523CA384-7580-4777-BACB-4AC62E6FAD9B}
EndGlobalSection
EndGlobal

113
UserInfo.cs Normal file
View File

@ -0,0 +1,113 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Fleck;
using Microsoft.VisualBasic.Devices;
using Newtonsoft.Json;
public class ClassUserInfo
{
public long UserID { get; set; }
public string UserName { get; set; }
public int UserType { get; set; }
public long Class { get; set; }
public int Schoolclass { get; set; }
public Guid GUID { get; set; }
[JsonIgnore]
public IWebSocketConnection Linsocket{ get; set; }
}
public class ClassInfo
{
public string CourseName { get; set; }
public List<DisplayJK> DisplayJK { get; set; }
public long CourseID { get; set; }
/// <summary>
/// 1已开课 0结束
/// </summary>
public int CourseStatus { get; set; }
/// <summary>
/// 屏幕显示ID
/// </summary>
public long DisplayID { get; set; }
/// <summary>
/// 教师ID
/// </summary>
public long TeacherID { get; set; }
/// <summary>
/// 课程是否禁音
/// </summary>
public bool AudioIsOpen { get; set; }
public List<UserAudioStatus> userAudioStatus { get; set; }
public bool TeacherAudioIsOpen { get; set; }
}
/// <summary>
/// 本地监控
/// </summary>
public class DisplayJK
{
public string Name { get; set; }
public long UserID { get; set; }
}
/// <summary>
/// 用户音频状态
/// </summary>
public class UserAudioStatus
{
public long UserID { get; set; }
public bool IsOpen { get; set; }
public int UserType { get; set; }
}
public class Result
{
public bool IsSuccess { get; set; }
public string Data { get; set; }
public int MessageType { get; set; }
}
public class ReciveSocketInfo {
/// <summary>
/// 业务类型 单发还是群发
/// </summary>
public int Type { get; set; }
public long UserID { get; set; }
/// <summary>
/// 课程
/// </summary>
public string Class { get; set; }
/// <summary>
/// 班级
/// </summary>
public string SchoolClass { get; set; }
/// <summary>
/// 发送给指定某些用户
/// </summary>
public string UserIDS { get; set; }
/// <summary>
/// 教师或者学生 教师0 学生1
/// </summary>
public int UserType { get; set; }
/// <summary>
/// 内容
/// </summary>
public string Data { get; set; }
}

BIN
bin/Debug/8182.zip Normal file

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,57 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v8.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v8.0": {
"Flek/1.0.0": {
"dependencies": {
"Fleck": "1.2.0",
"Newtonsoft.Json": "13.0.3"
},
"runtime": {
"Flek.dll": {}
}
},
"Fleck/1.2.0": {
"runtime": {
"lib/netcoreapp2.0/Fleck.dll": {
"assemblyVersion": "1.2.0.0",
"fileVersion": "1.2.0.0"
}
}
},
"Newtonsoft.Json/13.0.3": {
"runtime": {
"lib/net6.0/Newtonsoft.Json.dll": {
"assemblyVersion": "13.0.0.0",
"fileVersion": "13.0.3.27908"
}
}
}
}
},
"libraries": {
"Flek/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Fleck/1.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-bPLXn6QbLAFoviur6XbrKB0Zn6x04E8VibHXyHZeJsoC7bkUl5DVtzM5cZgDuqHkIrBqAXJyTNJwSNIc6wBJ2Q==",
"path": "fleck/1.2.0",
"hashPath": "fleck.1.2.0.nupkg.sha512"
},
"Newtonsoft.Json/13.0.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
"path": "newtonsoft.json/13.0.3",
"hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
}
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,19 @@
{
"runtimeOptions": {
"tfm": "net8.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "8.0.0"
},
{
"name": "Microsoft.WindowsDesktop.App",
"version": "8.0.0"
}
],
"configProperties": {
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true,
"CSWINRT_USE_WINDOWS_UI_XAML_PROJECTIONS": false
}
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,19 @@
{
"runtimeOptions": {
"tfm": "net8.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "8.0.0"
},
{
"name": "Microsoft.WindowsDesktop.App",
"version": "8.0.0"
}
],
"configProperties": {
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true,
"CSWINRT_USE_WINDOWS_UI_XAML_PROJECTIONS": false
}
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

View File

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]

View File

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Flek")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Flek")]
[assembly: System.Reflection.AssemblyTitleAttribute("Flek")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// 由 MSBuild WriteCodeFragment 类生成。

View File

@ -0,0 +1 @@
6f529ed25110a5f0e7529c0c86fee5c411496aa0a99219ada562b085a44492e9

View File

@ -0,0 +1,22 @@
is_global = true
build_property.ApplicationManifest =
build_property.StartupObject =
build_property.ApplicationDefaultFont =
build_property.ApplicationHighDpiMode =
build_property.ApplicationUseCompatibleTextRendering =
build_property.ApplicationVisualStyles =
build_property.TargetFramework = net8.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Flek
build_property.ProjectDir = D:\socketServer\SupperWebSocket\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.CsWinRTUseWindowsUIXamlProjections = false
build_property.EffectiveAnalysisLevelStyle = 8.0
build_property.EnableCodeStyleSeverity =

View File

@ -0,0 +1,10 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.Drawing;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;
global using global::System.Windows.Forms;

Binary file not shown.

View File

@ -0,0 +1 @@
5303d2d9e9b087f3b41f2a0d00f89bdbaa085584773ccd67f240efa08dd67a7b

View File

@ -0,0 +1,20 @@
D:\socketServer\SupperWebSocket\bin\Debug\net8.0-windows\Flek.exe
D:\socketServer\SupperWebSocket\bin\Debug\net8.0-windows\Flek.deps.json
D:\socketServer\SupperWebSocket\bin\Debug\net8.0-windows\Flek.runtimeconfig.json
D:\socketServer\SupperWebSocket\bin\Debug\net8.0-windows\Flek.dll
D:\socketServer\SupperWebSocket\bin\Debug\net8.0-windows\Flek.pdb
D:\socketServer\SupperWebSocket\bin\Debug\net8.0-windows\Fleck.dll
D:\socketServer\SupperWebSocket\bin\Debug\net8.0-windows\Newtonsoft.Json.dll
D:\socketServer\SupperWebSocket\obj\Debug\net8.0-windows\Flek.csproj.AssemblyReference.cache
D:\socketServer\SupperWebSocket\obj\Debug\net8.0-windows\SupperWebSocket.Form1.resources
D:\socketServer\SupperWebSocket\obj\Debug\net8.0-windows\Flek.csproj.GenerateResource.cache
D:\socketServer\SupperWebSocket\obj\Debug\net8.0-windows\Flek.GeneratedMSBuildEditorConfig.editorconfig
D:\socketServer\SupperWebSocket\obj\Debug\net8.0-windows\Flek.AssemblyInfoInputs.cache
D:\socketServer\SupperWebSocket\obj\Debug\net8.0-windows\Flek.AssemblyInfo.cs
D:\socketServer\SupperWebSocket\obj\Debug\net8.0-windows\Flek.csproj.CoreCompileInputs.cache
D:\socketServer\SupperWebSocket\obj\Debug\net8.0-windows\Flek.csproj.Up2Date
D:\socketServer\SupperWebSocket\obj\Debug\net8.0-windows\Flek.dll
D:\socketServer\SupperWebSocket\obj\Debug\net8.0-windows\refint\Flek.dll
D:\socketServer\SupperWebSocket\obj\Debug\net8.0-windows\Flek.pdb
D:\socketServer\SupperWebSocket\obj\Debug\net8.0-windows\Flek.genruntimeconfig.cache
D:\socketServer\SupperWebSocket\obj\Debug\net8.0-windows\ref\Flek.dll

View File

@ -0,0 +1,43 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v8.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v8.0": {
"Fleck/1.2.0": {
"runtime": {
"lib/netcoreapp2.0/Fleck.dll": {
"assemblyVersion": "1.2.0.0",
"fileVersion": "1.2.0.0"
}
}
},
"Newtonsoft.Json/13.0.3": {
"runtime": {
"lib/net6.0/Newtonsoft.Json.dll": {
"assemblyVersion": "13.0.0.0",
"fileVersion": "13.0.3.27908"
}
}
}
}
},
"libraries": {
"Fleck/1.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-bPLXn6QbLAFoviur6XbrKB0Zn6x04E8VibHXyHZeJsoC7bkUl5DVtzM5cZgDuqHkIrBqAXJyTNJwSNIc6wBJ2Q==",
"path": "fleck/1.2.0",
"hashPath": "fleck.1.2.0.nupkg.sha512"
},
"Newtonsoft.Json/13.0.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
"path": "newtonsoft.json/13.0.3",
"hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
}
}
}

View File

@ -0,0 +1,25 @@
{
"runtimeOptions": {
"tfm": "net8.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "8.0.0"
},
{
"name": "Microsoft.WindowsDesktop.App",
"version": "8.0.0"
}
],
"additionalProbingPaths": [
"C:\\Users\\Administrator\\.dotnet\\store\\|arch|\\|tfm|",
"C:\\Users\\Administrator\\.nuget\\packages",
"d:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configProperties": {
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true,
"CSWINRT_USE_WINDOWS_UI_XAML_PROJECTIONS": false,
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
}
}
}

Binary file not shown.

View File

@ -0,0 +1 @@
d7ad7dffa97d4ed2b9c1944a2b1731c58c97c1287ecfa9899d3d26d5a275025c

Binary file not shown.

View File

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("SupperWebSocket")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("SupperWebSocket")]
[assembly: System.Reflection.AssemblyTitleAttribute("SupperWebSocket")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// 由 MSBuild WriteCodeFragment 类生成。

View File

@ -0,0 +1 @@
afe806f99f54a87c8ee162c581b7d816011e96b48069db39f80477909aa7a611

View File

@ -0,0 +1,22 @@
is_global = true
build_property.ApplicationManifest =
build_property.StartupObject =
build_property.ApplicationDefaultFont =
build_property.ApplicationHighDpiMode =
build_property.ApplicationUseCompatibleTextRendering =
build_property.ApplicationVisualStyles =
build_property.TargetFramework = net8.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = SupperWebSocket
build_property.ProjectDir = D:\socketServer\SupperWebSocket\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.CsWinRTUseWindowsUIXamlProjections = false
build_property.EffectiveAnalysisLevelStyle = 8.0
build_property.EnableCodeStyleSeverity =

View File

@ -0,0 +1,10 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.Drawing;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;
global using global::System.Windows.Forms;

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More