123123123213
This commit is contained in:
16
Flek8182.csproj
Normal file
16
Flek8182.csproj
Normal 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
Flek8182.csproj.user
Normal file
8
Flek8182.csproj.user
Normal 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
164
Form1.Designer.cs
generated
Normal 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;
|
||||
}
|
||||
}
|
||||
55
Form1.cs
Normal file
55
Form1.cs
Normal file
@ -0,0 +1,55 @@
|
||||
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:8182";
|
||||
_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
123
Form1.resx
Normal 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
17
Program.cs
Normal 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
25
SupperWebSocket.sln
Normal 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}") = "Flek8182", "Flek8182.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
|
||||
112
UserInfo.cs
Normal file
112
UserInfo.cs
Normal file
@ -0,0 +1,112 @@
|
||||
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/net8.0-windows/Fleck.dll
Normal file
BIN
bin/Debug/net8.0-windows/Fleck.dll
Normal file
Binary file not shown.
57
bin/Debug/net8.0-windows/Flek.deps.json
Normal file
57
bin/Debug/net8.0-windows/Flek.deps.json
Normal 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"
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
bin/Debug/net8.0-windows/Flek.dll
Normal file
BIN
bin/Debug/net8.0-windows/Flek.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0-windows/Flek.exe
Normal file
BIN
bin/Debug/net8.0-windows/Flek.exe
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0-windows/Flek.pdb
Normal file
BIN
bin/Debug/net8.0-windows/Flek.pdb
Normal file
Binary file not shown.
19
bin/Debug/net8.0-windows/Flek.runtimeconfig.json
Normal file
19
bin/Debug/net8.0-windows/Flek.runtimeconfig.json
Normal 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
|
||||
}
|
||||
}
|
||||
}
|
||||
57
bin/Debug/net8.0-windows/Flek8182.deps.json
Normal file
57
bin/Debug/net8.0-windows/Flek8182.deps.json
Normal file
@ -0,0 +1,57 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v8.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v8.0": {
|
||||
"Flek8182/1.0.0": {
|
||||
"dependencies": {
|
||||
"Fleck": "1.2.0",
|
||||
"Newtonsoft.Json": "13.0.3"
|
||||
},
|
||||
"runtime": {
|
||||
"Flek8182.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": {
|
||||
"Flek8182/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"
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
bin/Debug/net8.0-windows/Flek8182.dll
Normal file
BIN
bin/Debug/net8.0-windows/Flek8182.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0-windows/Flek8182.exe
Normal file
BIN
bin/Debug/net8.0-windows/Flek8182.exe
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0-windows/Flek8182.pdb
Normal file
BIN
bin/Debug/net8.0-windows/Flek8182.pdb
Normal file
Binary file not shown.
19
bin/Debug/net8.0-windows/Flek8182.runtimeconfig.json
Normal file
19
bin/Debug/net8.0-windows/Flek8182.runtimeconfig.json
Normal 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.
BIN
bin/Debug/net8.0-windows/Microsoft.Extensions.Configuration.dll
Normal file
BIN
bin/Debug/net8.0-windows/Microsoft.Extensions.Configuration.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
bin/Debug/net8.0-windows/Microsoft.Extensions.Diagnostics.dll
Normal file
BIN
bin/Debug/net8.0-windows/Microsoft.Extensions.Diagnostics.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
bin/Debug/net8.0-windows/Microsoft.Extensions.Hosting.dll
Normal file
BIN
bin/Debug/net8.0-windows/Microsoft.Extensions.Hosting.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
bin/Debug/net8.0-windows/Microsoft.Extensions.Logging.Debug.dll
Normal file
BIN
bin/Debug/net8.0-windows/Microsoft.Extensions.Logging.Debug.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
bin/Debug/net8.0-windows/Microsoft.Extensions.Logging.dll
Normal file
BIN
bin/Debug/net8.0-windows/Microsoft.Extensions.Logging.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
bin/Debug/net8.0-windows/Microsoft.Extensions.Options.dll
Normal file
BIN
bin/Debug/net8.0-windows/Microsoft.Extensions.Options.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0-windows/Microsoft.Extensions.Primitives.dll
Normal file
BIN
bin/Debug/net8.0-windows/Microsoft.Extensions.Primitives.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0-windows/Newtonsoft.Json.dll
Normal file
BIN
bin/Debug/net8.0-windows/Newtonsoft.Json.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0-windows/SuperSocket.ClientEngine.dll
Normal file
BIN
bin/Debug/net8.0-windows/SuperSocket.ClientEngine.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0-windows/SuperSocket.Common.dll
Normal file
BIN
bin/Debug/net8.0-windows/SuperSocket.Common.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0-windows/SuperSocket.Facility.dll
Normal file
BIN
bin/Debug/net8.0-windows/SuperSocket.Facility.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0-windows/SuperSocket.SocketBase.dll
Normal file
BIN
bin/Debug/net8.0-windows/SuperSocket.SocketBase.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0-windows/SuperSocket.SocketEngine.dll
Normal file
BIN
bin/Debug/net8.0-windows/SuperSocket.SocketEngine.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0-windows/SuperSocket.WebSocket.dll
Normal file
BIN
bin/Debug/net8.0-windows/SuperSocket.WebSocket.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0-windows/SuperWebSocket.dll
Normal file
BIN
bin/Debug/net8.0-windows/SuperWebSocket.dll
Normal file
Binary file not shown.
1764
bin/Debug/net8.0-windows/SupperWebSocket.deps.json
Normal file
1764
bin/Debug/net8.0-windows/SupperWebSocket.deps.json
Normal file
File diff suppressed because it is too large
Load Diff
BIN
bin/Debug/net8.0-windows/SupperWebSocket.dll
Normal file
BIN
bin/Debug/net8.0-windows/SupperWebSocket.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0-windows/SupperWebSocket.exe
Normal file
BIN
bin/Debug/net8.0-windows/SupperWebSocket.exe
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0-windows/SupperWebSocket.pdb
Normal file
BIN
bin/Debug/net8.0-windows/SupperWebSocket.pdb
Normal file
Binary file not shown.
19
bin/Debug/net8.0-windows/SupperWebSocket.runtimeconfig.json
Normal file
19
bin/Debug/net8.0-windows/SupperWebSocket.runtimeconfig.json
Normal 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
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
bin/Debug/net8.0-windows/System.Diagnostics.DiagnosticSource.dll
Normal file
BIN
bin/Debug/net8.0-windows/System.Diagnostics.DiagnosticSource.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0-windows/System.Diagnostics.EventLog.dll
Normal file
BIN
bin/Debug/net8.0-windows/System.Diagnostics.EventLog.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0-windows/System.IO.Pipelines.dll
Normal file
BIN
bin/Debug/net8.0-windows/System.IO.Pipelines.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0-windows/System.Text.Encodings.Web.dll
Normal file
BIN
bin/Debug/net8.0-windows/System.Text.Encodings.Web.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0-windows/System.Text.Json.dll
Normal file
BIN
bin/Debug/net8.0-windows/System.Text.Json.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0-windows/WebSocket4Net.dll
Normal file
BIN
bin/Debug/net8.0-windows/WebSocket4Net.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0-windows/fullchain.pfx
Normal file
BIN
bin/Debug/net8.0-windows/fullchain.pfx
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0-windows/log4net.dll
Normal file
BIN
bin/Debug/net8.0-windows/log4net.dll
Normal file
Binary file not shown.
0
bin/Debug/net8.0-windows/password.txt
Normal file
0
bin/Debug/net8.0-windows/password.txt
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
|
||||
25
obj/Debug/net8.0-windows/Flek.AssemblyInfo.cs
Normal file
25
obj/Debug/net8.0-windows/Flek.AssemblyInfo.cs
Normal 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 类生成。
|
||||
|
||||
1
obj/Debug/net8.0-windows/Flek.AssemblyInfoInputs.cache
Normal file
1
obj/Debug/net8.0-windows/Flek.AssemblyInfoInputs.cache
Normal file
@ -0,0 +1 @@
|
||||
6f529ed25110a5f0e7529c0c86fee5c411496aa0a99219ada562b085a44492e9
|
||||
@ -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\8182socket\
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.CsWinRTUseWindowsUIXamlProjections = false
|
||||
build_property.EffectiveAnalysisLevelStyle = 8.0
|
||||
build_property.EnableCodeStyleSeverity =
|
||||
10
obj/Debug/net8.0-windows/Flek.GlobalUsings.g.cs
Normal file
10
obj/Debug/net8.0-windows/Flek.GlobalUsings.g.cs
Normal 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;
|
||||
BIN
obj/Debug/net8.0-windows/Flek.assets.cache
Normal file
BIN
obj/Debug/net8.0-windows/Flek.assets.cache
Normal file
Binary file not shown.
BIN
obj/Debug/net8.0-windows/Flek.csproj.AssemblyReference.cache
Normal file
BIN
obj/Debug/net8.0-windows/Flek.csproj.AssemblyReference.cache
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
||||
5303d2d9e9b087f3b41f2a0d00f89bdbaa085584773ccd67f240efa08dd67a7b
|
||||
20
obj/Debug/net8.0-windows/Flek.csproj.FileListAbsolute.txt
Normal file
20
obj/Debug/net8.0-windows/Flek.csproj.FileListAbsolute.txt
Normal 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\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
|
||||
D:\socketServer\SupperWebSocket\bin\Debug\net8.0-windows\Newtonsoft.Json.dll
|
||||
BIN
obj/Debug/net8.0-windows/Flek.csproj.GenerateResource.cache
Normal file
BIN
obj/Debug/net8.0-windows/Flek.csproj.GenerateResource.cache
Normal file
Binary file not shown.
0
obj/Debug/net8.0-windows/Flek.csproj.Up2Date
Normal file
0
obj/Debug/net8.0-windows/Flek.csproj.Up2Date
Normal file
43
obj/Debug/net8.0-windows/Flek.designer.deps.json
Normal file
43
obj/Debug/net8.0-windows/Flek.designer.deps.json
Normal 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"
|
||||
}
|
||||
}
|
||||
}
|
||||
25
obj/Debug/net8.0-windows/Flek.designer.runtimeconfig.json
Normal file
25
obj/Debug/net8.0-windows/Flek.designer.runtimeconfig.json
Normal 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
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
obj/Debug/net8.0-windows/Flek.dll
Normal file
BIN
obj/Debug/net8.0-windows/Flek.dll
Normal file
Binary file not shown.
1
obj/Debug/net8.0-windows/Flek.genruntimeconfig.cache
Normal file
1
obj/Debug/net8.0-windows/Flek.genruntimeconfig.cache
Normal file
@ -0,0 +1 @@
|
||||
d7ad7dffa97d4ed2b9c1944a2b1731c58c97c1287ecfa9899d3d26d5a275025c
|
||||
BIN
obj/Debug/net8.0-windows/Flek.pdb
Normal file
BIN
obj/Debug/net8.0-windows/Flek.pdb
Normal file
Binary file not shown.
25
obj/Debug/net8.0-windows/Flek8182.AssemblyInfo.cs
Normal file
25
obj/Debug/net8.0-windows/Flek8182.AssemblyInfo.cs
Normal file
@ -0,0 +1,25 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
// 运行时版本:4.0.30319.42000
|
||||
//
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
// 重新生成代码,这些更改将会丢失。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Flek8182")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("Flek8182")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("Flek8182")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
|
||||
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
|
||||
|
||||
// 由 MSBuild WriteCodeFragment 类生成。
|
||||
|
||||
@ -0,0 +1 @@
|
||||
98235c2e72fe25e5b8abef045e1a422303c77cdcc4b4e41d144b5a1f1d8d2c07
|
||||
@ -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 = Flek8182
|
||||
build_property.ProjectDir = D:\socketServer\8182socket\
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.CsWinRTUseWindowsUIXamlProjections = false
|
||||
build_property.EffectiveAnalysisLevelStyle = 8.0
|
||||
build_property.EnableCodeStyleSeverity =
|
||||
10
obj/Debug/net8.0-windows/Flek8182.GlobalUsings.g.cs
Normal file
10
obj/Debug/net8.0-windows/Flek8182.GlobalUsings.g.cs
Normal 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;
|
||||
BIN
obj/Debug/net8.0-windows/Flek8182.assets.cache
Normal file
BIN
obj/Debug/net8.0-windows/Flek8182.assets.cache
Normal file
Binary file not shown.
BIN
obj/Debug/net8.0-windows/Flek8182.csproj.AssemblyReference.cache
Normal file
BIN
obj/Debug/net8.0-windows/Flek8182.csproj.AssemblyReference.cache
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
||||
dfe79173e4346a48ec537e14456d9527faa5081eb5cff3798353e90a52ff2bb2
|
||||
@ -0,0 +1,20 @@
|
||||
D:\socketServer\8182socket\bin\Debug\net8.0-windows\Flek8182.exe
|
||||
D:\socketServer\8182socket\bin\Debug\net8.0-windows\Flek8182.deps.json
|
||||
D:\socketServer\8182socket\bin\Debug\net8.0-windows\Flek8182.runtimeconfig.json
|
||||
D:\socketServer\8182socket\bin\Debug\net8.0-windows\Flek8182.dll
|
||||
D:\socketServer\8182socket\bin\Debug\net8.0-windows\Flek8182.pdb
|
||||
D:\socketServer\8182socket\bin\Debug\net8.0-windows\Fleck.dll
|
||||
D:\socketServer\8182socket\bin\Debug\net8.0-windows\Newtonsoft.Json.dll
|
||||
D:\socketServer\8182socket\obj\Debug\net8.0-windows\Flek8182.csproj.AssemblyReference.cache
|
||||
D:\socketServer\8182socket\obj\Debug\net8.0-windows\SupperWebSocket.Form1.resources
|
||||
D:\socketServer\8182socket\obj\Debug\net8.0-windows\Flek8182.csproj.GenerateResource.cache
|
||||
D:\socketServer\8182socket\obj\Debug\net8.0-windows\Flek8182.GeneratedMSBuildEditorConfig.editorconfig
|
||||
D:\socketServer\8182socket\obj\Debug\net8.0-windows\Flek8182.AssemblyInfoInputs.cache
|
||||
D:\socketServer\8182socket\obj\Debug\net8.0-windows\Flek8182.AssemblyInfo.cs
|
||||
D:\socketServer\8182socket\obj\Debug\net8.0-windows\Flek8182.csproj.CoreCompileInputs.cache
|
||||
D:\socketServer\8182socket\obj\Debug\net8.0-windows\Flek8182.csproj.Up2Date
|
||||
D:\socketServer\8182socket\obj\Debug\net8.0-windows\Flek8182.dll
|
||||
D:\socketServer\8182socket\obj\Debug\net8.0-windows\refint\Flek8182.dll
|
||||
D:\socketServer\8182socket\obj\Debug\net8.0-windows\Flek8182.pdb
|
||||
D:\socketServer\8182socket\obj\Debug\net8.0-windows\Flek8182.genruntimeconfig.cache
|
||||
D:\socketServer\8182socket\obj\Debug\net8.0-windows\ref\Flek8182.dll
|
||||
BIN
obj/Debug/net8.0-windows/Flek8182.csproj.GenerateResource.cache
Normal file
BIN
obj/Debug/net8.0-windows/Flek8182.csproj.GenerateResource.cache
Normal file
Binary file not shown.
0
obj/Debug/net8.0-windows/Flek8182.csproj.Up2Date
Normal file
0
obj/Debug/net8.0-windows/Flek8182.csproj.Up2Date
Normal file
43
obj/Debug/net8.0-windows/Flek8182.designer.deps.json
Normal file
43
obj/Debug/net8.0-windows/Flek8182.designer.deps.json
Normal 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"
|
||||
}
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user