diff --git a/backend/IM_API/Hubs/ChatHub.cs b/backend/IM_API/Hubs/ChatHub.cs new file mode 100644 index 0000000..6211181 --- /dev/null +++ b/backend/IM_API/Hubs/ChatHub.cs @@ -0,0 +1,27 @@ +using IM_API.Interface.Services; +using Microsoft.AspNetCore.SignalR; +using System.Security.Claims; + +namespace IM_API.Hubs +{ + public class ChatHub:Hub + { + private IJWTService _JWTService; + public ChatHub(IJWTService jWTService) + { + _JWTService = jWTService; + } + + public override Task OnConnectedAsync() + { + var userIdStr = Context.User.FindFirstValue(ClaimTypes.NameIdentifier); + int userId = int.Parse(userIdStr); + Console.WriteLine(userId); + return base.OnConnectedAsync(); + } + public async Task SendMessage(string user,string message) + { + await Clients.Caller.SendAsync("ReceiveMessage", "qwfqwfqw","test"); + } + } +} diff --git a/backend/IM_API/IM_API.csproj b/backend/IM_API/IM_API.csproj index d2ea7fb..7d9b73e 100644 --- a/backend/IM_API/IM_API.csproj +++ b/backend/IM_API/IM_API.csproj @@ -13,6 +13,7 @@ + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/backend/IM_API/Program.cs b/backend/IM_API/Program.cs index 8c2eab4..f4d4a6f 100644 --- a/backend/IM_API/Program.cs +++ b/backend/IM_API/Program.cs @@ -1,5 +1,6 @@ using IM_API.Configs; +using IM_API.Hubs; using IM_API.Models; using Microsoft.AspNetCore.Authentication.JwtBearer; using Microsoft.EntityFrameworkCore; @@ -42,7 +43,6 @@ namespace IM_API policy.AllowAnyHeader() .AllowAnyMethod() .AllowAnyHeader() - .AllowAnyOrigin() .AllowAnyOrigin(); }); }); @@ -104,6 +104,8 @@ namespace IM_API var app = builder.Build(); + app.UseCors(); + // Configure the HTTP request pipeline. if (app.Environment.IsDevelopment()) { @@ -120,6 +122,8 @@ namespace IM_API app.MapControllers(); + app.MapHub("/chat").RequireCors(); + app.Run(); } } diff --git a/backend/SignalRTest/.vs/ProjectEvaluation/signalrtest.metadata.v9.bin b/backend/SignalRTest/.vs/ProjectEvaluation/signalrtest.metadata.v9.bin new file mode 100644 index 0000000..515c4f7 Binary files /dev/null and b/backend/SignalRTest/.vs/ProjectEvaluation/signalrtest.metadata.v9.bin differ diff --git a/backend/SignalRTest/.vs/ProjectEvaluation/signalrtest.projects.v9.bin b/backend/SignalRTest/.vs/ProjectEvaluation/signalrtest.projects.v9.bin new file mode 100644 index 0000000..5ecf14e Binary files /dev/null and b/backend/SignalRTest/.vs/ProjectEvaluation/signalrtest.projects.v9.bin differ diff --git a/backend/SignalRTest/.vs/ProjectEvaluation/signalrtest.strings.v9.bin b/backend/SignalRTest/.vs/ProjectEvaluation/signalrtest.strings.v9.bin new file mode 100644 index 0000000..8f10075 Binary files /dev/null and b/backend/SignalRTest/.vs/ProjectEvaluation/signalrtest.strings.v9.bin differ diff --git a/backend/SignalRTest/.vs/SignalRTest/CopilotIndices/17.14.995.13737/CodeChunks.db b/backend/SignalRTest/.vs/SignalRTest/CopilotIndices/17.14.995.13737/CodeChunks.db new file mode 100644 index 0000000..e3b7b86 Binary files /dev/null and b/backend/SignalRTest/.vs/SignalRTest/CopilotIndices/17.14.995.13737/CodeChunks.db differ diff --git a/backend/SignalRTest/.vs/SignalRTest/CopilotIndices/17.14.995.13737/SemanticSymbols.db b/backend/SignalRTest/.vs/SignalRTest/CopilotIndices/17.14.995.13737/SemanticSymbols.db new file mode 100644 index 0000000..2c135d3 Binary files /dev/null and b/backend/SignalRTest/.vs/SignalRTest/CopilotIndices/17.14.995.13737/SemanticSymbols.db differ diff --git a/backend/SignalRTest/.vs/SignalRTest/DesignTimeBuild/.dtbcache.v2 b/backend/SignalRTest/.vs/SignalRTest/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000..e04f082 Binary files /dev/null and b/backend/SignalRTest/.vs/SignalRTest/DesignTimeBuild/.dtbcache.v2 differ diff --git a/backend/SignalRTest/.vs/SignalRTest/FileContentIndex/1c4991db-4934-4d46-a536-c061f2b8883a.vsidx b/backend/SignalRTest/.vs/SignalRTest/FileContentIndex/1c4991db-4934-4d46-a536-c061f2b8883a.vsidx new file mode 100644 index 0000000..6dd8938 Binary files /dev/null and b/backend/SignalRTest/.vs/SignalRTest/FileContentIndex/1c4991db-4934-4d46-a536-c061f2b8883a.vsidx differ diff --git a/backend/SignalRTest/.vs/SignalRTest/FileContentIndex/54b38182-994e-4e72-9485-38a2e159fade.vsidx b/backend/SignalRTest/.vs/SignalRTest/FileContentIndex/54b38182-994e-4e72-9485-38a2e159fade.vsidx new file mode 100644 index 0000000..2a3f669 Binary files /dev/null and b/backend/SignalRTest/.vs/SignalRTest/FileContentIndex/54b38182-994e-4e72-9485-38a2e159fade.vsidx differ diff --git a/backend/SignalRTest/.vs/SignalRTest/FileContentIndex/ec86fa31-80ef-4881-99f5-8f1b6a13c76c.vsidx b/backend/SignalRTest/.vs/SignalRTest/FileContentIndex/ec86fa31-80ef-4881-99f5-8f1b6a13c76c.vsidx new file mode 100644 index 0000000..b19a5c2 Binary files /dev/null and b/backend/SignalRTest/.vs/SignalRTest/FileContentIndex/ec86fa31-80ef-4881-99f5-8f1b6a13c76c.vsidx differ diff --git a/backend/SignalRTest/.vs/SignalRTest/v17/.futdcache.v2 b/backend/SignalRTest/.vs/SignalRTest/v17/.futdcache.v2 new file mode 100644 index 0000000..8c2ce01 Binary files /dev/null and b/backend/SignalRTest/.vs/SignalRTest/v17/.futdcache.v2 differ diff --git a/backend/SignalRTest/.vs/SignalRTest/v17/.suo b/backend/SignalRTest/.vs/SignalRTest/v17/.suo new file mode 100644 index 0000000..ed5641e Binary files /dev/null and b/backend/SignalRTest/.vs/SignalRTest/v17/.suo differ diff --git a/backend/SignalRTest/.vs/SignalRTest/v17/DocumentLayout.backup.json b/backend/SignalRTest/.vs/SignalRTest/v17/DocumentLayout.backup.json new file mode 100644 index 0000000..05a3c84 --- /dev/null +++ b/backend/SignalRTest/.vs/SignalRTest/v17/DocumentLayout.backup.json @@ -0,0 +1,57 @@ +{ + "Version": 1, + "WorkspaceRootPath": "C:\\Users\\nanxun\\Documents\\IM\\backend\\SignalRTest\\", + "Documents": [ + { + "AbsoluteMoniker": "D:0:0:{266B86EE-17CF-4DD4-84C8-8CE3E2640A70}|SignalRTest.csproj|C:\\Users\\nanxun\\Documents\\IM\\backend\\SignalRTest\\form1.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}|Form", + "RelativeMoniker": "D:0:0:{266B86EE-17CF-4DD4-84C8-8CE3E2640A70}|SignalRTest.csproj|solutionrelative:form1.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}|Form" + }, + { + "AbsoluteMoniker": "D:0:0:{266B86EE-17CF-4DD4-84C8-8CE3E2640A70}|SignalRTest.csproj|c:\\users\\nanxun\\documents\\im\\backend\\signalrtest\\form1.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "RelativeMoniker": "D:0:0:{266B86EE-17CF-4DD4-84C8-8CE3E2640A70}|SignalRTest.csproj|solutionrelative:form1.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" + } + ], + "DocumentGroupContainers": [ + { + "Orientation": 0, + "VerticalTabListWidth": 256, + "DocumentGroups": [ + { + "DockedWidth": 200, + "SelectedChildIndex": 1, + "Children": [ + { + "$type": "Bookmark", + "Name": "ST:0:0:{1c4feeaa-4718-4aa9-859d-94ce25d182ba}" + }, + { + "$type": "Document", + "DocumentIndex": 0, + "Title": "Form1.cs [\u8BBE\u8BA1]", + "DocumentMoniker": "C:\\Users\\nanxun\\Documents\\IM\\backend\\SignalRTest\\Form1.cs", + "RelativeDocumentMoniker": "Form1.cs", + "ToolTip": "C:\\Users\\nanxun\\Documents\\IM\\backend\\SignalRTest\\Form1.cs [\u8BBE\u8BA1]", + "RelativeToolTip": "Form1.cs [\u8BBE\u8BA1]", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", + "WhenOpened": "2025-12-06T07:30:28.584Z", + "EditorCaption": " [\u8BBE\u8BA1]" + }, + { + "$type": "Document", + "DocumentIndex": 1, + "Title": "Form1.cs", + "DocumentMoniker": "C:\\Users\\nanxun\\Documents\\IM\\backend\\SignalRTest\\Form1.cs", + "RelativeDocumentMoniker": "Form1.cs", + "ToolTip": "C:\\Users\\nanxun\\Documents\\IM\\backend\\SignalRTest\\Form1.cs", + "RelativeToolTip": "Form1.cs", + "ViewState": "AgIAAA4AAAAAAAAAAAAuwBQAAAAJAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", + "WhenOpened": "2025-12-06T07:28:32.613Z", + "EditorCaption": "" + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/backend/SignalRTest/.vs/SignalRTest/v17/DocumentLayout.json b/backend/SignalRTest/.vs/SignalRTest/v17/DocumentLayout.json new file mode 100644 index 0000000..05a3c84 --- /dev/null +++ b/backend/SignalRTest/.vs/SignalRTest/v17/DocumentLayout.json @@ -0,0 +1,57 @@ +{ + "Version": 1, + "WorkspaceRootPath": "C:\\Users\\nanxun\\Documents\\IM\\backend\\SignalRTest\\", + "Documents": [ + { + "AbsoluteMoniker": "D:0:0:{266B86EE-17CF-4DD4-84C8-8CE3E2640A70}|SignalRTest.csproj|C:\\Users\\nanxun\\Documents\\IM\\backend\\SignalRTest\\form1.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}|Form", + "RelativeMoniker": "D:0:0:{266B86EE-17CF-4DD4-84C8-8CE3E2640A70}|SignalRTest.csproj|solutionrelative:form1.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}|Form" + }, + { + "AbsoluteMoniker": "D:0:0:{266B86EE-17CF-4DD4-84C8-8CE3E2640A70}|SignalRTest.csproj|c:\\users\\nanxun\\documents\\im\\backend\\signalrtest\\form1.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "RelativeMoniker": "D:0:0:{266B86EE-17CF-4DD4-84C8-8CE3E2640A70}|SignalRTest.csproj|solutionrelative:form1.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" + } + ], + "DocumentGroupContainers": [ + { + "Orientation": 0, + "VerticalTabListWidth": 256, + "DocumentGroups": [ + { + "DockedWidth": 200, + "SelectedChildIndex": 1, + "Children": [ + { + "$type": "Bookmark", + "Name": "ST:0:0:{1c4feeaa-4718-4aa9-859d-94ce25d182ba}" + }, + { + "$type": "Document", + "DocumentIndex": 0, + "Title": "Form1.cs [\u8BBE\u8BA1]", + "DocumentMoniker": "C:\\Users\\nanxun\\Documents\\IM\\backend\\SignalRTest\\Form1.cs", + "RelativeDocumentMoniker": "Form1.cs", + "ToolTip": "C:\\Users\\nanxun\\Documents\\IM\\backend\\SignalRTest\\Form1.cs [\u8BBE\u8BA1]", + "RelativeToolTip": "Form1.cs [\u8BBE\u8BA1]", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", + "WhenOpened": "2025-12-06T07:30:28.584Z", + "EditorCaption": " [\u8BBE\u8BA1]" + }, + { + "$type": "Document", + "DocumentIndex": 1, + "Title": "Form1.cs", + "DocumentMoniker": "C:\\Users\\nanxun\\Documents\\IM\\backend\\SignalRTest\\Form1.cs", + "RelativeDocumentMoniker": "Form1.cs", + "ToolTip": "C:\\Users\\nanxun\\Documents\\IM\\backend\\SignalRTest\\Form1.cs", + "RelativeToolTip": "Form1.cs", + "ViewState": "AgIAAA4AAAAAAAAAAAAuwBQAAAAJAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", + "WhenOpened": "2025-12-06T07:28:32.613Z", + "EditorCaption": "" + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/backend/SignalRTest/Form1.Designer.cs b/backend/SignalRTest/Form1.Designer.cs new file mode 100644 index 0000000..5878f90 --- /dev/null +++ b/backend/SignalRTest/Form1.Designer.cs @@ -0,0 +1,206 @@ +namespace SignalRTest +{ + partial class Form1 + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + components = new System.ComponentModel.Container(); + button1 = new Button(); + button2 = new Button(); + txtUrl = new TextBox(); + TokenTxt = new TextBox(); + UrlLab = new Label(); + label2 = new Label(); + Historylab = new RichTextBox(); + label3 = new Label(); + MethodTxt = new TextBox(); + label4 = new Label(); + SendMsg = new Button(); + ParamsTxt = new TextBox(); + label5 = new Label(); + toolTip1 = new ToolTip(components); + SuspendLayout(); + // + // button1 + // + button1.Location = new Point(143, 294); + button1.Name = "button1"; + button1.Size = new Size(94, 29); + button1.TabIndex = 0; + button1.Text = "连接"; + button1.UseVisualStyleBackColor = true; + button1.Click += button1_Click; + // + // button2 + // + button2.Location = new Point(278, 294); + button2.Name = "button2"; + button2.Size = new Size(94, 29); + button2.TabIndex = 1; + button2.Text = "断开连接"; + button2.UseVisualStyleBackColor = true; + button2.Click += button2_Click; + // + // txtUrl + // + txtUrl.Location = new Point(112, 39); + txtUrl.Name = "txtUrl"; + txtUrl.Size = new Size(303, 27); + txtUrl.TabIndex = 2; + txtUrl.Text = "http://localhost:5202/chat"; + // + // TokenTxt + // + TokenTxt.Location = new Point(553, 39); + TokenTxt.Name = "TokenTxt"; + TokenTxt.Size = new Size(125, 27); + TokenTxt.TabIndex = 3; + // + // UrlLab + // + UrlLab.AutoSize = true; + UrlLab.Location = new Point(31, 42); + UrlLab.Name = "UrlLab"; + UrlLab.Size = new Size(38, 20); + UrlLab.TabIndex = 4; + UrlLab.Text = "URL"; + // + // label2 + // + label2.AutoSize = true; + label2.Location = new Point(475, 42); + label2.Name = "label2"; + label2.Size = new Size(69, 20); + label2.TabIndex = 5; + label2.Text = "登录凭证"; + // + // Historylab + // + Historylab.Location = new Point(112, 85); + Historylab.Name = "Historylab"; + Historylab.Size = new Size(303, 188); + Historylab.TabIndex = 6; + Historylab.Text = ""; + // + // label3 + // + label3.AutoSize = true; + label3.Location = new Point(16, 165); + label3.Name = "label3"; + label3.Size = new Size(69, 20); + label3.TabIndex = 7; + label3.Text = "消息历史"; + // + // MethodTxt + // + MethodTxt.Location = new Point(553, 182); + MethodTxt.Name = "MethodTxt"; + MethodTxt.Size = new Size(125, 27); + MethodTxt.TabIndex = 8; + toolTip1.SetToolTip(MethodTxt, "后端hub内对应方法名,大小写敏感"); + // + // label4 + // + label4.AutoSize = true; + label4.Location = new Point(475, 182); + label4.Name = "label4"; + label4.Size = new Size(39, 20); + label4.TabIndex = 9; + label4.Text = "方法"; + toolTip1.SetToolTip(label4, "后端hub内对应方法名,大小写敏感"); + // + // SendMsg + // + SendMsg.Location = new Point(705, 244); + SendMsg.Name = "SendMsg"; + SendMsg.Size = new Size(94, 29); + SendMsg.TabIndex = 10; + SendMsg.Text = "发送"; + SendMsg.UseVisualStyleBackColor = true; + SendMsg.Click += SendMsg_Click; + // + // ParamsTxt + // + ParamsTxt.Location = new Point(553, 246); + ParamsTxt.Name = "ParamsTxt"; + ParamsTxt.Size = new Size(125, 27); + ParamsTxt.TabIndex = 11; + toolTip1.SetToolTip(ParamsTxt, "hub方法对应参数,请使用以下格式:[参数1,参数2,参数3,...]"); + // + // label5 + // + label5.AutoSize = true; + label5.Location = new Point(475, 253); + label5.Name = "label5"; + label5.Size = new Size(39, 20); + label5.TabIndex = 12; + label5.Text = "参数"; + toolTip1.SetToolTip(label5, "hub方法对应参数,请使用以下格式:[参数1,参数2,参数3,...]"); + // + // Form1 + // + AutoScaleDimensions = new SizeF(9F, 20F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(800, 450); + Controls.Add(label5); + Controls.Add(ParamsTxt); + Controls.Add(SendMsg); + Controls.Add(label4); + Controls.Add(MethodTxt); + Controls.Add(label3); + Controls.Add(Historylab); + Controls.Add(label2); + Controls.Add(UrlLab); + Controls.Add(TokenTxt); + Controls.Add(txtUrl); + Controls.Add(button2); + Controls.Add(button1); + Name = "Form1"; + Text = "SignalR调试工具"; + Load += Form1_Load; + ResumeLayout(false); + PerformLayout(); + } + + #endregion + + private Button button1; + private Button button2; + private TextBox txtUrl; + private TextBox TokenTxt; + private Label UrlLab; + private Label label2; + private RichTextBox Historylab; + private Label label3; + private TextBox MethodTxt; + private Label label4; + private Button SendMsg; + private TextBox ParamsTxt; + private Label label5; + private ToolTip toolTip1; + } +} diff --git a/backend/SignalRTest/Form1.cs b/backend/SignalRTest/Form1.cs new file mode 100644 index 0000000..8d7a9b6 --- /dev/null +++ b/backend/SignalRTest/Form1.cs @@ -0,0 +1,143 @@ +using Microsoft.AspNetCore.SignalR.Client; +using System.Text.Json; +using System.Windows.Forms; + +namespace SignalRTest +{ + public partial class Form1 : Form + { + private HubConnection _connection; + public Form1() + { + InitializeComponent(); + } + + private void Form1_Load(object sender, EventArgs e) + { + + } + + private async void button1_Click(object sender, EventArgs e) + { + try + { + _connection = new HubConnectionBuilder() + .WithUrl(txtUrl.Text, options => + { + options.AccessTokenProvider = () => + Task.FromResult(TokenTxt.Text); + }) + .WithAutomaticReconnect() + .Build(); + + _connection.On("ReceiveMessage", (user, message) => + { + Historylab.Invoke(new Action(() => + { + // ƶ굽ıĩβ + Historylab.SelectionStart = Historylab.TextLength; + Historylab.SelectionLength = 0; + + Historylab.SelectionColor = Color.Green; + Historylab.AppendText("Ϣ" + message + "\n"); + })); + }); + + _connection.Reconnecting += (ex) => + { + // ƶ굽ıĩβ + Historylab.SelectionStart = Historylab.TextLength; + Historylab.SelectionLength = 0; + + Historylab.SelectionColor = Color.Blue; + Historylab.AppendText("..." + "\n"); + return System.Threading.Tasks.Task.CompletedTask; + }; + + _connection.Reconnected += (id) => + { + // ƶ굽ıĩβ + Historylab.SelectionStart = Historylab.TextLength; + Historylab.SelectionLength = 0; + + Historylab.SelectionColor = Color.Blue; + Historylab.AppendText("ɹ" + "\n"); + return System.Threading.Tasks.Task.CompletedTask; + }; + + await _connection.StartAsync(); + // ƶ굽ıĩβ + Historylab.SelectionStart = Historylab.TextLength; + Historylab.SelectionLength = 0; + + Historylab.SelectionColor = Color.Blue; + Historylab.AppendText("ӳɹ" + "\n"); + } + catch (Exception ex) + { + // ƶ굽ıĩβ + Historylab.SelectionStart = Historylab.TextLength; + Historylab.SelectionLength = 0; + + Historylab.SelectionColor = Color.Blue; + Historylab.AppendText("ʧܣ" + ex.Message + "\n"); + } + } + + private async void button2_Click(object sender, EventArgs e) + { + if (_connection != null) + { + await _connection.StopAsync(); + await _connection.DisposeAsync(); + // ƶ굽ıĩβ + Historylab.SelectionStart = Historylab.TextLength; + Historylab.SelectionLength = 0; + + Historylab.SelectionColor = Color.Blue; + Historylab.AppendText("Ͽӣ" + "\n"); + } + } + + private async void SendMsg_Click(object sender, EventArgs e) + { + if (_connection == null || _connection.State != HubConnectionState.Connected) + { + // ƶ굽ıĩβ + Historylab.SelectionStart = Historylab.TextLength; + Historylab.SelectionLength = 0; + + Historylab.SelectionColor = Color.Blue; + Historylab.AppendText("ӣ" + "\n"); + return; + } + + try + { + var method = MethodTxt.Text.Trim(); + var paramText = ParamsTxt.Text.Trim(); + + object[] parameters = string.IsNullOrWhiteSpace(paramText) + ? Array.Empty() + : JsonSerializer.Deserialize(paramText); + // ƶ굽ıĩβ + Historylab.SelectionStart = Historylab.TextLength; + Historylab.SelectionLength = 0; + + Historylab.SelectionColor = Color.Red; + Historylab.AppendText($"Invoke: {method} {paramText}" + "\n"); + await _connection.InvokeCoreAsync(method,parameters); + + } + catch (Exception ex) + { + // ƶ굽ıĩβ + Historylab.SelectionStart = Historylab.TextLength; + Historylab.SelectionLength = 0; + + Historylab.SelectionColor = Color.Blue; + Historylab.AppendText($"ʧ: {ex.Message}" + "\n"); + } + } + } +} diff --git a/backend/SignalRTest/Form1.resx b/backend/SignalRTest/Form1.resx new file mode 100644 index 0000000..dcfd08d --- /dev/null +++ b/backend/SignalRTest/Form1.resx @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 17, 17 + + \ No newline at end of file diff --git a/backend/SignalRTest/Program.cs b/backend/SignalRTest/Program.cs new file mode 100644 index 0000000..66a6f3b --- /dev/null +++ b/backend/SignalRTest/Program.cs @@ -0,0 +1,17 @@ +namespace SignalRTest +{ + internal static class Program + { + /// + /// The main entry point for the application. + /// + [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()); + } + } +} \ No newline at end of file diff --git a/backend/SignalRTest/Properties/PublishProfiles/FolderProfile.pubxml b/backend/SignalRTest/Properties/PublishProfiles/FolderProfile.pubxml new file mode 100644 index 0000000..5cdd245 --- /dev/null +++ b/backend/SignalRTest/Properties/PublishProfiles/FolderProfile.pubxml @@ -0,0 +1,16 @@ + + + + + Release + Any CPU + bin\Release\net8.0-windows\publish\win-x64\ + FileSystem + <_TargetId>Folder + net8.0-windows + win-x64 + true + true + false + + \ No newline at end of file diff --git a/backend/SignalRTest/Properties/PublishProfiles/FolderProfile.pubxml.user b/backend/SignalRTest/Properties/PublishProfiles/FolderProfile.pubxml.user new file mode 100644 index 0000000..5bea8d3 --- /dev/null +++ b/backend/SignalRTest/Properties/PublishProfiles/FolderProfile.pubxml.user @@ -0,0 +1,8 @@ + + + + + True|2025-12-06T11:34:00.2606316Z||;True|2025-12-06T19:25:07.4627450+08:00||; + + + \ No newline at end of file diff --git a/backend/SignalRTest/SignalRTest.csproj b/backend/SignalRTest/SignalRTest.csproj new file mode 100644 index 0000000..2ddba81 --- /dev/null +++ b/backend/SignalRTest/SignalRTest.csproj @@ -0,0 +1,15 @@ + + + + WinExe + net8.0-windows + enable + true + enable + + + + + + + \ No newline at end of file diff --git a/backend/SignalRTest/SignalRTest.csproj.user b/backend/SignalRTest/SignalRTest.csproj.user new file mode 100644 index 0000000..8457d4d --- /dev/null +++ b/backend/SignalRTest/SignalRTest.csproj.user @@ -0,0 +1,11 @@ + + + + <_LastSelectedProfileId>C:\Users\nanxun\Documents\IM\backend\SignalRTest\Properties\PublishProfiles\FolderProfile.pubxml + + + + Form + + + \ No newline at end of file diff --git a/backend/SignalRTest/SignalRTest.sln b/backend/SignalRTest/SignalRTest.sln new file mode 100644 index 0000000..753d829 --- /dev/null +++ b/backend/SignalRTest/SignalRTest.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.14.36408.4 d17.14 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SignalRTest", "SignalRTest.csproj", "{266B86EE-17CF-4DD4-84C8-8CE3E2640A70}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {266B86EE-17CF-4DD4-84C8-8CE3E2640A70}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {266B86EE-17CF-4DD4-84C8-8CE3E2640A70}.Debug|Any CPU.Build.0 = Debug|Any CPU + {266B86EE-17CF-4DD4-84C8-8CE3E2640A70}.Release|Any CPU.ActiveCfg = Release|Any CPU + {266B86EE-17CF-4DD4-84C8-8CE3E2640A70}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {2D41DBBA-147E-49F2-A781-E7CD9E85666F} + EndGlobalSection +EndGlobal diff --git a/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.AspNetCore.Connections.Abstractions.dll b/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.AspNetCore.Connections.Abstractions.dll new file mode 100644 index 0000000..644195e Binary files /dev/null and b/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.AspNetCore.Connections.Abstractions.dll differ diff --git a/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.AspNetCore.Http.Connections.Client.dll b/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.AspNetCore.Http.Connections.Client.dll new file mode 100644 index 0000000..c9dcfa0 Binary files /dev/null and b/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.AspNetCore.Http.Connections.Client.dll differ diff --git a/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.AspNetCore.Http.Connections.Common.dll b/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.AspNetCore.Http.Connections.Common.dll new file mode 100644 index 0000000..90fe0a0 Binary files /dev/null and b/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.AspNetCore.Http.Connections.Common.dll differ diff --git a/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.AspNetCore.SignalR.Client.Core.dll b/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.AspNetCore.SignalR.Client.Core.dll new file mode 100644 index 0000000..b370257 Binary files /dev/null and b/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.AspNetCore.SignalR.Client.Core.dll differ diff --git a/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.AspNetCore.SignalR.Client.dll b/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.AspNetCore.SignalR.Client.dll new file mode 100644 index 0000000..efc5f60 Binary files /dev/null and b/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.AspNetCore.SignalR.Client.dll differ diff --git a/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.AspNetCore.SignalR.Common.dll b/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.AspNetCore.SignalR.Common.dll new file mode 100644 index 0000000..471a9d2 Binary files /dev/null and b/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.AspNetCore.SignalR.Common.dll differ diff --git a/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.AspNetCore.SignalR.Protocols.Json.dll b/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.AspNetCore.SignalR.Protocols.Json.dll new file mode 100644 index 0000000..a6664f8 Binary files /dev/null and b/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.AspNetCore.SignalR.Protocols.Json.dll differ diff --git a/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.Bcl.AsyncInterfaces.dll b/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100644 index 0000000..3bbbdc5 Binary files /dev/null and b/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.Bcl.TimeProvider.dll b/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.Bcl.TimeProvider.dll new file mode 100644 index 0000000..ca7722c Binary files /dev/null and b/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.Bcl.TimeProvider.dll differ diff --git a/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100644 index 0000000..e4ae5bc Binary files /dev/null and b/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.Extensions.DependencyInjection.dll b/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..20a0e7e Binary files /dev/null and b/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.Extensions.Features.dll b/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.Extensions.Features.dll new file mode 100644 index 0000000..dfd5e3d Binary files /dev/null and b/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.Extensions.Features.dll differ diff --git a/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.Extensions.Logging.Abstractions.dll b/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..70fa378 Binary files /dev/null and b/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.Extensions.Logging.dll b/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.Extensions.Logging.dll new file mode 100644 index 0000000..1886a54 Binary files /dev/null and b/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.Extensions.Logging.dll differ diff --git a/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.Extensions.Options.dll b/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.Extensions.Options.dll new file mode 100644 index 0000000..1217d60 Binary files /dev/null and b/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.Extensions.Options.dll differ diff --git a/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.Extensions.Primitives.dll b/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.Extensions.Primitives.dll new file mode 100644 index 0000000..37eecdb Binary files /dev/null and b/backend/SignalRTest/bin/Debug/net8.0-windows/Microsoft.Extensions.Primitives.dll differ diff --git a/backend/SignalRTest/bin/Debug/net8.0-windows/SignalRTest.deps.json b/backend/SignalRTest/bin/Debug/net8.0-windows/SignalRTest.deps.json new file mode 100644 index 0000000..8a84b48 --- /dev/null +++ b/backend/SignalRTest/bin/Debug/net8.0-windows/SignalRTest.deps.json @@ -0,0 +1,419 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "SignalRTest/1.0.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Client": "10.0.0" + }, + "runtime": { + "SignalRTest.dll": {} + } + }, + "Microsoft.AspNetCore.Connections.Abstractions/10.0.0": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "10.0.0", + "Microsoft.Extensions.Features": "10.0.0", + "System.IO.Pipelines": "10.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.AspNetCore.Connections.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.AspNetCore.Http.Connections.Client/10.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Connections.Common": "10.0.0", + "Microsoft.Extensions.Logging.Abstractions": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0", + "System.Net.ServerSentEvents": "10.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Client.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.AspNetCore.Http.Connections.Common/10.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "10.0.0", + "System.Text.Json": "10.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.AspNetCore.SignalR.Client/10.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Connections.Client": "10.0.0", + "Microsoft.AspNetCore.SignalR.Client.Core": "10.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.AspNetCore.SignalR.Client.Core/10.0.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "10.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "10.0.0", + "Microsoft.Bcl.TimeProvider": "10.0.0", + "Microsoft.Extensions.DependencyInjection": "10.0.0", + "Microsoft.Extensions.Logging": "10.0.0", + "System.Threading.Channels": "10.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.Core.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.AspNetCore.SignalR.Common/10.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0", + "System.Text.Json": "10.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/10.0.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "10.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/10.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Bcl.TimeProvider/10.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Bcl.TimeProvider.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.DependencyInjection/10.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Features/10.0.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Features.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Logging/10.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "10.0.0", + "Microsoft.Extensions.Logging.Abstractions": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", + "System.Diagnostics.DiagnosticSource": "10.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Options/10.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", + "Microsoft.Extensions.Primitives": "10.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Primitives/10.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "System.Diagnostics.DiagnosticSource/10.0.0": { + "runtime": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "System.IO.Pipelines/10.0.0": { + "runtime": { + "lib/net8.0/System.IO.Pipelines.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "System.Net.ServerSentEvents/10.0.0": { + "runtime": { + "lib/net8.0/System.Net.ServerSentEvents.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "System.Text.Encodings.Web/10.0.0": { + "runtime": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + }, + "runtimeTargets": { + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll": { + "rid": "browser", + "assetType": "runtime", + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "System.Text.Json/10.0.0": { + "dependencies": { + "System.IO.Pipelines": "10.0.0", + "System.Text.Encodings.Web": "10.0.0" + }, + "runtime": { + "lib/net8.0/System.Text.Json.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "System.Threading.Channels/10.0.0": { + "runtime": { + "lib/net8.0/System.Threading.Channels.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + } + } + }, + "libraries": { + "SignalRTest/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Connections.Abstractions/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MPXDzUknemj+sCL/LYOLvU/qIX3o9zCJtKXu9jcwNMQiOvwuv75lV20p3qGENA/ynTH7hOPFqDUEGBT30IvhEA==", + "path": "microsoft.aspnetcore.connections.abstractions/10.0.0", + "hashPath": "microsoft.aspnetcore.connections.abstractions.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Connections.Client/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7nSER+de0V6mWTcdUqBJZlm1XMz+Y2mTHzL3B/msVF+JfSXXZtKNVC18TI7AeSz4PD//b5qpy8n0RQEIVByfJw==", + "path": "microsoft.aspnetcore.http.connections.client/10.0.0", + "hashPath": "microsoft.aspnetcore.http.connections.client.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Connections.Common/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VaEGwazymaL4NB+JoAdvM/IaFg5IIg1WXtVgKmD/y3Et2qnPxolAlMXYJrI8k1EPjmoIcXQZHTj47MskRRyRIA==", + "path": "microsoft.aspnetcore.http.connections.common/10.0.0", + "hashPath": "microsoft.aspnetcore.http.connections.common.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Client/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XHPNPLqPX7CVJ5JuaumTP58sAVrQG4TqFKLFOtN1mZIwgEUHKwtDeMwL0G8dIvy9zcpi7os4CYAHvA1bUUTzVw==", + "path": "microsoft.aspnetcore.signalr.client/10.0.0", + "hashPath": "microsoft.aspnetcore.signalr.client.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Client.Core/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MrXjT7YNV0e1Jb3Hai6kX/Ot7X2SlONHv5IC5XNGeycTTLu3qitJ7DXZUsPPZs6yanWIOsIKjPEY58ARHdRKGg==", + "path": "microsoft.aspnetcore.signalr.client.core/10.0.0", + "hashPath": "microsoft.aspnetcore.signalr.client.core.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Common/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pyG6FLV4/EeOQeZ30ra4aUYycJQPT/9ddB91aplMKwEGT5KbEs//WMqMObVGvDREP508EB4QUAKzacSVi30nxw==", + "path": "microsoft.aspnetcore.signalr.common/10.0.0", + "hashPath": "microsoft.aspnetcore.signalr.common.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-L++SCI4pcG9uo7HTzAFTX33BsZFDHCdukJIK+/S4tgH/kcJlPTp9QS96E4zgOuzXRDrzaunwbFSS2DElTmWGRA==", + "path": "microsoft.aspnetcore.signalr.protocols.json/10.0.0", + "hashPath": "microsoft.aspnetcore.signalr.protocols.json.10.0.0.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vFuwSLj9QJBbNR0NeNO4YVASUbokxs+i/xbuu8B+Fs4FAZg5QaFa6eGrMaRqTzzNI5tAb97T7BhSxtLckFyiRA==", + "path": "microsoft.bcl.asyncinterfaces/10.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.10.0.0.nupkg.sha512" + }, + "Microsoft.Bcl.TimeProvider/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bUubrBD6tRJE3V1kvRloYc6NymH3R5oFKjAS9e0ELNx6u0ZR+zjps9dDQyjgqN/rArzl7f+21KGszj3YRN7F2Q==", + "path": "microsoft.bcl.timeprovider/10.0.0", + "hashPath": "microsoft.bcl.timeprovider.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f0RBabswJq+gRu5a+hWIobrLWiUYPKMhCD9WO3sYBAdSy3FFH14LMvLVFZc2kPSCimBLxSuitUhsd6tb0TAY6A==", + "path": "microsoft.extensions.dependencyinjection/10.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-L3AdmZ1WOK4XXT5YFPEwyt0ep6l8lGIPs7F5OOBZc77Zqeo01Of7XXICy47628sdVl0v/owxYJTe86DTgFwKCA==", + "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Features/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kCFjPpfvz0K00xIpe7wJKre1gFJdNIu9+1BYJLklu3GWb+uU4HIjza0uMBQeFGZws9VJos9LeO+PUfvGcre+9g==", + "path": "microsoft.extensions.features/10.0.0", + "hashPath": "microsoft.extensions.features.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BStFkd5CcnEtarlcgYDBcFzGYCuuNMzPs02wN3WBsOFoYIEmYoUdAiU+au6opzoqfTYJsMTW00AeqDdnXH2CvA==", + "path": "microsoft.extensions.logging/10.0.0", + "hashPath": "microsoft.extensions.logging.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FU/IfjDfwaMuKr414SSQNTIti/69bHEMb+QKrskRb26oVqpx3lNFXMjs/RC9ZUuhBhcwDM2BwOgoMw+PZ+beqQ==", + "path": "microsoft.extensions.logging.abstractions/10.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8oCAgXOow5XDrY9HaXX1QmH3ORsyZO/ANVHBlhLyCeWTH5Sg4UuqZeOTWJi6484M+LqSx0RqQXDJtdYy2BNiLQ==", + "path": "microsoft.extensions.options/10.0.0", + "hashPath": "microsoft.extensions.options.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-inRnbpCS0nwO/RuoZIAqxQUuyjaknOOnCEZB55KSMMjRhl0RQDttSmLSGsUJN3RQ3ocf5NDLFd2mOQViHqMK5w==", + "path": "microsoft.extensions.primitives/10.0.0", + "hashPath": "microsoft.extensions.primitives.10.0.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0KdBK+h7G13PuOSC2R/DalAoFMvdYMznvGRuICtkdcUMXgl/gYXsG6z4yUvTxHSMACorWgHCU1Faq0KUHU6yAQ==", + "path": "system.diagnostics.diagnosticsource/10.0.0", + "hashPath": "system.diagnostics.diagnosticsource.10.0.0.nupkg.sha512" + }, + "System.IO.Pipelines/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M1eb3nfXntaRJPrrMVM9EFS8I1bDTnt0uvUS6QP/SicZf/ZZjydMD5NiXxfmwW/uQwaMDP/yX2P+zQN1NBHChg==", + "path": "system.io.pipelines/10.0.0", + "hashPath": "system.io.pipelines.10.0.0.nupkg.sha512" + }, + "System.Net.ServerSentEvents/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zRH5XXZfenw7bgn8BT+q6XH1Sp75kSQM5m7Ee4WzZhMu2syGawcsqdlfFa2u/+skXr/u2ufp9F6M9lgkKkfZZg==", + "path": "system.net.serversentevents/10.0.0", + "hashPath": "system.net.serversentevents.10.0.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-257hh1ep1Gqm1Lm0ulxf7vVBVMJuGN6EL4xSWjpi46DffXzm1058IiWsfSC06zSm7SniN+Tb5160UnXsSa8rRg==", + "path": "system.text.encodings.web/10.0.0", + "hashPath": "system.text.encodings.web.10.0.0.nupkg.sha512" + }, + "System.Text.Json/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Dpjwq9peG/Wt5BNbrzIhTpclfOSqBWZsUO28vVr59yQlkvL5jLBWfpfzRmJ1OY+6DciaY0DUcltyzs4fuZHjw==", + "path": "system.text.json/10.0.0", + "hashPath": "system.text.json.10.0.0.nupkg.sha512" + }, + "System.Threading.Channels/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fwRdkJpKisUEVNaEdsL5w5EwidzuVw0BOTfzDvYB1Yg8sq1pqNfUZxBOVFgSj6i6tNhpT3HP8BEDXf1+kFkTDA==", + "path": "system.threading.channels/10.0.0", + "hashPath": "system.threading.channels.10.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/backend/SignalRTest/bin/Debug/net8.0-windows/SignalRTest.dll b/backend/SignalRTest/bin/Debug/net8.0-windows/SignalRTest.dll new file mode 100644 index 0000000..0ac5e13 Binary files /dev/null and b/backend/SignalRTest/bin/Debug/net8.0-windows/SignalRTest.dll differ diff --git a/backend/SignalRTest/bin/Debug/net8.0-windows/SignalRTest.exe b/backend/SignalRTest/bin/Debug/net8.0-windows/SignalRTest.exe new file mode 100644 index 0000000..6c90625 Binary files /dev/null and b/backend/SignalRTest/bin/Debug/net8.0-windows/SignalRTest.exe differ diff --git a/backend/SignalRTest/bin/Debug/net8.0-windows/SignalRTest.pdb b/backend/SignalRTest/bin/Debug/net8.0-windows/SignalRTest.pdb new file mode 100644 index 0000000..afd8a46 Binary files /dev/null and b/backend/SignalRTest/bin/Debug/net8.0-windows/SignalRTest.pdb differ diff --git a/backend/SignalRTest/bin/Debug/net8.0-windows/SignalRTest.runtimeconfig.json b/backend/SignalRTest/bin/Debug/net8.0-windows/SignalRTest.runtimeconfig.json new file mode 100644 index 0000000..b2dedf3 --- /dev/null +++ b/backend/SignalRTest/bin/Debug/net8.0-windows/SignalRTest.runtimeconfig.json @@ -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 + } + } +} \ No newline at end of file diff --git a/backend/SignalRTest/bin/Debug/net8.0-windows/System.Diagnostics.DiagnosticSource.dll b/backend/SignalRTest/bin/Debug/net8.0-windows/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..9142854 Binary files /dev/null and b/backend/SignalRTest/bin/Debug/net8.0-windows/System.Diagnostics.DiagnosticSource.dll differ diff --git a/backend/SignalRTest/bin/Debug/net8.0-windows/System.IO.Pipelines.dll b/backend/SignalRTest/bin/Debug/net8.0-windows/System.IO.Pipelines.dll new file mode 100644 index 0000000..43bbcf0 Binary files /dev/null and b/backend/SignalRTest/bin/Debug/net8.0-windows/System.IO.Pipelines.dll differ diff --git a/backend/SignalRTest/bin/Debug/net8.0-windows/System.Net.ServerSentEvents.dll b/backend/SignalRTest/bin/Debug/net8.0-windows/System.Net.ServerSentEvents.dll new file mode 100644 index 0000000..f9d9c88 Binary files /dev/null and b/backend/SignalRTest/bin/Debug/net8.0-windows/System.Net.ServerSentEvents.dll differ diff --git a/backend/SignalRTest/bin/Debug/net8.0-windows/System.Text.Encodings.Web.dll b/backend/SignalRTest/bin/Debug/net8.0-windows/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..8b4b15a Binary files /dev/null and b/backend/SignalRTest/bin/Debug/net8.0-windows/System.Text.Encodings.Web.dll differ diff --git a/backend/SignalRTest/bin/Debug/net8.0-windows/System.Text.Json.dll b/backend/SignalRTest/bin/Debug/net8.0-windows/System.Text.Json.dll new file mode 100644 index 0000000..81311a4 Binary files /dev/null and b/backend/SignalRTest/bin/Debug/net8.0-windows/System.Text.Json.dll differ diff --git a/backend/SignalRTest/bin/Debug/net8.0-windows/System.Threading.Channels.dll b/backend/SignalRTest/bin/Debug/net8.0-windows/System.Threading.Channels.dll new file mode 100644 index 0000000..a9d14aa Binary files /dev/null and b/backend/SignalRTest/bin/Debug/net8.0-windows/System.Threading.Channels.dll differ diff --git a/backend/SignalRTest/bin/Debug/net8.0-windows/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll b/backend/SignalRTest/bin/Debug/net8.0-windows/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..99675a7 Binary files /dev/null and b/backend/SignalRTest/bin/Debug/net8.0-windows/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.AspNetCore.Connections.Abstractions.dll b/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.AspNetCore.Connections.Abstractions.dll new file mode 100644 index 0000000..644195e Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.AspNetCore.Connections.Abstractions.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.AspNetCore.Http.Connections.Client.dll b/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.AspNetCore.Http.Connections.Client.dll new file mode 100644 index 0000000..c9dcfa0 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.AspNetCore.Http.Connections.Client.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.AspNetCore.Http.Connections.Common.dll b/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.AspNetCore.Http.Connections.Common.dll new file mode 100644 index 0000000..90fe0a0 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.AspNetCore.Http.Connections.Common.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.AspNetCore.SignalR.Client.Core.dll b/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.AspNetCore.SignalR.Client.Core.dll new file mode 100644 index 0000000..b370257 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.AspNetCore.SignalR.Client.Core.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.AspNetCore.SignalR.Client.dll b/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.AspNetCore.SignalR.Client.dll new file mode 100644 index 0000000..efc5f60 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.AspNetCore.SignalR.Client.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.AspNetCore.SignalR.Common.dll b/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.AspNetCore.SignalR.Common.dll new file mode 100644 index 0000000..471a9d2 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.AspNetCore.SignalR.Common.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.AspNetCore.SignalR.Protocols.Json.dll b/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.AspNetCore.SignalR.Protocols.Json.dll new file mode 100644 index 0000000..a6664f8 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.AspNetCore.SignalR.Protocols.Json.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.Bcl.AsyncInterfaces.dll b/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100644 index 0000000..3bbbdc5 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.Bcl.TimeProvider.dll b/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.Bcl.TimeProvider.dll new file mode 100644 index 0000000..ca7722c Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.Bcl.TimeProvider.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100644 index 0000000..e4ae5bc Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.Extensions.DependencyInjection.dll b/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..20a0e7e Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.Extensions.Features.dll b/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.Extensions.Features.dll new file mode 100644 index 0000000..dfd5e3d Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.Extensions.Features.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.Extensions.Logging.Abstractions.dll b/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..70fa378 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.Extensions.Logging.dll b/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.Extensions.Logging.dll new file mode 100644 index 0000000..1886a54 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.Extensions.Logging.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.Extensions.Options.dll b/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.Extensions.Options.dll new file mode 100644 index 0000000..1217d60 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.Extensions.Options.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.Extensions.Primitives.dll b/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.Extensions.Primitives.dll new file mode 100644 index 0000000..37eecdb Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/Microsoft.Extensions.Primitives.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/SignalRTest.deps.json b/backend/SignalRTest/bin/Release/net8.0-windows/SignalRTest.deps.json new file mode 100644 index 0000000..8a84b48 --- /dev/null +++ b/backend/SignalRTest/bin/Release/net8.0-windows/SignalRTest.deps.json @@ -0,0 +1,419 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "SignalRTest/1.0.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Client": "10.0.0" + }, + "runtime": { + "SignalRTest.dll": {} + } + }, + "Microsoft.AspNetCore.Connections.Abstractions/10.0.0": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "10.0.0", + "Microsoft.Extensions.Features": "10.0.0", + "System.IO.Pipelines": "10.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.AspNetCore.Connections.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.AspNetCore.Http.Connections.Client/10.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Connections.Common": "10.0.0", + "Microsoft.Extensions.Logging.Abstractions": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0", + "System.Net.ServerSentEvents": "10.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Client.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.AspNetCore.Http.Connections.Common/10.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "10.0.0", + "System.Text.Json": "10.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.AspNetCore.SignalR.Client/10.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Connections.Client": "10.0.0", + "Microsoft.AspNetCore.SignalR.Client.Core": "10.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.AspNetCore.SignalR.Client.Core/10.0.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "10.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "10.0.0", + "Microsoft.Bcl.TimeProvider": "10.0.0", + "Microsoft.Extensions.DependencyInjection": "10.0.0", + "Microsoft.Extensions.Logging": "10.0.0", + "System.Threading.Channels": "10.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.Core.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.AspNetCore.SignalR.Common/10.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0", + "System.Text.Json": "10.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/10.0.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "10.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/10.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Bcl.TimeProvider/10.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Bcl.TimeProvider.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.DependencyInjection/10.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Features/10.0.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Features.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Logging/10.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "10.0.0", + "Microsoft.Extensions.Logging.Abstractions": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", + "System.Diagnostics.DiagnosticSource": "10.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Options/10.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", + "Microsoft.Extensions.Primitives": "10.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Primitives/10.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "System.Diagnostics.DiagnosticSource/10.0.0": { + "runtime": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "System.IO.Pipelines/10.0.0": { + "runtime": { + "lib/net8.0/System.IO.Pipelines.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "System.Net.ServerSentEvents/10.0.0": { + "runtime": { + "lib/net8.0/System.Net.ServerSentEvents.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "System.Text.Encodings.Web/10.0.0": { + "runtime": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + }, + "runtimeTargets": { + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll": { + "rid": "browser", + "assetType": "runtime", + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "System.Text.Json/10.0.0": { + "dependencies": { + "System.IO.Pipelines": "10.0.0", + "System.Text.Encodings.Web": "10.0.0" + }, + "runtime": { + "lib/net8.0/System.Text.Json.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "System.Threading.Channels/10.0.0": { + "runtime": { + "lib/net8.0/System.Threading.Channels.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + } + } + }, + "libraries": { + "SignalRTest/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Connections.Abstractions/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MPXDzUknemj+sCL/LYOLvU/qIX3o9zCJtKXu9jcwNMQiOvwuv75lV20p3qGENA/ynTH7hOPFqDUEGBT30IvhEA==", + "path": "microsoft.aspnetcore.connections.abstractions/10.0.0", + "hashPath": "microsoft.aspnetcore.connections.abstractions.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Connections.Client/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7nSER+de0V6mWTcdUqBJZlm1XMz+Y2mTHzL3B/msVF+JfSXXZtKNVC18TI7AeSz4PD//b5qpy8n0RQEIVByfJw==", + "path": "microsoft.aspnetcore.http.connections.client/10.0.0", + "hashPath": "microsoft.aspnetcore.http.connections.client.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Connections.Common/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VaEGwazymaL4NB+JoAdvM/IaFg5IIg1WXtVgKmD/y3Et2qnPxolAlMXYJrI8k1EPjmoIcXQZHTj47MskRRyRIA==", + "path": "microsoft.aspnetcore.http.connections.common/10.0.0", + "hashPath": "microsoft.aspnetcore.http.connections.common.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Client/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XHPNPLqPX7CVJ5JuaumTP58sAVrQG4TqFKLFOtN1mZIwgEUHKwtDeMwL0G8dIvy9zcpi7os4CYAHvA1bUUTzVw==", + "path": "microsoft.aspnetcore.signalr.client/10.0.0", + "hashPath": "microsoft.aspnetcore.signalr.client.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Client.Core/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MrXjT7YNV0e1Jb3Hai6kX/Ot7X2SlONHv5IC5XNGeycTTLu3qitJ7DXZUsPPZs6yanWIOsIKjPEY58ARHdRKGg==", + "path": "microsoft.aspnetcore.signalr.client.core/10.0.0", + "hashPath": "microsoft.aspnetcore.signalr.client.core.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Common/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pyG6FLV4/EeOQeZ30ra4aUYycJQPT/9ddB91aplMKwEGT5KbEs//WMqMObVGvDREP508EB4QUAKzacSVi30nxw==", + "path": "microsoft.aspnetcore.signalr.common/10.0.0", + "hashPath": "microsoft.aspnetcore.signalr.common.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-L++SCI4pcG9uo7HTzAFTX33BsZFDHCdukJIK+/S4tgH/kcJlPTp9QS96E4zgOuzXRDrzaunwbFSS2DElTmWGRA==", + "path": "microsoft.aspnetcore.signalr.protocols.json/10.0.0", + "hashPath": "microsoft.aspnetcore.signalr.protocols.json.10.0.0.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vFuwSLj9QJBbNR0NeNO4YVASUbokxs+i/xbuu8B+Fs4FAZg5QaFa6eGrMaRqTzzNI5tAb97T7BhSxtLckFyiRA==", + "path": "microsoft.bcl.asyncinterfaces/10.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.10.0.0.nupkg.sha512" + }, + "Microsoft.Bcl.TimeProvider/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bUubrBD6tRJE3V1kvRloYc6NymH3R5oFKjAS9e0ELNx6u0ZR+zjps9dDQyjgqN/rArzl7f+21KGszj3YRN7F2Q==", + "path": "microsoft.bcl.timeprovider/10.0.0", + "hashPath": "microsoft.bcl.timeprovider.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f0RBabswJq+gRu5a+hWIobrLWiUYPKMhCD9WO3sYBAdSy3FFH14LMvLVFZc2kPSCimBLxSuitUhsd6tb0TAY6A==", + "path": "microsoft.extensions.dependencyinjection/10.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-L3AdmZ1WOK4XXT5YFPEwyt0ep6l8lGIPs7F5OOBZc77Zqeo01Of7XXICy47628sdVl0v/owxYJTe86DTgFwKCA==", + "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Features/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kCFjPpfvz0K00xIpe7wJKre1gFJdNIu9+1BYJLklu3GWb+uU4HIjza0uMBQeFGZws9VJos9LeO+PUfvGcre+9g==", + "path": "microsoft.extensions.features/10.0.0", + "hashPath": "microsoft.extensions.features.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BStFkd5CcnEtarlcgYDBcFzGYCuuNMzPs02wN3WBsOFoYIEmYoUdAiU+au6opzoqfTYJsMTW00AeqDdnXH2CvA==", + "path": "microsoft.extensions.logging/10.0.0", + "hashPath": "microsoft.extensions.logging.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FU/IfjDfwaMuKr414SSQNTIti/69bHEMb+QKrskRb26oVqpx3lNFXMjs/RC9ZUuhBhcwDM2BwOgoMw+PZ+beqQ==", + "path": "microsoft.extensions.logging.abstractions/10.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8oCAgXOow5XDrY9HaXX1QmH3ORsyZO/ANVHBlhLyCeWTH5Sg4UuqZeOTWJi6484M+LqSx0RqQXDJtdYy2BNiLQ==", + "path": "microsoft.extensions.options/10.0.0", + "hashPath": "microsoft.extensions.options.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-inRnbpCS0nwO/RuoZIAqxQUuyjaknOOnCEZB55KSMMjRhl0RQDttSmLSGsUJN3RQ3ocf5NDLFd2mOQViHqMK5w==", + "path": "microsoft.extensions.primitives/10.0.0", + "hashPath": "microsoft.extensions.primitives.10.0.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0KdBK+h7G13PuOSC2R/DalAoFMvdYMznvGRuICtkdcUMXgl/gYXsG6z4yUvTxHSMACorWgHCU1Faq0KUHU6yAQ==", + "path": "system.diagnostics.diagnosticsource/10.0.0", + "hashPath": "system.diagnostics.diagnosticsource.10.0.0.nupkg.sha512" + }, + "System.IO.Pipelines/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M1eb3nfXntaRJPrrMVM9EFS8I1bDTnt0uvUS6QP/SicZf/ZZjydMD5NiXxfmwW/uQwaMDP/yX2P+zQN1NBHChg==", + "path": "system.io.pipelines/10.0.0", + "hashPath": "system.io.pipelines.10.0.0.nupkg.sha512" + }, + "System.Net.ServerSentEvents/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zRH5XXZfenw7bgn8BT+q6XH1Sp75kSQM5m7Ee4WzZhMu2syGawcsqdlfFa2u/+skXr/u2ufp9F6M9lgkKkfZZg==", + "path": "system.net.serversentevents/10.0.0", + "hashPath": "system.net.serversentevents.10.0.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-257hh1ep1Gqm1Lm0ulxf7vVBVMJuGN6EL4xSWjpi46DffXzm1058IiWsfSC06zSm7SniN+Tb5160UnXsSa8rRg==", + "path": "system.text.encodings.web/10.0.0", + "hashPath": "system.text.encodings.web.10.0.0.nupkg.sha512" + }, + "System.Text.Json/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Dpjwq9peG/Wt5BNbrzIhTpclfOSqBWZsUO28vVr59yQlkvL5jLBWfpfzRmJ1OY+6DciaY0DUcltyzs4fuZHjw==", + "path": "system.text.json/10.0.0", + "hashPath": "system.text.json.10.0.0.nupkg.sha512" + }, + "System.Threading.Channels/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fwRdkJpKisUEVNaEdsL5w5EwidzuVw0BOTfzDvYB1Yg8sq1pqNfUZxBOVFgSj6i6tNhpT3HP8BEDXf1+kFkTDA==", + "path": "system.threading.channels/10.0.0", + "hashPath": "system.threading.channels.10.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/SignalRTest.dll b/backend/SignalRTest/bin/Release/net8.0-windows/SignalRTest.dll new file mode 100644 index 0000000..b294860 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/SignalRTest.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/SignalRTest.exe b/backend/SignalRTest/bin/Release/net8.0-windows/SignalRTest.exe new file mode 100644 index 0000000..6c90625 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/SignalRTest.exe differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/SignalRTest.pdb b/backend/SignalRTest/bin/Release/net8.0-windows/SignalRTest.pdb new file mode 100644 index 0000000..3f41f9b Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/SignalRTest.pdb differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/SignalRTest.runtimeconfig.json b/backend/SignalRTest/bin/Release/net8.0-windows/SignalRTest.runtimeconfig.json new file mode 100644 index 0000000..ad83f36 --- /dev/null +++ b/backend/SignalRTest/bin/Release/net8.0-windows/SignalRTest.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + { + "name": "Microsoft.WindowsDesktop.App", + "version": "8.0.0" + } + ], + "configProperties": { + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true, + "CSWINRT_USE_WINDOWS_UI_XAML_PROJECTIONS": false + } + } +} \ No newline at end of file diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/System.Diagnostics.DiagnosticSource.dll b/backend/SignalRTest/bin/Release/net8.0-windows/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..9142854 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/System.Diagnostics.DiagnosticSource.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/System.IO.Pipelines.dll b/backend/SignalRTest/bin/Release/net8.0-windows/System.IO.Pipelines.dll new file mode 100644 index 0000000..43bbcf0 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/System.IO.Pipelines.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/System.Net.ServerSentEvents.dll b/backend/SignalRTest/bin/Release/net8.0-windows/System.Net.ServerSentEvents.dll new file mode 100644 index 0000000..f9d9c88 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/System.Net.ServerSentEvents.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/System.Text.Encodings.Web.dll b/backend/SignalRTest/bin/Release/net8.0-windows/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..8b4b15a Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/System.Text.Encodings.Web.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/System.Text.Json.dll b/backend/SignalRTest/bin/Release/net8.0-windows/System.Text.Json.dll new file mode 100644 index 0000000..81311a4 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/System.Text.Json.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/System.Threading.Channels.dll b/backend/SignalRTest/bin/Release/net8.0-windows/System.Threading.Channels.dll new file mode 100644 index 0000000..a9d14aa Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/System.Threading.Channels.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/publish/win-x64/D3DCompiler_47_cor3.dll b/backend/SignalRTest/bin/Release/net8.0-windows/publish/win-x64/D3DCompiler_47_cor3.dll new file mode 100644 index 0000000..80489b8 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/publish/win-x64/D3DCompiler_47_cor3.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/publish/win-x64/PenImc_cor3.dll b/backend/SignalRTest/bin/Release/net8.0-windows/publish/win-x64/PenImc_cor3.dll new file mode 100644 index 0000000..ba64871 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/publish/win-x64/PenImc_cor3.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/publish/win-x64/PresentationNative_cor3.dll b/backend/SignalRTest/bin/Release/net8.0-windows/publish/win-x64/PresentationNative_cor3.dll new file mode 100644 index 0000000..2b3e13e Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/publish/win-x64/PresentationNative_cor3.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/publish/win-x64/SignalRTest.pdb b/backend/SignalRTest/bin/Release/net8.0-windows/publish/win-x64/SignalRTest.pdb new file mode 100644 index 0000000..c3af985 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/publish/win-x64/SignalRTest.pdb differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/publish/win-x64/vcruntime140_cor3.dll b/backend/SignalRTest/bin/Release/net8.0-windows/publish/win-x64/vcruntime140_cor3.dll new file mode 100644 index 0000000..411009b Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/publish/win-x64/vcruntime140_cor3.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/publish/win-x64/wpfgfx_cor3.dll b/backend/SignalRTest/bin/Release/net8.0-windows/publish/win-x64/wpfgfx_cor3.dll new file mode 100644 index 0000000..ca33699 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/publish/win-x64/wpfgfx_cor3.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll b/backend/SignalRTest/bin/Release/net8.0-windows/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..99675a7 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Accessibility.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Accessibility.dll new file mode 100644 index 0000000..6b51b5b Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Accessibility.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/D3DCompiler_47_cor3.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/D3DCompiler_47_cor3.dll new file mode 100644 index 0000000..80489b8 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/D3DCompiler_47_cor3.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/DirectWriteForwarder.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/DirectWriteForwarder.dll new file mode 100644 index 0000000..23a2476 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/DirectWriteForwarder.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.AspNetCore.Connections.Abstractions.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.AspNetCore.Connections.Abstractions.dll new file mode 100644 index 0000000..644195e Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.AspNetCore.Connections.Abstractions.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.AspNetCore.Http.Connections.Client.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.AspNetCore.Http.Connections.Client.dll new file mode 100644 index 0000000..c9dcfa0 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.AspNetCore.Http.Connections.Client.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.AspNetCore.Http.Connections.Common.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.AspNetCore.Http.Connections.Common.dll new file mode 100644 index 0000000..90fe0a0 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.AspNetCore.Http.Connections.Common.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.AspNetCore.SignalR.Client.Core.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.AspNetCore.SignalR.Client.Core.dll new file mode 100644 index 0000000..b370257 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.AspNetCore.SignalR.Client.Core.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.AspNetCore.SignalR.Client.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.AspNetCore.SignalR.Client.dll new file mode 100644 index 0000000..efc5f60 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.AspNetCore.SignalR.Client.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.AspNetCore.SignalR.Common.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.AspNetCore.SignalR.Common.dll new file mode 100644 index 0000000..471a9d2 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.AspNetCore.SignalR.Common.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.AspNetCore.SignalR.Protocols.Json.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.AspNetCore.SignalR.Protocols.Json.dll new file mode 100644 index 0000000..a6664f8 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.AspNetCore.SignalR.Protocols.Json.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Bcl.AsyncInterfaces.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100644 index 0000000..3bbbdc5 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Bcl.TimeProvider.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Bcl.TimeProvider.dll new file mode 100644 index 0000000..ca7722c Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Bcl.TimeProvider.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.CSharp.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.CSharp.dll new file mode 100644 index 0000000..b793304 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.CSharp.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.DiaSymReader.Native.amd64.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.DiaSymReader.Native.amd64.dll new file mode 100644 index 0000000..92b355b Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.DiaSymReader.Native.amd64.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100644 index 0000000..e4ae5bc Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Extensions.DependencyInjection.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..20a0e7e Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Extensions.Features.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Extensions.Features.dll new file mode 100644 index 0000000..dfd5e3d Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Extensions.Features.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Extensions.Logging.Abstractions.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..70fa378 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Extensions.Logging.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Extensions.Logging.dll new file mode 100644 index 0000000..1886a54 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Extensions.Logging.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Extensions.Options.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Extensions.Options.dll new file mode 100644 index 0000000..1217d60 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Extensions.Options.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Extensions.Primitives.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Extensions.Primitives.dll new file mode 100644 index 0000000..37eecdb Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Extensions.Primitives.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.VisualBasic.Core.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.VisualBasic.Core.dll new file mode 100644 index 0000000..8e02a25 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.VisualBasic.Core.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.VisualBasic.Forms.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.VisualBasic.Forms.dll new file mode 100644 index 0000000..e7aced2 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.VisualBasic.Forms.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.VisualBasic.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.VisualBasic.dll new file mode 100644 index 0000000..da51b59 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.VisualBasic.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Win32.Primitives.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Win32.Primitives.dll new file mode 100644 index 0000000..6f67391 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Win32.Primitives.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Win32.Registry.AccessControl.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Win32.Registry.AccessControl.dll new file mode 100644 index 0000000..35b59a0 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Win32.Registry.AccessControl.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Win32.Registry.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Win32.Registry.dll new file mode 100644 index 0000000..cd9c9cc Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Win32.Registry.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Win32.SystemEvents.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..37ca726 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/Microsoft.Win32.SystemEvents.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PenImc_cor3.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PenImc_cor3.dll new file mode 100644 index 0000000..ba64871 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PenImc_cor3.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationCore.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationCore.dll new file mode 100644 index 0000000..5ae05f4 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationCore.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework-SystemCore.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework-SystemCore.dll new file mode 100644 index 0000000..fd6496d Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework-SystemCore.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework-SystemData.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework-SystemData.dll new file mode 100644 index 0000000..4f4f7cf Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework-SystemData.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework-SystemDrawing.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework-SystemDrawing.dll new file mode 100644 index 0000000..7e2044f Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework-SystemDrawing.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework-SystemXml.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework-SystemXml.dll new file mode 100644 index 0000000..acb9a55 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework-SystemXml.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework-SystemXmlLinq.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework-SystemXmlLinq.dll new file mode 100644 index 0000000..bc05d14 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework-SystemXmlLinq.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework.Aero.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework.Aero.dll new file mode 100644 index 0000000..624eece Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework.Aero.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework.Aero2.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework.Aero2.dll new file mode 100644 index 0000000..9223fa3 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework.Aero2.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework.AeroLite.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework.AeroLite.dll new file mode 100644 index 0000000..005173c Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework.AeroLite.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework.Classic.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework.Classic.dll new file mode 100644 index 0000000..815b1eb Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework.Classic.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework.Luna.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework.Luna.dll new file mode 100644 index 0000000..7439b99 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework.Luna.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework.Royale.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework.Royale.dll new file mode 100644 index 0000000..acad4e8 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework.Royale.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework.dll new file mode 100644 index 0000000..f7cef76 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationFramework.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationNative_cor3.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationNative_cor3.dll new file mode 100644 index 0000000..2b3e13e Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationNative_cor3.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationUI.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationUI.dll new file mode 100644 index 0000000..eb0438c Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/PresentationUI.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ReachFramework.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ReachFramework.dll new file mode 100644 index 0000000..fd17e32 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ReachFramework.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/SignalRTest.deps.json b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/SignalRTest.deps.json new file mode 100644 index 0000000..7c385e3 --- /dev/null +++ b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/SignalRTest.deps.json @@ -0,0 +1,1369 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0/win-x64", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": {}, + ".NETCoreApp,Version=v8.0/win-x64": { + "SignalRTest/1.0.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Client": "10.0.0", + "Microsoft.NET.ILLink.Tasks": "8.0.19", + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "8.0.19", + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64": "8.0.19" + }, + "runtime": { + "SignalRTest.dll": {} + } + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/8.0.19": { + "runtime": { + "Microsoft.CSharp.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "Microsoft.VisualBasic.Core.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1925.36514" + }, + "Microsoft.Win32.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "Microsoft.Win32.Registry.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.AppContext.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Buffers.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Collections.Concurrent.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Collections.Immutable.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Collections.NonGeneric.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Collections.Specialized.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Collections.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.ComponentModel.Annotations.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.ComponentModel.DataAnnotations.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.ComponentModel.EventBasedAsync.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.ComponentModel.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.ComponentModel.TypeConverter.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.ComponentModel.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Configuration.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Console.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Data.Common.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Data.DataSetExtensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Data.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Diagnostics.Contracts.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Diagnostics.Debug.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Diagnostics.FileVersionInfo.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Diagnostics.Process.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Diagnostics.StackTrace.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Diagnostics.TextWriterTraceListener.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Diagnostics.Tools.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Diagnostics.TraceSource.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Diagnostics.Tracing.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Drawing.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Dynamic.Runtime.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Formats.Asn1.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Formats.Tar.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Globalization.Calendars.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Globalization.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Globalization.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.IO.Compression.Brotli.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.IO.Compression.FileSystem.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.IO.Compression.ZipFile.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.IO.Compression.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.IO.FileSystem.AccessControl.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.IO.FileSystem.DriveInfo.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.IO.FileSystem.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.IO.FileSystem.Watcher.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.IO.FileSystem.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.IO.IsolatedStorage.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.IO.MemoryMappedFiles.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.IO.Pipes.AccessControl.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.IO.Pipes.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.IO.UnmanagedMemoryStream.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.IO.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Linq.Expressions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Linq.Parallel.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Linq.Queryable.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Linq.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Memory.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.Http.Json.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.Http.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.HttpListener.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.Mail.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.NameResolution.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.NetworkInformation.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.Ping.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.Quic.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.Requests.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.Security.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.ServicePoint.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.Sockets.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.WebClient.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.WebHeaderCollection.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.WebProxy.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.WebSockets.Client.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.WebSockets.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Numerics.Vectors.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Numerics.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.ObjectModel.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Private.CoreLib.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Private.DataContractSerialization.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Private.Uri.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Private.Xml.Linq.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Private.Xml.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Reflection.DispatchProxy.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Reflection.Emit.ILGeneration.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Reflection.Emit.Lightweight.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Reflection.Emit.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Reflection.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Reflection.Metadata.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Reflection.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Reflection.TypeExtensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Reflection.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Resources.Reader.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Resources.ResourceManager.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Resources.Writer.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Runtime.CompilerServices.VisualC.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Runtime.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Runtime.Handles.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Runtime.InteropServices.JavaScript.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Runtime.InteropServices.RuntimeInformation.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Runtime.InteropServices.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Runtime.Intrinsics.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Runtime.Loader.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Runtime.Numerics.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Runtime.Serialization.Formatters.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Runtime.Serialization.Json.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Runtime.Serialization.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Runtime.Serialization.Xml.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Runtime.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Runtime.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.AccessControl.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.Claims.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.Cryptography.Algorithms.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.Cryptography.Cng.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.Cryptography.Csp.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.Cryptography.Encoding.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.Cryptography.OpenSsl.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.Cryptography.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.Cryptography.X509Certificates.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.Cryptography.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.Principal.Windows.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.Principal.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.SecureString.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.ServiceModel.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.ServiceProcess.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Text.Encoding.CodePages.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Text.Encoding.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Text.Encoding.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Text.RegularExpressions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Threading.Overlapped.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Threading.Tasks.Dataflow.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Threading.Tasks.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Threading.Tasks.Parallel.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Threading.Tasks.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Threading.Thread.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Threading.ThreadPool.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Threading.Timer.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Threading.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Transactions.Local.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Transactions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.ValueTuple.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Web.HttpUtility.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Windows.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Xml.Linq.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Xml.ReaderWriter.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Xml.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Xml.XDocument.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Xml.XPath.XDocument.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Xml.XPath.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Xml.XmlDocument.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Xml.XmlSerializer.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Xml.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "mscorlib.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "netstandard.dll": { + "assemblyVersion": "2.1.0.0", + "fileVersion": "8.0.1925.36514" + } + }, + "native": { + "Microsoft.DiaSymReader.Native.amd64.dll": { + "fileVersion": "14.42.34436.0" + }, + "System.IO.Compression.Native.dll": { + "fileVersion": "8.0.1925.36514" + }, + "clretwrc.dll": { + "fileVersion": "8.0.1925.36514" + }, + "clrgc.dll": { + "fileVersion": "8.0.1925.36514" + }, + "clrjit.dll": { + "fileVersion": "8.0.1925.36514" + }, + "coreclr.dll": { + "fileVersion": "8.0.1925.36514" + }, + "createdump.exe": { + "fileVersion": "8.0.1925.36514" + }, + "hostfxr.dll": { + "fileVersion": "8.0.1925.36514" + }, + "hostpolicy.dll": { + "fileVersion": "8.0.1925.36514" + }, + "mscordaccore.dll": { + "fileVersion": "8.0.1925.36514" + }, + "mscordaccore_amd64_amd64_8.0.1925.36514.dll": { + "fileVersion": "8.0.1925.36514" + }, + "mscordbi.dll": { + "fileVersion": "8.0.1925.36514" + }, + "mscorrc.dll": { + "fileVersion": "8.0.1925.36514" + }, + "msquic.dll": { + "fileVersion": "2.4.8.0" + } + } + }, + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/8.0.19": { + "runtime": { + "Accessibility.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36703" + }, + "DirectWriteForwarder.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "Microsoft.VisualBasic.Forms.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36703" + }, + "Microsoft.VisualBasic.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "8.0.1925.36703" + }, + "Microsoft.Win32.Registry.AccessControl.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "PresentationCore.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "PresentationFramework-SystemCore.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "PresentationFramework-SystemData.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "PresentationFramework-SystemDrawing.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "PresentationFramework-SystemXml.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "PresentationFramework-SystemXmlLinq.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "PresentationFramework.Aero.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "PresentationFramework.Aero2.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "PresentationFramework.AeroLite.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "PresentationFramework.Classic.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "PresentationFramework.Luna.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "PresentationFramework.Royale.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "PresentationFramework.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "PresentationUI.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "ReachFramework.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "System.CodeDom.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Design.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36703" + }, + "System.Diagnostics.EventLog.Messages.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "0.0.0.0" + }, + "System.Diagnostics.EventLog.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.DirectoryServices.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Drawing.Common.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36703" + }, + "System.Drawing.Design.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36703" + }, + "System.Drawing.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36703" + }, + "System.IO.Packaging.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Printing.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "System.Resources.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.Cryptography.Pkcs.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.Cryptography.Xml.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.Permissions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Threading.AccessControl.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Windows.Controls.Ribbon.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "System.Windows.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Windows.Forms.Design.Editors.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36703" + }, + "System.Windows.Forms.Design.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36703" + }, + "System.Windows.Forms.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36703" + }, + "System.Windows.Forms.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36703" + }, + "System.Windows.Input.Manipulations.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "System.Windows.Presentation.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "System.Xaml.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "UIAutomationClient.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "UIAutomationClientSideProviders.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "UIAutomationProvider.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "UIAutomationTypes.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "WindowsBase.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "WindowsFormsIntegration.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + } + }, + "native": { + "D3DCompiler_47_cor3.dll": { + "fileVersion": "10.0.22621.3233" + }, + "PenImc_cor3.dll": { + "fileVersion": "8.0.1925.36811" + }, + "PresentationNative_cor3.dll": { + "fileVersion": "8.0.25.16802" + }, + "vcruntime140_cor3.dll": { + "fileVersion": "14.42.34438.0" + }, + "wpfgfx_cor3.dll": { + "fileVersion": "8.0.1925.36811" + } + } + }, + "Microsoft.AspNetCore.Connections.Abstractions/10.0.0": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "10.0.0", + "Microsoft.Extensions.Features": "10.0.0", + "System.IO.Pipelines": "10.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.AspNetCore.Connections.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.AspNetCore.Http.Connections.Client/10.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Connections.Common": "10.0.0", + "Microsoft.Extensions.Logging.Abstractions": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0", + "System.Net.ServerSentEvents": "10.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Client.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.AspNetCore.Http.Connections.Common/10.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "10.0.0", + "System.Text.Json": "10.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.AspNetCore.SignalR.Client/10.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Connections.Client": "10.0.0", + "Microsoft.AspNetCore.SignalR.Client.Core": "10.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.AspNetCore.SignalR.Client.Core/10.0.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "10.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "10.0.0", + "Microsoft.Bcl.TimeProvider": "10.0.0", + "Microsoft.Extensions.DependencyInjection": "10.0.0", + "Microsoft.Extensions.Logging": "10.0.0", + "System.Threading.Channels": "10.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.Core.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.AspNetCore.SignalR.Common/10.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0", + "System.Text.Json": "10.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/10.0.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "10.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/10.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Bcl.TimeProvider/10.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Bcl.TimeProvider.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.DependencyInjection/10.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Features/10.0.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Features.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Logging/10.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "10.0.0", + "Microsoft.Extensions.Logging.Abstractions": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", + "System.Diagnostics.DiagnosticSource": "10.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Options/10.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", + "Microsoft.Extensions.Primitives": "10.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Primitives/10.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.19": {}, + "System.Diagnostics.DiagnosticSource/10.0.0": { + "runtime": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "System.IO.Pipelines/10.0.0": { + "runtime": { + "lib/net8.0/System.IO.Pipelines.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "System.Net.ServerSentEvents/10.0.0": { + "runtime": { + "lib/net8.0/System.Net.ServerSentEvents.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "System.Text.Encodings.Web/10.0.0": { + "runtime": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "System.Text.Json/10.0.0": { + "dependencies": { + "System.IO.Pipelines": "10.0.0", + "System.Text.Encodings.Web": "10.0.0" + }, + "runtime": { + "lib/net8.0/System.Text.Json.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "System.Threading.Channels/10.0.0": { + "runtime": { + "lib/net8.0/System.Threading.Channels.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + } + } + }, + "libraries": { + "SignalRTest/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/8.0.19": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/8.0.19": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Connections.Abstractions/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MPXDzUknemj+sCL/LYOLvU/qIX3o9zCJtKXu9jcwNMQiOvwuv75lV20p3qGENA/ynTH7hOPFqDUEGBT30IvhEA==", + "path": "microsoft.aspnetcore.connections.abstractions/10.0.0", + "hashPath": "microsoft.aspnetcore.connections.abstractions.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Connections.Client/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7nSER+de0V6mWTcdUqBJZlm1XMz+Y2mTHzL3B/msVF+JfSXXZtKNVC18TI7AeSz4PD//b5qpy8n0RQEIVByfJw==", + "path": "microsoft.aspnetcore.http.connections.client/10.0.0", + "hashPath": "microsoft.aspnetcore.http.connections.client.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Connections.Common/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VaEGwazymaL4NB+JoAdvM/IaFg5IIg1WXtVgKmD/y3Et2qnPxolAlMXYJrI8k1EPjmoIcXQZHTj47MskRRyRIA==", + "path": "microsoft.aspnetcore.http.connections.common/10.0.0", + "hashPath": "microsoft.aspnetcore.http.connections.common.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Client/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XHPNPLqPX7CVJ5JuaumTP58sAVrQG4TqFKLFOtN1mZIwgEUHKwtDeMwL0G8dIvy9zcpi7os4CYAHvA1bUUTzVw==", + "path": "microsoft.aspnetcore.signalr.client/10.0.0", + "hashPath": "microsoft.aspnetcore.signalr.client.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Client.Core/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MrXjT7YNV0e1Jb3Hai6kX/Ot7X2SlONHv5IC5XNGeycTTLu3qitJ7DXZUsPPZs6yanWIOsIKjPEY58ARHdRKGg==", + "path": "microsoft.aspnetcore.signalr.client.core/10.0.0", + "hashPath": "microsoft.aspnetcore.signalr.client.core.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Common/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pyG6FLV4/EeOQeZ30ra4aUYycJQPT/9ddB91aplMKwEGT5KbEs//WMqMObVGvDREP508EB4QUAKzacSVi30nxw==", + "path": "microsoft.aspnetcore.signalr.common/10.0.0", + "hashPath": "microsoft.aspnetcore.signalr.common.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-L++SCI4pcG9uo7HTzAFTX33BsZFDHCdukJIK+/S4tgH/kcJlPTp9QS96E4zgOuzXRDrzaunwbFSS2DElTmWGRA==", + "path": "microsoft.aspnetcore.signalr.protocols.json/10.0.0", + "hashPath": "microsoft.aspnetcore.signalr.protocols.json.10.0.0.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vFuwSLj9QJBbNR0NeNO4YVASUbokxs+i/xbuu8B+Fs4FAZg5QaFa6eGrMaRqTzzNI5tAb97T7BhSxtLckFyiRA==", + "path": "microsoft.bcl.asyncinterfaces/10.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.10.0.0.nupkg.sha512" + }, + "Microsoft.Bcl.TimeProvider/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bUubrBD6tRJE3V1kvRloYc6NymH3R5oFKjAS9e0ELNx6u0ZR+zjps9dDQyjgqN/rArzl7f+21KGszj3YRN7F2Q==", + "path": "microsoft.bcl.timeprovider/10.0.0", + "hashPath": "microsoft.bcl.timeprovider.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f0RBabswJq+gRu5a+hWIobrLWiUYPKMhCD9WO3sYBAdSy3FFH14LMvLVFZc2kPSCimBLxSuitUhsd6tb0TAY6A==", + "path": "microsoft.extensions.dependencyinjection/10.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-L3AdmZ1WOK4XXT5YFPEwyt0ep6l8lGIPs7F5OOBZc77Zqeo01Of7XXICy47628sdVl0v/owxYJTe86DTgFwKCA==", + "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Features/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kCFjPpfvz0K00xIpe7wJKre1gFJdNIu9+1BYJLklu3GWb+uU4HIjza0uMBQeFGZws9VJos9LeO+PUfvGcre+9g==", + "path": "microsoft.extensions.features/10.0.0", + "hashPath": "microsoft.extensions.features.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BStFkd5CcnEtarlcgYDBcFzGYCuuNMzPs02wN3WBsOFoYIEmYoUdAiU+au6opzoqfTYJsMTW00AeqDdnXH2CvA==", + "path": "microsoft.extensions.logging/10.0.0", + "hashPath": "microsoft.extensions.logging.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FU/IfjDfwaMuKr414SSQNTIti/69bHEMb+QKrskRb26oVqpx3lNFXMjs/RC9ZUuhBhcwDM2BwOgoMw+PZ+beqQ==", + "path": "microsoft.extensions.logging.abstractions/10.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8oCAgXOow5XDrY9HaXX1QmH3ORsyZO/ANVHBlhLyCeWTH5Sg4UuqZeOTWJi6484M+LqSx0RqQXDJtdYy2BNiLQ==", + "path": "microsoft.extensions.options/10.0.0", + "hashPath": "microsoft.extensions.options.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-inRnbpCS0nwO/RuoZIAqxQUuyjaknOOnCEZB55KSMMjRhl0RQDttSmLSGsUJN3RQ3ocf5NDLFd2mOQViHqMK5w==", + "path": "microsoft.extensions.primitives/10.0.0", + "hashPath": "microsoft.extensions.primitives.10.0.0.nupkg.sha512" + }, + "Microsoft.NET.ILLink.Tasks/8.0.19": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IhHf+zeZiaE5EXRyxILd4qM+Hj9cxV3sa8MpzZgeEhpvaG3a1VEGF6UCaPFLO44Kua3JkLKluE0SWVamS50PlA==", + "path": "microsoft.net.illink.tasks/8.0.19", + "hashPath": "microsoft.net.illink.tasks.8.0.19.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0KdBK+h7G13PuOSC2R/DalAoFMvdYMznvGRuICtkdcUMXgl/gYXsG6z4yUvTxHSMACorWgHCU1Faq0KUHU6yAQ==", + "path": "system.diagnostics.diagnosticsource/10.0.0", + "hashPath": "system.diagnostics.diagnosticsource.10.0.0.nupkg.sha512" + }, + "System.IO.Pipelines/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M1eb3nfXntaRJPrrMVM9EFS8I1bDTnt0uvUS6QP/SicZf/ZZjydMD5NiXxfmwW/uQwaMDP/yX2P+zQN1NBHChg==", + "path": "system.io.pipelines/10.0.0", + "hashPath": "system.io.pipelines.10.0.0.nupkg.sha512" + }, + "System.Net.ServerSentEvents/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zRH5XXZfenw7bgn8BT+q6XH1Sp75kSQM5m7Ee4WzZhMu2syGawcsqdlfFa2u/+skXr/u2ufp9F6M9lgkKkfZZg==", + "path": "system.net.serversentevents/10.0.0", + "hashPath": "system.net.serversentevents.10.0.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-257hh1ep1Gqm1Lm0ulxf7vVBVMJuGN6EL4xSWjpi46DffXzm1058IiWsfSC06zSm7SniN+Tb5160UnXsSa8rRg==", + "path": "system.text.encodings.web/10.0.0", + "hashPath": "system.text.encodings.web.10.0.0.nupkg.sha512" + }, + "System.Text.Json/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Dpjwq9peG/Wt5BNbrzIhTpclfOSqBWZsUO28vVr59yQlkvL5jLBWfpfzRmJ1OY+6DciaY0DUcltyzs4fuZHjw==", + "path": "system.text.json/10.0.0", + "hashPath": "system.text.json.10.0.0.nupkg.sha512" + }, + "System.Threading.Channels/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fwRdkJpKisUEVNaEdsL5w5EwidzuVw0BOTfzDvYB1Yg8sq1pqNfUZxBOVFgSj6i6tNhpT3HP8BEDXf1+kFkTDA==", + "path": "system.threading.channels/10.0.0", + "hashPath": "system.threading.channels.10.0.0.nupkg.sha512" + } + }, + "runtimes": { + "win-x64": [ + "win", + "any", + "base" + ] + } +} \ No newline at end of file diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/SignalRTest.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/SignalRTest.dll new file mode 100644 index 0000000..3c5ddbe Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/SignalRTest.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/SignalRTest.exe b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/SignalRTest.exe new file mode 100644 index 0000000..6c90625 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/SignalRTest.exe differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/SignalRTest.pdb b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/SignalRTest.pdb new file mode 100644 index 0000000..c3af985 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/SignalRTest.pdb differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/SignalRTest.runtimeconfig.json b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/SignalRTest.runtimeconfig.json new file mode 100644 index 0000000..5fb4863 --- /dev/null +++ b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/SignalRTest.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "includedFrameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "8.0.19" + }, + { + "name": "Microsoft.WindowsDesktop.App", + "version": "8.0.19" + } + ], + "configProperties": { + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true, + "CSWINRT_USE_WINDOWS_UI_XAML_PROJECTIONS": false + } + } +} \ No newline at end of file diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.AppContext.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.AppContext.dll new file mode 100644 index 0000000..911384d Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.AppContext.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Buffers.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Buffers.dll new file mode 100644 index 0000000..849021d Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Buffers.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.CodeDom.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.CodeDom.dll new file mode 100644 index 0000000..a4962c9 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.CodeDom.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Collections.Concurrent.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Collections.Concurrent.dll new file mode 100644 index 0000000..fbd8905 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Collections.Concurrent.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Collections.Immutable.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Collections.Immutable.dll new file mode 100644 index 0000000..58162d6 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Collections.Immutable.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Collections.NonGeneric.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Collections.NonGeneric.dll new file mode 100644 index 0000000..efae083 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Collections.NonGeneric.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Collections.Specialized.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Collections.Specialized.dll new file mode 100644 index 0000000..8279651 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Collections.Specialized.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Collections.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Collections.dll new file mode 100644 index 0000000..7bc77bb Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Collections.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.ComponentModel.Annotations.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.ComponentModel.Annotations.dll new file mode 100644 index 0000000..b0c1dfa Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.ComponentModel.Annotations.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.ComponentModel.DataAnnotations.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 0000000..7a11004 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.ComponentModel.DataAnnotations.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.ComponentModel.EventBasedAsync.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 0000000..66f7b4c Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.ComponentModel.EventBasedAsync.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.ComponentModel.Primitives.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.ComponentModel.Primitives.dll new file mode 100644 index 0000000..c4091b7 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.ComponentModel.Primitives.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.ComponentModel.TypeConverter.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.ComponentModel.TypeConverter.dll new file mode 100644 index 0000000..37689d9 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.ComponentModel.TypeConverter.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.ComponentModel.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.ComponentModel.dll new file mode 100644 index 0000000..5d2a645 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.ComponentModel.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Configuration.ConfigurationManager.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Configuration.ConfigurationManager.dll new file mode 100644 index 0000000..82cd813 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Configuration.ConfigurationManager.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Configuration.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Configuration.dll new file mode 100644 index 0000000..5e06dec Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Configuration.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Console.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Console.dll new file mode 100644 index 0000000..947a2c2 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Console.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Core.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Core.dll new file mode 100644 index 0000000..89291f0 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Core.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Data.Common.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Data.Common.dll new file mode 100644 index 0000000..968ce61 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Data.Common.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Data.DataSetExtensions.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Data.DataSetExtensions.dll new file mode 100644 index 0000000..3a46a9c Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Data.DataSetExtensions.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Data.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Data.dll new file mode 100644 index 0000000..b87c84b Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Data.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Design.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Design.dll new file mode 100644 index 0000000..621348f Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Design.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.Contracts.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.Contracts.dll new file mode 100644 index 0000000..08fddcd Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.Contracts.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.Debug.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.Debug.dll new file mode 100644 index 0000000..5fdd11c Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.Debug.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.DiagnosticSource.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..9142854 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.DiagnosticSource.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.EventLog.Messages.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.EventLog.Messages.dll new file mode 100644 index 0000000..2664a3e Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.EventLog.Messages.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.EventLog.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.EventLog.dll new file mode 100644 index 0000000..d97e999 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.EventLog.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.FileVersionInfo.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.FileVersionInfo.dll new file mode 100644 index 0000000..ff490c3 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.FileVersionInfo.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.PerformanceCounter.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.PerformanceCounter.dll new file mode 100644 index 0000000..df48428 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.PerformanceCounter.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.Process.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.Process.dll new file mode 100644 index 0000000..b27a66b Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.Process.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.StackTrace.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..5d1d99d Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.StackTrace.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.TextWriterTraceListener.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 0000000..dbbfa76 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.Tools.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.Tools.dll new file mode 100644 index 0000000..3305261 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.Tools.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.TraceSource.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.TraceSource.dll new file mode 100644 index 0000000..0241559 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.TraceSource.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.Tracing.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.Tracing.dll new file mode 100644 index 0000000..f136c5d Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Diagnostics.Tracing.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.DirectoryServices.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.DirectoryServices.dll new file mode 100644 index 0000000..7bf4b08 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.DirectoryServices.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Drawing.Common.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Drawing.Common.dll new file mode 100644 index 0000000..d151f2b Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Drawing.Common.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Drawing.Design.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Drawing.Design.dll new file mode 100644 index 0000000..f11ed27 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Drawing.Design.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Drawing.Primitives.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Drawing.Primitives.dll new file mode 100644 index 0000000..d900721 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Drawing.Primitives.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Drawing.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Drawing.dll new file mode 100644 index 0000000..c510ac2 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Drawing.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Dynamic.Runtime.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Dynamic.Runtime.dll new file mode 100644 index 0000000..c189cb3 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Dynamic.Runtime.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Formats.Asn1.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Formats.Asn1.dll new file mode 100644 index 0000000..8627463 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Formats.Asn1.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Formats.Tar.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Formats.Tar.dll new file mode 100644 index 0000000..8f2ede6 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Formats.Tar.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Globalization.Calendars.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Globalization.Calendars.dll new file mode 100644 index 0000000..843adb1 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Globalization.Calendars.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Globalization.Extensions.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Globalization.Extensions.dll new file mode 100644 index 0000000..a2a05eb Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Globalization.Extensions.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Globalization.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Globalization.dll new file mode 100644 index 0000000..95f6dba Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Globalization.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.Compression.Brotli.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.Compression.Brotli.dll new file mode 100644 index 0000000..f9b1631 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.Compression.Brotli.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.Compression.FileSystem.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.Compression.FileSystem.dll new file mode 100644 index 0000000..0743734 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.Compression.FileSystem.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.Compression.Native.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.Compression.Native.dll new file mode 100644 index 0000000..5067235 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.Compression.Native.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.Compression.ZipFile.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.Compression.ZipFile.dll new file mode 100644 index 0000000..f389248 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.Compression.ZipFile.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.Compression.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.Compression.dll new file mode 100644 index 0000000..3134b7c Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.Compression.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.FileSystem.AccessControl.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.FileSystem.AccessControl.dll new file mode 100644 index 0000000..cff0690 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.FileSystem.AccessControl.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.FileSystem.DriveInfo.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.FileSystem.DriveInfo.dll new file mode 100644 index 0000000..e800665 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.FileSystem.DriveInfo.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.FileSystem.Primitives.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.FileSystem.Primitives.dll new file mode 100644 index 0000000..c835064 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.FileSystem.Primitives.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.FileSystem.Watcher.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.FileSystem.Watcher.dll new file mode 100644 index 0000000..649a881 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.FileSystem.Watcher.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.FileSystem.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.FileSystem.dll new file mode 100644 index 0000000..5c2cdab Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.FileSystem.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.IsolatedStorage.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.IsolatedStorage.dll new file mode 100644 index 0000000..d78796e Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.IsolatedStorage.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.MemoryMappedFiles.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..8b6c2d8 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.MemoryMappedFiles.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.Packaging.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.Packaging.dll new file mode 100644 index 0000000..f983808 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.Packaging.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.Pipelines.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.Pipelines.dll new file mode 100644 index 0000000..43bbcf0 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.Pipelines.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.Pipes.AccessControl.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.Pipes.AccessControl.dll new file mode 100644 index 0000000..25d474e Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.Pipes.AccessControl.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.Pipes.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.Pipes.dll new file mode 100644 index 0000000..d04a157 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.Pipes.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.UnmanagedMemoryStream.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.UnmanagedMemoryStream.dll new file mode 100644 index 0000000..aed2e6e Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.UnmanagedMemoryStream.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.dll new file mode 100644 index 0000000..b69dd11 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.IO.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Linq.Expressions.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Linq.Expressions.dll new file mode 100644 index 0000000..4ef6b66 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Linq.Expressions.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Linq.Parallel.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Linq.Parallel.dll new file mode 100644 index 0000000..1ce9b1b Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Linq.Parallel.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Linq.Queryable.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Linq.Queryable.dll new file mode 100644 index 0000000..3c9ca15 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Linq.Queryable.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Linq.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Linq.dll new file mode 100644 index 0000000..d6c5eb9 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Linq.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Memory.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Memory.dll new file mode 100644 index 0000000..c39e876 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Memory.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.Http.Json.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.Http.Json.dll new file mode 100644 index 0000000..17aafa4 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.Http.Json.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.Http.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.Http.dll new file mode 100644 index 0000000..7910abc Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.Http.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.HttpListener.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.HttpListener.dll new file mode 100644 index 0000000..df3fc1e Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.HttpListener.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.Mail.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.Mail.dll new file mode 100644 index 0000000..e3c416f Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.Mail.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.NameResolution.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.NameResolution.dll new file mode 100644 index 0000000..4911f9b Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.NameResolution.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.NetworkInformation.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.NetworkInformation.dll new file mode 100644 index 0000000..4f8f164 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.NetworkInformation.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.Ping.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.Ping.dll new file mode 100644 index 0000000..5489df6 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.Ping.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.Primitives.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.Primitives.dll new file mode 100644 index 0000000..da69687 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.Primitives.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.Quic.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.Quic.dll new file mode 100644 index 0000000..62c76d2 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.Quic.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.Requests.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.Requests.dll new file mode 100644 index 0000000..b6ca565 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.Requests.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.Security.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.Security.dll new file mode 100644 index 0000000..55968e2 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.Security.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.ServerSentEvents.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.ServerSentEvents.dll new file mode 100644 index 0000000..f9d9c88 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.ServerSentEvents.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.ServicePoint.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.ServicePoint.dll new file mode 100644 index 0000000..ac87634 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.ServicePoint.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.Sockets.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.Sockets.dll new file mode 100644 index 0000000..8503284 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.Sockets.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.WebClient.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.WebClient.dll new file mode 100644 index 0000000..28829bf Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.WebClient.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.WebHeaderCollection.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.WebHeaderCollection.dll new file mode 100644 index 0000000..2bb0ce8 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.WebHeaderCollection.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.WebProxy.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.WebProxy.dll new file mode 100644 index 0000000..321b22c Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.WebProxy.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.WebSockets.Client.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.WebSockets.Client.dll new file mode 100644 index 0000000..fc1b5fd Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.WebSockets.Client.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.WebSockets.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.WebSockets.dll new file mode 100644 index 0000000..50cb43d Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.WebSockets.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.dll new file mode 100644 index 0000000..3c31a18 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Net.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Numerics.Vectors.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Numerics.Vectors.dll new file mode 100644 index 0000000..91fb24a Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Numerics.Vectors.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Numerics.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Numerics.dll new file mode 100644 index 0000000..6ee19a8 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Numerics.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.ObjectModel.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.ObjectModel.dll new file mode 100644 index 0000000..3912129 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.ObjectModel.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Printing.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Printing.dll new file mode 100644 index 0000000..5467fb6 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Printing.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Private.CoreLib.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Private.CoreLib.dll new file mode 100644 index 0000000..c717859 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Private.CoreLib.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Private.DataContractSerialization.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Private.DataContractSerialization.dll new file mode 100644 index 0000000..ed34beb Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Private.DataContractSerialization.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Private.Uri.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Private.Uri.dll new file mode 100644 index 0000000..5393a52 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Private.Uri.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Private.Xml.Linq.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Private.Xml.Linq.dll new file mode 100644 index 0000000..fc99ba5 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Private.Xml.Linq.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Private.Xml.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Private.Xml.dll new file mode 100644 index 0000000..5105b08 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Private.Xml.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Reflection.DispatchProxy.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Reflection.DispatchProxy.dll new file mode 100644 index 0000000..c43680c Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Reflection.DispatchProxy.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Reflection.Emit.ILGeneration.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Reflection.Emit.ILGeneration.dll new file mode 100644 index 0000000..4aabc59 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Reflection.Emit.ILGeneration.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Reflection.Emit.Lightweight.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Reflection.Emit.Lightweight.dll new file mode 100644 index 0000000..33e77ef Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Reflection.Emit.Lightweight.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Reflection.Emit.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Reflection.Emit.dll new file mode 100644 index 0000000..2b04793 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Reflection.Emit.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Reflection.Extensions.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Reflection.Extensions.dll new file mode 100644 index 0000000..c13f120 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Reflection.Extensions.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Reflection.Metadata.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Reflection.Metadata.dll new file mode 100644 index 0000000..25f6f43 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Reflection.Metadata.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Reflection.Primitives.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Reflection.Primitives.dll new file mode 100644 index 0000000..7955f92 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Reflection.Primitives.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Reflection.TypeExtensions.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Reflection.TypeExtensions.dll new file mode 100644 index 0000000..497c6dc Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Reflection.TypeExtensions.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Reflection.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Reflection.dll new file mode 100644 index 0000000..9613392 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Reflection.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Resources.Extensions.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Resources.Extensions.dll new file mode 100644 index 0000000..66b906f Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Resources.Extensions.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Resources.Reader.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Resources.Reader.dll new file mode 100644 index 0000000..4e7e23e Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Resources.Reader.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Resources.ResourceManager.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Resources.ResourceManager.dll new file mode 100644 index 0000000..842a66b Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Resources.ResourceManager.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Resources.Writer.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Resources.Writer.dll new file mode 100644 index 0000000..ac67557 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Resources.Writer.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.CompilerServices.Unsafe.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 0000000..d2eab6b Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.CompilerServices.VisualC.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.CompilerServices.VisualC.dll new file mode 100644 index 0000000..878ed59 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.Extensions.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.Extensions.dll new file mode 100644 index 0000000..ee43631 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.Extensions.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.Handles.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.Handles.dll new file mode 100644 index 0000000..f77e68e Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.Handles.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.InteropServices.JavaScript.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.InteropServices.JavaScript.dll new file mode 100644 index 0000000..98302e9 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.InteropServices.JavaScript.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.InteropServices.RuntimeInformation.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 0000000..461fe4c Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.InteropServices.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.InteropServices.dll new file mode 100644 index 0000000..bf79ae4 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.InteropServices.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.Intrinsics.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.Intrinsics.dll new file mode 100644 index 0000000..004fbfd Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.Intrinsics.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.Loader.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.Loader.dll new file mode 100644 index 0000000..e47fc7c Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.Loader.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.Numerics.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.Numerics.dll new file mode 100644 index 0000000..d852be5 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.Numerics.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.Serialization.Formatters.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 0000000..d1b4c2c Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.Serialization.Formatters.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.Serialization.Json.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.Serialization.Json.dll new file mode 100644 index 0000000..a86339b Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.Serialization.Json.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.Serialization.Primitives.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 0000000..9c55b83 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.Serialization.Primitives.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.Serialization.Xml.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.Serialization.Xml.dll new file mode 100644 index 0000000..eead7d8 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.Serialization.Xml.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.Serialization.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.Serialization.dll new file mode 100644 index 0000000..d194bfe Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.Serialization.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.dll new file mode 100644 index 0000000..ee4decf Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Runtime.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.AccessControl.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.AccessControl.dll new file mode 100644 index 0000000..04c5b9e Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.AccessControl.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Claims.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Claims.dll new file mode 100644 index 0000000..809c666 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Claims.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Cryptography.Algorithms.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 0000000..5513a6a Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Cryptography.Algorithms.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Cryptography.Cng.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Cryptography.Cng.dll new file mode 100644 index 0000000..6773d65 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Cryptography.Cng.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Cryptography.Csp.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Cryptography.Csp.dll new file mode 100644 index 0000000..a639023 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Cryptography.Csp.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Cryptography.Encoding.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Cryptography.Encoding.dll new file mode 100644 index 0000000..8220545 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Cryptography.Encoding.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Cryptography.OpenSsl.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Cryptography.OpenSsl.dll new file mode 100644 index 0000000..604e114 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Cryptography.OpenSsl.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Cryptography.Pkcs.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Cryptography.Pkcs.dll new file mode 100644 index 0000000..6189c8b Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Cryptography.Pkcs.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Cryptography.Primitives.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Cryptography.Primitives.dll new file mode 100644 index 0000000..981b63c Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Cryptography.Primitives.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Cryptography.ProtectedData.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..0c99aed Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Cryptography.ProtectedData.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Cryptography.X509Certificates.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 0000000..ca8f08d Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Cryptography.X509Certificates.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Cryptography.Xml.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Cryptography.Xml.dll new file mode 100644 index 0000000..a82b064 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Cryptography.Xml.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Cryptography.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Cryptography.dll new file mode 100644 index 0000000..bf8316c Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Cryptography.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Permissions.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Permissions.dll new file mode 100644 index 0000000..12f38fc Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Permissions.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Principal.Windows.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Principal.Windows.dll new file mode 100644 index 0000000..e9b7d10 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Principal.Windows.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Principal.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Principal.dll new file mode 100644 index 0000000..685e7ff Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.Principal.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.SecureString.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.SecureString.dll new file mode 100644 index 0000000..e159f94 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.SecureString.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.dll new file mode 100644 index 0000000..151fc01 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Security.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.ServiceModel.Web.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.ServiceModel.Web.dll new file mode 100644 index 0000000..d8530b0 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.ServiceModel.Web.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.ServiceProcess.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.ServiceProcess.dll new file mode 100644 index 0000000..debccf1 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.ServiceProcess.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Text.Encoding.CodePages.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Text.Encoding.CodePages.dll new file mode 100644 index 0000000..c06f7ce Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Text.Encoding.CodePages.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Text.Encoding.Extensions.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Text.Encoding.Extensions.dll new file mode 100644 index 0000000..a335677 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Text.Encoding.Extensions.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Text.Encoding.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Text.Encoding.dll new file mode 100644 index 0000000..aee368b Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Text.Encoding.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Text.Encodings.Web.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..8b4b15a Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Text.Encodings.Web.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Text.Json.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Text.Json.dll new file mode 100644 index 0000000..81311a4 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Text.Json.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Text.RegularExpressions.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..69697d5 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Text.RegularExpressions.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Threading.AccessControl.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Threading.AccessControl.dll new file mode 100644 index 0000000..371366f Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Threading.AccessControl.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Threading.Channels.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Threading.Channels.dll new file mode 100644 index 0000000..a9d14aa Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Threading.Channels.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Threading.Overlapped.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Threading.Overlapped.dll new file mode 100644 index 0000000..f56b69e Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Threading.Overlapped.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Threading.Tasks.Dataflow.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Threading.Tasks.Dataflow.dll new file mode 100644 index 0000000..97e1aff Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Threading.Tasks.Dataflow.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Threading.Tasks.Extensions.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Threading.Tasks.Extensions.dll new file mode 100644 index 0000000..05c81df Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Threading.Tasks.Extensions.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Threading.Tasks.Parallel.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Threading.Tasks.Parallel.dll new file mode 100644 index 0000000..26bedfd Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Threading.Tasks.Parallel.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Threading.Tasks.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Threading.Tasks.dll new file mode 100644 index 0000000..99e1d16 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Threading.Tasks.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Threading.Thread.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Threading.Thread.dll new file mode 100644 index 0000000..094c743 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Threading.Thread.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Threading.ThreadPool.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Threading.ThreadPool.dll new file mode 100644 index 0000000..730d3aa Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Threading.ThreadPool.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Threading.Timer.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Threading.Timer.dll new file mode 100644 index 0000000..5b83b44 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Threading.Timer.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Threading.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Threading.dll new file mode 100644 index 0000000..d8674f2 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Threading.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Transactions.Local.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Transactions.Local.dll new file mode 100644 index 0000000..c7ddd99 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Transactions.Local.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Transactions.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Transactions.dll new file mode 100644 index 0000000..39e8765 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Transactions.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.ValueTuple.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.ValueTuple.dll new file mode 100644 index 0000000..1c93277 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.ValueTuple.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Web.HttpUtility.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Web.HttpUtility.dll new file mode 100644 index 0000000..0e0eeff Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Web.HttpUtility.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Web.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Web.dll new file mode 100644 index 0000000..85de81a Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Web.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Windows.Controls.Ribbon.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Windows.Controls.Ribbon.dll new file mode 100644 index 0000000..bf1e4c0 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Windows.Controls.Ribbon.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Windows.Extensions.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Windows.Extensions.dll new file mode 100644 index 0000000..7ae1141 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Windows.Extensions.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Windows.Forms.Design.Editors.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Windows.Forms.Design.Editors.dll new file mode 100644 index 0000000..d362b1b Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Windows.Forms.Design.Editors.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Windows.Forms.Design.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Windows.Forms.Design.dll new file mode 100644 index 0000000..89b3995 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Windows.Forms.Design.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Windows.Forms.Primitives.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Windows.Forms.Primitives.dll new file mode 100644 index 0000000..ec10f0a Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Windows.Forms.Primitives.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Windows.Forms.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Windows.Forms.dll new file mode 100644 index 0000000..0fc3d9b Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Windows.Forms.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Windows.Input.Manipulations.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Windows.Input.Manipulations.dll new file mode 100644 index 0000000..fe36996 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Windows.Input.Manipulations.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Windows.Presentation.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Windows.Presentation.dll new file mode 100644 index 0000000..2e16707 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Windows.Presentation.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Windows.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Windows.dll new file mode 100644 index 0000000..c3eb023 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Windows.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Xaml.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Xaml.dll new file mode 100644 index 0000000..aef7a55 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Xaml.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Xml.Linq.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Xml.Linq.dll new file mode 100644 index 0000000..937b2e2 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Xml.Linq.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Xml.ReaderWriter.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..b2fad6b Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Xml.ReaderWriter.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Xml.Serialization.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Xml.Serialization.dll new file mode 100644 index 0000000..c1b06ee Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Xml.Serialization.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Xml.XDocument.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Xml.XDocument.dll new file mode 100644 index 0000000..5897907 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Xml.XDocument.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Xml.XPath.XDocument.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Xml.XPath.XDocument.dll new file mode 100644 index 0000000..3faa3fa Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Xml.XPath.XDocument.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Xml.XPath.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Xml.XPath.dll new file mode 100644 index 0000000..feaff28 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Xml.XPath.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Xml.XmlDocument.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Xml.XmlDocument.dll new file mode 100644 index 0000000..22b2e97 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Xml.XmlDocument.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Xml.XmlSerializer.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Xml.XmlSerializer.dll new file mode 100644 index 0000000..d698d2e Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Xml.XmlSerializer.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Xml.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Xml.dll new file mode 100644 index 0000000..a3851bb Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.Xml.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.dll new file mode 100644 index 0000000..87fec71 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/System.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/UIAutomationClient.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/UIAutomationClient.dll new file mode 100644 index 0000000..2dc63c8 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/UIAutomationClient.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/UIAutomationClientSideProviders.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/UIAutomationClientSideProviders.dll new file mode 100644 index 0000000..230574a Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/UIAutomationClientSideProviders.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/UIAutomationProvider.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/UIAutomationProvider.dll new file mode 100644 index 0000000..ed2d920 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/UIAutomationProvider.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/UIAutomationTypes.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/UIAutomationTypes.dll new file mode 100644 index 0000000..4aa10c8 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/UIAutomationTypes.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/WindowsBase.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/WindowsBase.dll new file mode 100644 index 0000000..95e39ef Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/WindowsBase.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/WindowsFormsIntegration.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/WindowsFormsIntegration.dll new file mode 100644 index 0000000..310d7a4 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/WindowsFormsIntegration.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/clretwrc.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/clretwrc.dll new file mode 100644 index 0000000..8922fe3 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/clretwrc.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/clrgc.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/clrgc.dll new file mode 100644 index 0000000..3283092 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/clrgc.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/clrjit.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/clrjit.dll new file mode 100644 index 0000000..14c342d Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/clrjit.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/coreclr.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/coreclr.dll new file mode 100644 index 0000000..afd3bfd Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/coreclr.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/createdump.exe b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/createdump.exe new file mode 100644 index 0000000..7cfb00e Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/createdump.exe differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/Microsoft.VisualBasic.Forms.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..e0a15cc Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/PresentationCore.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/PresentationCore.resources.dll new file mode 100644 index 0000000..a48e960 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/PresentationCore.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/PresentationFramework.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/PresentationFramework.resources.dll new file mode 100644 index 0000000..af2f1fe Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/PresentationFramework.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/PresentationUI.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/PresentationUI.resources.dll new file mode 100644 index 0000000..036741c Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/PresentationUI.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/ReachFramework.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/ReachFramework.resources.dll new file mode 100644 index 0000000..7382e47 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/ReachFramework.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/System.Windows.Controls.Ribbon.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..6e35116 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/System.Windows.Forms.Design.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..fae62cc Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/System.Windows.Forms.Design.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/System.Windows.Forms.Primitives.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..dae819f Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/System.Windows.Forms.Primitives.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/System.Windows.Forms.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..5b3a9d6 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/System.Windows.Forms.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/System.Windows.Input.Manipulations.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..390b0e5 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/System.Windows.Input.Manipulations.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/System.Xaml.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/System.Xaml.resources.dll new file mode 100644 index 0000000..3918c65 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/System.Xaml.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/UIAutomationClient.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/UIAutomationClient.resources.dll new file mode 100644 index 0000000..975c3cb Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/UIAutomationClient.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/UIAutomationClientSideProviders.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..f8570de Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/UIAutomationClientSideProviders.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/UIAutomationProvider.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..3114cb2 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/UIAutomationProvider.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/UIAutomationTypes.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..2767996 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/UIAutomationTypes.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/WindowsBase.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/WindowsBase.resources.dll new file mode 100644 index 0000000..b7da515 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/WindowsBase.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/WindowsFormsIntegration.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..55fa0a2 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/cs/WindowsFormsIntegration.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/Microsoft.VisualBasic.Forms.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..b322228 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/PresentationCore.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/PresentationCore.resources.dll new file mode 100644 index 0000000..8bba3a3 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/PresentationCore.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/PresentationFramework.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/PresentationFramework.resources.dll new file mode 100644 index 0000000..88aeb6b Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/PresentationFramework.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/PresentationUI.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/PresentationUI.resources.dll new file mode 100644 index 0000000..d57f659 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/PresentationUI.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/ReachFramework.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/ReachFramework.resources.dll new file mode 100644 index 0000000..33b88a5 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/ReachFramework.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/System.Windows.Controls.Ribbon.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..dc0e376 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/System.Windows.Forms.Design.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..02cc0ac Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/System.Windows.Forms.Design.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/System.Windows.Forms.Primitives.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..17542ca Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/System.Windows.Forms.Primitives.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/System.Windows.Forms.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..571550c Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/System.Windows.Forms.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/System.Windows.Input.Manipulations.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..05141ba Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/System.Windows.Input.Manipulations.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/System.Xaml.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/System.Xaml.resources.dll new file mode 100644 index 0000000..9ed3545 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/System.Xaml.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/UIAutomationClient.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/UIAutomationClient.resources.dll new file mode 100644 index 0000000..1ede5df Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/UIAutomationClient.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/UIAutomationClientSideProviders.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..74f579f Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/UIAutomationClientSideProviders.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/UIAutomationProvider.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..c630b10 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/UIAutomationProvider.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/UIAutomationTypes.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..125a8c9 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/UIAutomationTypes.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/WindowsBase.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/WindowsBase.resources.dll new file mode 100644 index 0000000..dfad1c7 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/WindowsBase.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/WindowsFormsIntegration.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..6855474 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/de/WindowsFormsIntegration.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/Microsoft.VisualBasic.Forms.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..653bfb0 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/PresentationCore.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/PresentationCore.resources.dll new file mode 100644 index 0000000..4dafb5d Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/PresentationCore.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/PresentationFramework.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/PresentationFramework.resources.dll new file mode 100644 index 0000000..210f831 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/PresentationFramework.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/PresentationUI.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/PresentationUI.resources.dll new file mode 100644 index 0000000..89d05e3 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/PresentationUI.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/ReachFramework.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/ReachFramework.resources.dll new file mode 100644 index 0000000..10fff72 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/ReachFramework.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/System.Windows.Controls.Ribbon.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..15f8cd4 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/System.Windows.Forms.Design.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..caa8e99 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/System.Windows.Forms.Design.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/System.Windows.Forms.Primitives.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..987074f Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/System.Windows.Forms.Primitives.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/System.Windows.Forms.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..f151ab1 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/System.Windows.Forms.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/System.Windows.Input.Manipulations.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..5490987 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/System.Windows.Input.Manipulations.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/System.Xaml.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/System.Xaml.resources.dll new file mode 100644 index 0000000..712372f Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/System.Xaml.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/UIAutomationClient.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/UIAutomationClient.resources.dll new file mode 100644 index 0000000..fc6e2a1 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/UIAutomationClient.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/UIAutomationClientSideProviders.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..4de52f8 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/UIAutomationClientSideProviders.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/UIAutomationProvider.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..b8aae76 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/UIAutomationProvider.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/UIAutomationTypes.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..3c50be5 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/UIAutomationTypes.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/WindowsBase.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/WindowsBase.resources.dll new file mode 100644 index 0000000..24dac5b Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/WindowsBase.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/WindowsFormsIntegration.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..7743aa1 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/es/WindowsFormsIntegration.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/Microsoft.VisualBasic.Forms.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..a93e7bd Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/PresentationCore.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/PresentationCore.resources.dll new file mode 100644 index 0000000..6239b4c Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/PresentationCore.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/PresentationFramework.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/PresentationFramework.resources.dll new file mode 100644 index 0000000..9724dd4 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/PresentationFramework.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/PresentationUI.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/PresentationUI.resources.dll new file mode 100644 index 0000000..12a10c3 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/PresentationUI.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/ReachFramework.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/ReachFramework.resources.dll new file mode 100644 index 0000000..a5762a1 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/ReachFramework.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/System.Windows.Controls.Ribbon.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..dd28c62 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/System.Windows.Forms.Design.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..6a74239 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/System.Windows.Forms.Design.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/System.Windows.Forms.Primitives.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..ee0322e Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/System.Windows.Forms.Primitives.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/System.Windows.Forms.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..ef1a8fb Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/System.Windows.Forms.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/System.Windows.Input.Manipulations.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..a47f60c Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/System.Windows.Input.Manipulations.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/System.Xaml.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/System.Xaml.resources.dll new file mode 100644 index 0000000..aa63744 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/System.Xaml.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/UIAutomationClient.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/UIAutomationClient.resources.dll new file mode 100644 index 0000000..a90dbe3 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/UIAutomationClient.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/UIAutomationClientSideProviders.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..d5d7c04 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/UIAutomationClientSideProviders.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/UIAutomationProvider.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..ab6588b Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/UIAutomationProvider.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/UIAutomationTypes.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..af87827 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/UIAutomationTypes.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/WindowsBase.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/WindowsBase.resources.dll new file mode 100644 index 0000000..2d3831b Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/WindowsBase.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/WindowsFormsIntegration.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..45f3b57 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/fr/WindowsFormsIntegration.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/hostfxr.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/hostfxr.dll new file mode 100644 index 0000000..34df33b Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/hostfxr.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/hostpolicy.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/hostpolicy.dll new file mode 100644 index 0000000..9cbf147 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/hostpolicy.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/Microsoft.VisualBasic.Forms.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..6b8299a Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/PresentationCore.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/PresentationCore.resources.dll new file mode 100644 index 0000000..f1df07a Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/PresentationCore.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/PresentationFramework.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/PresentationFramework.resources.dll new file mode 100644 index 0000000..c6fae71 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/PresentationFramework.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/PresentationUI.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/PresentationUI.resources.dll new file mode 100644 index 0000000..25685f3 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/PresentationUI.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/ReachFramework.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/ReachFramework.resources.dll new file mode 100644 index 0000000..abd3fef Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/ReachFramework.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/System.Windows.Controls.Ribbon.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..038c6ec Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/System.Windows.Forms.Design.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..a837049 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/System.Windows.Forms.Design.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/System.Windows.Forms.Primitives.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..72361eb Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/System.Windows.Forms.Primitives.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/System.Windows.Forms.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..1465cae Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/System.Windows.Forms.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/System.Windows.Input.Manipulations.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..097f27a Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/System.Windows.Input.Manipulations.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/System.Xaml.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/System.Xaml.resources.dll new file mode 100644 index 0000000..8a4d519 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/System.Xaml.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/UIAutomationClient.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/UIAutomationClient.resources.dll new file mode 100644 index 0000000..a5c67ea Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/UIAutomationClient.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/UIAutomationClientSideProviders.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..0472fba Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/UIAutomationClientSideProviders.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/UIAutomationProvider.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..d7f7825 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/UIAutomationProvider.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/UIAutomationTypes.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..e788d06 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/UIAutomationTypes.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/WindowsBase.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/WindowsBase.resources.dll new file mode 100644 index 0000000..a8a1b35 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/WindowsBase.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/WindowsFormsIntegration.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..3854ea4 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/it/WindowsFormsIntegration.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/Microsoft.VisualBasic.Forms.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..be2f8e1 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/PresentationCore.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/PresentationCore.resources.dll new file mode 100644 index 0000000..e62beab Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/PresentationCore.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/PresentationFramework.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/PresentationFramework.resources.dll new file mode 100644 index 0000000..6179e37 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/PresentationFramework.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/PresentationUI.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/PresentationUI.resources.dll new file mode 100644 index 0000000..4b82925 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/PresentationUI.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/ReachFramework.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/ReachFramework.resources.dll new file mode 100644 index 0000000..d514d4f Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/ReachFramework.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/System.Windows.Controls.Ribbon.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..a5751d6 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/System.Windows.Forms.Design.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..345e032 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/System.Windows.Forms.Design.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/System.Windows.Forms.Primitives.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..592601c Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/System.Windows.Forms.Primitives.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/System.Windows.Forms.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..b68a9a8 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/System.Windows.Forms.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/System.Windows.Input.Manipulations.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..2fbb5b3 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/System.Windows.Input.Manipulations.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/System.Xaml.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/System.Xaml.resources.dll new file mode 100644 index 0000000..0f06b93 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/System.Xaml.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/UIAutomationClient.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/UIAutomationClient.resources.dll new file mode 100644 index 0000000..dad669e Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/UIAutomationClient.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/UIAutomationClientSideProviders.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..a245367 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/UIAutomationClientSideProviders.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/UIAutomationProvider.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..e3141e6 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/UIAutomationProvider.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/UIAutomationTypes.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..2ced666 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/UIAutomationTypes.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/WindowsBase.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/WindowsBase.resources.dll new file mode 100644 index 0000000..9de360a Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/WindowsBase.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/WindowsFormsIntegration.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..7975394 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ja/WindowsFormsIntegration.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/Microsoft.VisualBasic.Forms.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..669b608 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/PresentationCore.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/PresentationCore.resources.dll new file mode 100644 index 0000000..ff129b0 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/PresentationCore.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/PresentationFramework.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/PresentationFramework.resources.dll new file mode 100644 index 0000000..793bf75 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/PresentationFramework.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/PresentationUI.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/PresentationUI.resources.dll new file mode 100644 index 0000000..c789844 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/PresentationUI.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/ReachFramework.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/ReachFramework.resources.dll new file mode 100644 index 0000000..0063c7d Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/ReachFramework.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/System.Windows.Controls.Ribbon.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..31ac134 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/System.Windows.Forms.Design.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..9a30454 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/System.Windows.Forms.Design.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/System.Windows.Forms.Primitives.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..e1d52cd Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/System.Windows.Forms.Primitives.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/System.Windows.Forms.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..90240fa Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/System.Windows.Forms.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/System.Windows.Input.Manipulations.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..c01f572 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/System.Windows.Input.Manipulations.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/System.Xaml.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/System.Xaml.resources.dll new file mode 100644 index 0000000..6fc4e5a Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/System.Xaml.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/UIAutomationClient.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/UIAutomationClient.resources.dll new file mode 100644 index 0000000..4fe3677 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/UIAutomationClient.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/UIAutomationClientSideProviders.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..ffe8861 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/UIAutomationClientSideProviders.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/UIAutomationProvider.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..343e137 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/UIAutomationProvider.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/UIAutomationTypes.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..4faf416 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/UIAutomationTypes.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/WindowsBase.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/WindowsBase.resources.dll new file mode 100644 index 0000000..b9afd58 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/WindowsBase.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/WindowsFormsIntegration.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..68a6a1b Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ko/WindowsFormsIntegration.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/mscordaccore.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/mscordaccore.dll new file mode 100644 index 0000000..9464f79 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/mscordaccore.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/mscordaccore_amd64_amd64_8.0.1925.36514.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/mscordaccore_amd64_amd64_8.0.1925.36514.dll new file mode 100644 index 0000000..9464f79 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/mscordaccore_amd64_amd64_8.0.1925.36514.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/mscordbi.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/mscordbi.dll new file mode 100644 index 0000000..1286d91 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/mscordbi.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/mscorlib.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/mscorlib.dll new file mode 100644 index 0000000..100b5de Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/mscorlib.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/mscorrc.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/mscorrc.dll new file mode 100644 index 0000000..619ae86 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/mscorrc.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/msquic.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/msquic.dll new file mode 100644 index 0000000..2a1350a Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/msquic.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/netstandard.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/netstandard.dll new file mode 100644 index 0000000..6079e82 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/netstandard.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/Microsoft.VisualBasic.Forms.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..269a74e Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/PresentationCore.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/PresentationCore.resources.dll new file mode 100644 index 0000000..0a21bf4 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/PresentationCore.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/PresentationFramework.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/PresentationFramework.resources.dll new file mode 100644 index 0000000..348aff2 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/PresentationFramework.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/PresentationUI.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/PresentationUI.resources.dll new file mode 100644 index 0000000..2ef0357 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/PresentationUI.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/ReachFramework.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/ReachFramework.resources.dll new file mode 100644 index 0000000..6cb2ea8 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/ReachFramework.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/System.Windows.Controls.Ribbon.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..af87741 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/System.Windows.Forms.Design.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..0a6b8f4 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/System.Windows.Forms.Design.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/System.Windows.Forms.Primitives.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..fd10b0f Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/System.Windows.Forms.Primitives.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/System.Windows.Forms.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..08cc8ec Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/System.Windows.Forms.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/System.Windows.Input.Manipulations.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..9188076 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/System.Windows.Input.Manipulations.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/System.Xaml.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/System.Xaml.resources.dll new file mode 100644 index 0000000..75cbda0 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/System.Xaml.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/UIAutomationClient.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/UIAutomationClient.resources.dll new file mode 100644 index 0000000..f334976 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/UIAutomationClient.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/UIAutomationClientSideProviders.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..0a58788 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/UIAutomationClientSideProviders.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/UIAutomationProvider.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..5216240 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/UIAutomationProvider.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/UIAutomationTypes.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..4454b0b Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/UIAutomationTypes.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/WindowsBase.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/WindowsBase.resources.dll new file mode 100644 index 0000000..4109d38 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/WindowsBase.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/WindowsFormsIntegration.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..2d8f409 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pl/WindowsFormsIntegration.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/Microsoft.VisualBasic.Forms.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..9b6ddc4 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/PresentationCore.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/PresentationCore.resources.dll new file mode 100644 index 0000000..1858f76 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/PresentationCore.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/PresentationFramework.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/PresentationFramework.resources.dll new file mode 100644 index 0000000..585d6df Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/PresentationFramework.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/PresentationUI.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/PresentationUI.resources.dll new file mode 100644 index 0000000..5e031f4 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/PresentationUI.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/ReachFramework.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/ReachFramework.resources.dll new file mode 100644 index 0000000..21889f4 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/ReachFramework.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/System.Windows.Controls.Ribbon.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..d957ced Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/System.Windows.Forms.Design.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..3d370b0 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/System.Windows.Forms.Design.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/System.Windows.Forms.Primitives.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..e9f52a7 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/System.Windows.Forms.Primitives.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/System.Windows.Forms.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..115a3af Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/System.Windows.Forms.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/System.Windows.Input.Manipulations.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..3513000 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/System.Windows.Input.Manipulations.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/System.Xaml.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/System.Xaml.resources.dll new file mode 100644 index 0000000..0bf6632 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/System.Xaml.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/UIAutomationClient.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/UIAutomationClient.resources.dll new file mode 100644 index 0000000..8c09cea Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/UIAutomationClient.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/UIAutomationClientSideProviders.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..89da7e6 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/UIAutomationClientSideProviders.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/UIAutomationProvider.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..bd26537 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/UIAutomationProvider.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/UIAutomationTypes.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..365b975 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/UIAutomationTypes.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/WindowsBase.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/WindowsBase.resources.dll new file mode 100644 index 0000000..ca1f8ad Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/WindowsBase.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/WindowsFormsIntegration.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..4a8fce4 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/pt-BR/WindowsFormsIntegration.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/Microsoft.VisualBasic.Forms.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..c2d02b3 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/PresentationCore.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/PresentationCore.resources.dll new file mode 100644 index 0000000..ae9f7a8 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/PresentationCore.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/PresentationFramework.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/PresentationFramework.resources.dll new file mode 100644 index 0000000..cb296a9 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/PresentationFramework.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/PresentationUI.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/PresentationUI.resources.dll new file mode 100644 index 0000000..0fa65bd Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/PresentationUI.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/ReachFramework.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/ReachFramework.resources.dll new file mode 100644 index 0000000..91c0b84 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/ReachFramework.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/System.Windows.Controls.Ribbon.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..07b3a30 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/System.Windows.Forms.Design.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..08045c7 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/System.Windows.Forms.Design.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/System.Windows.Forms.Primitives.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..7ebaa33 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/System.Windows.Forms.Primitives.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/System.Windows.Forms.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..2d13152 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/System.Windows.Forms.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/System.Windows.Input.Manipulations.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..ff8f737 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/System.Windows.Input.Manipulations.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/System.Xaml.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/System.Xaml.resources.dll new file mode 100644 index 0000000..32e31f3 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/System.Xaml.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/UIAutomationClient.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/UIAutomationClient.resources.dll new file mode 100644 index 0000000..3bb6761 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/UIAutomationClient.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/UIAutomationClientSideProviders.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..de06d39 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/UIAutomationClientSideProviders.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/UIAutomationProvider.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..01617c0 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/UIAutomationProvider.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/UIAutomationTypes.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..b1ffc4f Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/UIAutomationTypes.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/WindowsBase.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/WindowsBase.resources.dll new file mode 100644 index 0000000..966de5f Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/WindowsBase.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/WindowsFormsIntegration.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..2c4eac3 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/ru/WindowsFormsIntegration.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/Microsoft.VisualBasic.Forms.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..40675b3 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/PresentationCore.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/PresentationCore.resources.dll new file mode 100644 index 0000000..853bf59 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/PresentationCore.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/PresentationFramework.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/PresentationFramework.resources.dll new file mode 100644 index 0000000..66c16ab Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/PresentationFramework.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/PresentationUI.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/PresentationUI.resources.dll new file mode 100644 index 0000000..02dff28 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/PresentationUI.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/ReachFramework.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/ReachFramework.resources.dll new file mode 100644 index 0000000..5cc2f47 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/ReachFramework.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/System.Windows.Controls.Ribbon.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..50cfffd Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/System.Windows.Forms.Design.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..53a9caf Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/System.Windows.Forms.Design.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/System.Windows.Forms.Primitives.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..40cfae3 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/System.Windows.Forms.Primitives.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/System.Windows.Forms.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..95d6398 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/System.Windows.Forms.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/System.Windows.Input.Manipulations.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..b15e4be Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/System.Windows.Input.Manipulations.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/System.Xaml.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/System.Xaml.resources.dll new file mode 100644 index 0000000..334a4b9 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/System.Xaml.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/UIAutomationClient.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/UIAutomationClient.resources.dll new file mode 100644 index 0000000..718456e Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/UIAutomationClient.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/UIAutomationClientSideProviders.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..a053ca7 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/UIAutomationClientSideProviders.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/UIAutomationProvider.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..489aa4a Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/UIAutomationProvider.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/UIAutomationTypes.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..fedc56c Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/UIAutomationTypes.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/WindowsBase.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/WindowsBase.resources.dll new file mode 100644 index 0000000..b428e08 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/WindowsBase.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/WindowsFormsIntegration.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..9ac6045 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/tr/WindowsFormsIntegration.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/vcruntime140_cor3.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/vcruntime140_cor3.dll new file mode 100644 index 0000000..411009b Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/vcruntime140_cor3.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/wpfgfx_cor3.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/wpfgfx_cor3.dll new file mode 100644 index 0000000..ca33699 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/wpfgfx_cor3.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/Microsoft.VisualBasic.Forms.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..849c2f5 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/PresentationCore.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/PresentationCore.resources.dll new file mode 100644 index 0000000..f9b585c Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/PresentationCore.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/PresentationFramework.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/PresentationFramework.resources.dll new file mode 100644 index 0000000..5c14229 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/PresentationFramework.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/PresentationUI.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/PresentationUI.resources.dll new file mode 100644 index 0000000..7450001 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/PresentationUI.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/ReachFramework.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/ReachFramework.resources.dll new file mode 100644 index 0000000..1801754 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/ReachFramework.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/System.Windows.Controls.Ribbon.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..4d540f9 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/System.Windows.Forms.Design.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..87b5ee5 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/System.Windows.Forms.Design.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/System.Windows.Forms.Primitives.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..8863ab1 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/System.Windows.Forms.Primitives.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/System.Windows.Forms.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..39e940f Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/System.Windows.Forms.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/System.Windows.Input.Manipulations.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..28a13ae Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/System.Windows.Input.Manipulations.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/System.Xaml.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/System.Xaml.resources.dll new file mode 100644 index 0000000..f36b742 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/System.Xaml.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/UIAutomationClient.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/UIAutomationClient.resources.dll new file mode 100644 index 0000000..0338d5c Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/UIAutomationClient.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/UIAutomationClientSideProviders.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..97b171c Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/UIAutomationClientSideProviders.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/UIAutomationProvider.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..cf08f98 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/UIAutomationProvider.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/UIAutomationTypes.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..77131cd Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/UIAutomationTypes.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/WindowsBase.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/WindowsBase.resources.dll new file mode 100644 index 0000000..bbefe8b Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/WindowsBase.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/WindowsFormsIntegration.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..328c290 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hans/WindowsFormsIntegration.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/Microsoft.VisualBasic.Forms.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..464aae8 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/PresentationCore.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/PresentationCore.resources.dll new file mode 100644 index 0000000..644efb6 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/PresentationCore.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/PresentationFramework.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/PresentationFramework.resources.dll new file mode 100644 index 0000000..c7965a9 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/PresentationFramework.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/PresentationUI.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/PresentationUI.resources.dll new file mode 100644 index 0000000..abe987f Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/PresentationUI.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/ReachFramework.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/ReachFramework.resources.dll new file mode 100644 index 0000000..355e356 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/ReachFramework.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/System.Windows.Controls.Ribbon.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..1e53be9 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/System.Windows.Forms.Design.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..b01eea3 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/System.Windows.Forms.Design.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/System.Windows.Forms.Primitives.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..8b6d55a Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/System.Windows.Forms.Primitives.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/System.Windows.Forms.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..04de2c7 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/System.Windows.Forms.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/System.Windows.Input.Manipulations.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..1f55543 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/System.Windows.Input.Manipulations.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/System.Xaml.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/System.Xaml.resources.dll new file mode 100644 index 0000000..9fef38b Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/System.Xaml.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/UIAutomationClient.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/UIAutomationClient.resources.dll new file mode 100644 index 0000000..d27bad7 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/UIAutomationClient.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/UIAutomationClientSideProviders.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..d0e6df0 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/UIAutomationClientSideProviders.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/UIAutomationProvider.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..bc503ee Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/UIAutomationProvider.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/UIAutomationTypes.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..79b1a00 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/UIAutomationTypes.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/WindowsBase.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/WindowsBase.resources.dll new file mode 100644 index 0000000..bd92450 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/WindowsBase.resources.dll differ diff --git a/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/WindowsFormsIntegration.resources.dll b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..c664278 Binary files /dev/null and b/backend/SignalRTest/bin/Release/net8.0-windows/win-x64/zh-Hant/WindowsFormsIntegration.resources.dll differ diff --git a/backend/SignalRTest/obj/Debug/net8.0-windows/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/backend/SignalRTest/obj/Debug/net8.0-windows/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/backend/SignalRTest/obj/Debug/net8.0-windows/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRT.5CF90B77.Up2Date b/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRT.5CF90B77.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.AssemblyInfo.cs b/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.AssemblyInfo.cs new file mode 100644 index 0000000..6e68c6a --- /dev/null +++ b/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("SignalRTest")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+219665d4657ce917f2ec72657b9e54ab4daccc10")] +[assembly: System.Reflection.AssemblyProductAttribute("SignalRTest")] +[assembly: System.Reflection.AssemblyTitleAttribute("SignalRTest")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.AssemblyInfoInputs.cache b/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.AssemblyInfoInputs.cache new file mode 100644 index 0000000..e0e86c9 --- /dev/null +++ b/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +7b34bc95a170122dd9a850b10d96882caa3af0e14348359c3820644e1bf59d7d diff --git a/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.Form1.resources b/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.Form1.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.Form1.resources differ diff --git a/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.GeneratedMSBuildEditorConfig.editorconfig b/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..9aa82f8 --- /dev/null +++ b/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.GeneratedMSBuildEditorConfig.editorconfig @@ -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 = SignalRTest +build_property.ProjectDir = C:\Users\nanxun\Documents\IM\backend\SignalRTest\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.CsWinRTUseWindowsUIXamlProjections = false +build_property.EffectiveAnalysisLevelStyle = 8.0 +build_property.EnableCodeStyleSeverity = diff --git a/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.GlobalUsings.g.cs b/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.GlobalUsings.g.cs new file mode 100644 index 0000000..84bbb89 --- /dev/null +++ b/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.GlobalUsings.g.cs @@ -0,0 +1,10 @@ +// +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; diff --git a/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.assets.cache b/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.assets.cache new file mode 100644 index 0000000..82194fe Binary files /dev/null and b/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.assets.cache differ diff --git a/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.csproj.AssemblyReference.cache b/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.csproj.AssemblyReference.cache new file mode 100644 index 0000000..91e3c2d Binary files /dev/null and b/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.csproj.AssemblyReference.cache differ diff --git a/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.csproj.BuildWithSkipAnalyzers b/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.csproj.CoreCompileInputs.cache b/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..2a2e766 --- /dev/null +++ b/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +798df1c64700bafd0af19dbc122dfc8329d96a84decc4c645cf227078afc5b70 diff --git a/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.csproj.FileListAbsolute.txt b/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..219b150 --- /dev/null +++ b/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.csproj.FileListAbsolute.txt @@ -0,0 +1,41 @@ +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Debug\net8.0-windows\SignalRTest.exe +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Debug\net8.0-windows\SignalRTest.deps.json +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Debug\net8.0-windows\SignalRTest.runtimeconfig.json +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Debug\net8.0-windows\SignalRTest.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Debug\net8.0-windows\SignalRTest.pdb +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Debug\net8.0-windows\Microsoft.AspNetCore.Connections.Abstractions.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Debug\net8.0-windows\Microsoft.AspNetCore.Http.Connections.Client.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Debug\net8.0-windows\Microsoft.AspNetCore.Http.Connections.Common.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Debug\net8.0-windows\Microsoft.AspNetCore.SignalR.Client.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Debug\net8.0-windows\Microsoft.AspNetCore.SignalR.Client.Core.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Debug\net8.0-windows\Microsoft.AspNetCore.SignalR.Common.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Debug\net8.0-windows\Microsoft.AspNetCore.SignalR.Protocols.Json.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Debug\net8.0-windows\Microsoft.Bcl.AsyncInterfaces.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Debug\net8.0-windows\Microsoft.Bcl.TimeProvider.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Debug\net8.0-windows\Microsoft.Extensions.DependencyInjection.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Debug\net8.0-windows\Microsoft.Extensions.DependencyInjection.Abstractions.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Debug\net8.0-windows\Microsoft.Extensions.Features.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Debug\net8.0-windows\Microsoft.Extensions.Logging.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Debug\net8.0-windows\Microsoft.Extensions.Logging.Abstractions.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Debug\net8.0-windows\Microsoft.Extensions.Options.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Debug\net8.0-windows\Microsoft.Extensions.Primitives.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Debug\net8.0-windows\System.Diagnostics.DiagnosticSource.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Debug\net8.0-windows\System.IO.Pipelines.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Debug\net8.0-windows\System.Net.ServerSentEvents.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Debug\net8.0-windows\System.Text.Encodings.Web.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Debug\net8.0-windows\System.Text.Json.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Debug\net8.0-windows\System.Threading.Channels.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Debug\net8.0-windows\runtimes\browser\lib\net8.0\System.Text.Encodings.Web.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Debug\net8.0-windows\SignalRTest.csproj.AssemblyReference.cache +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Debug\net8.0-windows\SignalRTest.Form1.resources +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Debug\net8.0-windows\SignalRTest.csproj.GenerateResource.cache +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Debug\net8.0-windows\SignalRTest.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Debug\net8.0-windows\SignalRTest.AssemblyInfoInputs.cache +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Debug\net8.0-windows\SignalRTest.AssemblyInfo.cs +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Debug\net8.0-windows\SignalRTest.csproj.CoreCompileInputs.cache +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Debug\net8.0-windows\SignalRT.5CF90B77.Up2Date +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Debug\net8.0-windows\SignalRTest.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Debug\net8.0-windows\refint\SignalRTest.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Debug\net8.0-windows\SignalRTest.pdb +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Debug\net8.0-windows\SignalRTest.genruntimeconfig.cache +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Debug\net8.0-windows\ref\SignalRTest.dll diff --git a/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.csproj.GenerateResource.cache b/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.csproj.GenerateResource.cache new file mode 100644 index 0000000..3e471bf Binary files /dev/null and b/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.csproj.GenerateResource.cache differ diff --git a/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.designer.deps.json b/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.designer.deps.json new file mode 100644 index 0000000..d315bf2 --- /dev/null +++ b/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.designer.deps.json @@ -0,0 +1,406 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "Microsoft.AspNetCore.Connections.Abstractions/10.0.0": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "10.0.0", + "Microsoft.Extensions.Features": "10.0.0", + "System.IO.Pipelines": "10.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.AspNetCore.Connections.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.AspNetCore.Http.Connections.Client/10.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Connections.Common": "10.0.0", + "Microsoft.Extensions.Logging.Abstractions": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0", + "System.Net.ServerSentEvents": "10.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Client.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.AspNetCore.Http.Connections.Common/10.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "10.0.0", + "System.Text.Json": "10.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.AspNetCore.SignalR.Client/10.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Connections.Client": "10.0.0", + "Microsoft.AspNetCore.SignalR.Client.Core": "10.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.AspNetCore.SignalR.Client.Core/10.0.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "10.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "10.0.0", + "Microsoft.Bcl.TimeProvider": "10.0.0", + "Microsoft.Extensions.DependencyInjection": "10.0.0", + "Microsoft.Extensions.Logging": "10.0.0", + "System.Threading.Channels": "10.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.Core.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.AspNetCore.SignalR.Common/10.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0", + "System.Text.Json": "10.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/10.0.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "10.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/10.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Bcl.TimeProvider/10.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Bcl.TimeProvider.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.DependencyInjection/10.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Features/10.0.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Features.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Logging/10.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "10.0.0", + "Microsoft.Extensions.Logging.Abstractions": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", + "System.Diagnostics.DiagnosticSource": "10.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Options/10.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", + "Microsoft.Extensions.Primitives": "10.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Primitives/10.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "System.Diagnostics.DiagnosticSource/10.0.0": { + "runtime": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "System.IO.Pipelines/10.0.0": { + "runtime": { + "lib/net8.0/System.IO.Pipelines.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "System.Net.ServerSentEvents/10.0.0": { + "runtime": { + "lib/net8.0/System.Net.ServerSentEvents.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "System.Text.Encodings.Web/10.0.0": { + "runtime": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + }, + "runtimeTargets": { + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll": { + "rid": "browser", + "assetType": "runtime", + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "System.Text.Json/10.0.0": { + "dependencies": { + "System.IO.Pipelines": "10.0.0", + "System.Text.Encodings.Web": "10.0.0" + }, + "runtime": { + "lib/net8.0/System.Text.Json.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "System.Threading.Channels/10.0.0": { + "runtime": { + "lib/net8.0/System.Threading.Channels.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + } + } + }, + "libraries": { + "Microsoft.AspNetCore.Connections.Abstractions/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MPXDzUknemj+sCL/LYOLvU/qIX3o9zCJtKXu9jcwNMQiOvwuv75lV20p3qGENA/ynTH7hOPFqDUEGBT30IvhEA==", + "path": "microsoft.aspnetcore.connections.abstractions/10.0.0", + "hashPath": "microsoft.aspnetcore.connections.abstractions.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Connections.Client/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7nSER+de0V6mWTcdUqBJZlm1XMz+Y2mTHzL3B/msVF+JfSXXZtKNVC18TI7AeSz4PD//b5qpy8n0RQEIVByfJw==", + "path": "microsoft.aspnetcore.http.connections.client/10.0.0", + "hashPath": "microsoft.aspnetcore.http.connections.client.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Connections.Common/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VaEGwazymaL4NB+JoAdvM/IaFg5IIg1WXtVgKmD/y3Et2qnPxolAlMXYJrI8k1EPjmoIcXQZHTj47MskRRyRIA==", + "path": "microsoft.aspnetcore.http.connections.common/10.0.0", + "hashPath": "microsoft.aspnetcore.http.connections.common.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Client/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XHPNPLqPX7CVJ5JuaumTP58sAVrQG4TqFKLFOtN1mZIwgEUHKwtDeMwL0G8dIvy9zcpi7os4CYAHvA1bUUTzVw==", + "path": "microsoft.aspnetcore.signalr.client/10.0.0", + "hashPath": "microsoft.aspnetcore.signalr.client.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Client.Core/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MrXjT7YNV0e1Jb3Hai6kX/Ot7X2SlONHv5IC5XNGeycTTLu3qitJ7DXZUsPPZs6yanWIOsIKjPEY58ARHdRKGg==", + "path": "microsoft.aspnetcore.signalr.client.core/10.0.0", + "hashPath": "microsoft.aspnetcore.signalr.client.core.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Common/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pyG6FLV4/EeOQeZ30ra4aUYycJQPT/9ddB91aplMKwEGT5KbEs//WMqMObVGvDREP508EB4QUAKzacSVi30nxw==", + "path": "microsoft.aspnetcore.signalr.common/10.0.0", + "hashPath": "microsoft.aspnetcore.signalr.common.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-L++SCI4pcG9uo7HTzAFTX33BsZFDHCdukJIK+/S4tgH/kcJlPTp9QS96E4zgOuzXRDrzaunwbFSS2DElTmWGRA==", + "path": "microsoft.aspnetcore.signalr.protocols.json/10.0.0", + "hashPath": "microsoft.aspnetcore.signalr.protocols.json.10.0.0.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vFuwSLj9QJBbNR0NeNO4YVASUbokxs+i/xbuu8B+Fs4FAZg5QaFa6eGrMaRqTzzNI5tAb97T7BhSxtLckFyiRA==", + "path": "microsoft.bcl.asyncinterfaces/10.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.10.0.0.nupkg.sha512" + }, + "Microsoft.Bcl.TimeProvider/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bUubrBD6tRJE3V1kvRloYc6NymH3R5oFKjAS9e0ELNx6u0ZR+zjps9dDQyjgqN/rArzl7f+21KGszj3YRN7F2Q==", + "path": "microsoft.bcl.timeprovider/10.0.0", + "hashPath": "microsoft.bcl.timeprovider.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f0RBabswJq+gRu5a+hWIobrLWiUYPKMhCD9WO3sYBAdSy3FFH14LMvLVFZc2kPSCimBLxSuitUhsd6tb0TAY6A==", + "path": "microsoft.extensions.dependencyinjection/10.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-L3AdmZ1WOK4XXT5YFPEwyt0ep6l8lGIPs7F5OOBZc77Zqeo01Of7XXICy47628sdVl0v/owxYJTe86DTgFwKCA==", + "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Features/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kCFjPpfvz0K00xIpe7wJKre1gFJdNIu9+1BYJLklu3GWb+uU4HIjza0uMBQeFGZws9VJos9LeO+PUfvGcre+9g==", + "path": "microsoft.extensions.features/10.0.0", + "hashPath": "microsoft.extensions.features.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BStFkd5CcnEtarlcgYDBcFzGYCuuNMzPs02wN3WBsOFoYIEmYoUdAiU+au6opzoqfTYJsMTW00AeqDdnXH2CvA==", + "path": "microsoft.extensions.logging/10.0.0", + "hashPath": "microsoft.extensions.logging.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FU/IfjDfwaMuKr414SSQNTIti/69bHEMb+QKrskRb26oVqpx3lNFXMjs/RC9ZUuhBhcwDM2BwOgoMw+PZ+beqQ==", + "path": "microsoft.extensions.logging.abstractions/10.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8oCAgXOow5XDrY9HaXX1QmH3ORsyZO/ANVHBlhLyCeWTH5Sg4UuqZeOTWJi6484M+LqSx0RqQXDJtdYy2BNiLQ==", + "path": "microsoft.extensions.options/10.0.0", + "hashPath": "microsoft.extensions.options.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-inRnbpCS0nwO/RuoZIAqxQUuyjaknOOnCEZB55KSMMjRhl0RQDttSmLSGsUJN3RQ3ocf5NDLFd2mOQViHqMK5w==", + "path": "microsoft.extensions.primitives/10.0.0", + "hashPath": "microsoft.extensions.primitives.10.0.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0KdBK+h7G13PuOSC2R/DalAoFMvdYMznvGRuICtkdcUMXgl/gYXsG6z4yUvTxHSMACorWgHCU1Faq0KUHU6yAQ==", + "path": "system.diagnostics.diagnosticsource/10.0.0", + "hashPath": "system.diagnostics.diagnosticsource.10.0.0.nupkg.sha512" + }, + "System.IO.Pipelines/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M1eb3nfXntaRJPrrMVM9EFS8I1bDTnt0uvUS6QP/SicZf/ZZjydMD5NiXxfmwW/uQwaMDP/yX2P+zQN1NBHChg==", + "path": "system.io.pipelines/10.0.0", + "hashPath": "system.io.pipelines.10.0.0.nupkg.sha512" + }, + "System.Net.ServerSentEvents/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zRH5XXZfenw7bgn8BT+q6XH1Sp75kSQM5m7Ee4WzZhMu2syGawcsqdlfFa2u/+skXr/u2ufp9F6M9lgkKkfZZg==", + "path": "system.net.serversentevents/10.0.0", + "hashPath": "system.net.serversentevents.10.0.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-257hh1ep1Gqm1Lm0ulxf7vVBVMJuGN6EL4xSWjpi46DffXzm1058IiWsfSC06zSm7SniN+Tb5160UnXsSa8rRg==", + "path": "system.text.encodings.web/10.0.0", + "hashPath": "system.text.encodings.web.10.0.0.nupkg.sha512" + }, + "System.Text.Json/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Dpjwq9peG/Wt5BNbrzIhTpclfOSqBWZsUO28vVr59yQlkvL5jLBWfpfzRmJ1OY+6DciaY0DUcltyzs4fuZHjw==", + "path": "system.text.json/10.0.0", + "hashPath": "system.text.json.10.0.0.nupkg.sha512" + }, + "System.Threading.Channels/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fwRdkJpKisUEVNaEdsL5w5EwidzuVw0BOTfzDvYB1Yg8sq1pqNfUZxBOVFgSj6i6tNhpT3HP8BEDXf1+kFkTDA==", + "path": "system.threading.channels/10.0.0", + "hashPath": "system.threading.channels.10.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.designer.runtimeconfig.json b/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.designer.runtimeconfig.json new file mode 100644 index 0000000..62da401 --- /dev/null +++ b/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.designer.runtimeconfig.json @@ -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\\nanxun\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\nanxun\\.nuget\\packages", + "C:\\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 + } + } +} \ No newline at end of file diff --git a/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.dll b/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.dll new file mode 100644 index 0000000..0ac5e13 Binary files /dev/null and b/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.dll differ diff --git a/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.genruntimeconfig.cache b/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.genruntimeconfig.cache new file mode 100644 index 0000000..ed70d1b --- /dev/null +++ b/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.genruntimeconfig.cache @@ -0,0 +1 @@ +c05369691aaf31d105dcbffdf472a87fdbcb1c1844bdf44f71087b9d0141f9d6 diff --git a/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.pdb b/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.pdb new file mode 100644 index 0000000..afd8a46 Binary files /dev/null and b/backend/SignalRTest/obj/Debug/net8.0-windows/SignalRTest.pdb differ diff --git a/backend/SignalRTest/obj/Debug/net8.0-windows/apphost.exe b/backend/SignalRTest/obj/Debug/net8.0-windows/apphost.exe new file mode 100644 index 0000000..6c90625 Binary files /dev/null and b/backend/SignalRTest/obj/Debug/net8.0-windows/apphost.exe differ diff --git a/backend/SignalRTest/obj/Debug/net8.0-windows/ref/SignalRTest.dll b/backend/SignalRTest/obj/Debug/net8.0-windows/ref/SignalRTest.dll new file mode 100644 index 0000000..37a260a Binary files /dev/null and b/backend/SignalRTest/obj/Debug/net8.0-windows/ref/SignalRTest.dll differ diff --git a/backend/SignalRTest/obj/Debug/net8.0-windows/refint/SignalRTest.dll b/backend/SignalRTest/obj/Debug/net8.0-windows/refint/SignalRTest.dll new file mode 100644 index 0000000..37a260a Binary files /dev/null and b/backend/SignalRTest/obj/Debug/net8.0-windows/refint/SignalRTest.dll differ diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/backend/SignalRTest/obj/Release/net8.0-windows/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/backend/SignalRTest/obj/Release/net8.0-windows/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/SignalRT.5CF90B77.Up2Date b/backend/SignalRTest/obj/Release/net8.0-windows/SignalRT.5CF90B77.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.AssemblyInfo.cs b/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.AssemblyInfo.cs new file mode 100644 index 0000000..5050a24 --- /dev/null +++ b/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("SignalRTest")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+219665d4657ce917f2ec72657b9e54ab4daccc10")] +[assembly: System.Reflection.AssemblyProductAttribute("SignalRTest")] +[assembly: System.Reflection.AssemblyTitleAttribute("SignalRTest")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.AssemblyInfoInputs.cache b/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.AssemblyInfoInputs.cache new file mode 100644 index 0000000..4091985 --- /dev/null +++ b/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +6c95105ac76c9f3a2fc221cab5f1d5a22db152a0fc8b642ffb31000a29645355 diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.Form1.resources b/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.Form1.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.Form1.resources differ diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.GeneratedMSBuildEditorConfig.editorconfig b/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..9aa82f8 --- /dev/null +++ b/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.GeneratedMSBuildEditorConfig.editorconfig @@ -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 = SignalRTest +build_property.ProjectDir = C:\Users\nanxun\Documents\IM\backend\SignalRTest\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.CsWinRTUseWindowsUIXamlProjections = false +build_property.EffectiveAnalysisLevelStyle = 8.0 +build_property.EnableCodeStyleSeverity = diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.GlobalUsings.g.cs b/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.GlobalUsings.g.cs new file mode 100644 index 0000000..84bbb89 --- /dev/null +++ b/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.GlobalUsings.g.cs @@ -0,0 +1,10 @@ +// +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; diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.assets.cache b/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.assets.cache new file mode 100644 index 0000000..9c256f3 Binary files /dev/null and b/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.assets.cache differ diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.csproj.AssemblyReference.cache b/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.csproj.AssemblyReference.cache new file mode 100644 index 0000000..91e3c2d Binary files /dev/null and b/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.csproj.AssemblyReference.cache differ diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.csproj.CoreCompileInputs.cache b/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..a89f163 --- /dev/null +++ b/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +c0744805f016017646cd8ec4510e403b0f32b575ddd6972e8a72d1a8bab8cf46 diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.csproj.FileListAbsolute.txt b/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..4fadf07 --- /dev/null +++ b/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.csproj.FileListAbsolute.txt @@ -0,0 +1,41 @@ +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\SignalRTest.exe +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\SignalRTest.deps.json +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\SignalRTest.runtimeconfig.json +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\SignalRTest.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\SignalRTest.pdb +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\Microsoft.AspNetCore.Connections.Abstractions.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\Microsoft.AspNetCore.Http.Connections.Client.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\Microsoft.AspNetCore.Http.Connections.Common.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\Microsoft.AspNetCore.SignalR.Client.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\Microsoft.AspNetCore.SignalR.Client.Core.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\Microsoft.AspNetCore.SignalR.Common.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\Microsoft.AspNetCore.SignalR.Protocols.Json.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\Microsoft.Bcl.AsyncInterfaces.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\Microsoft.Bcl.TimeProvider.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\Microsoft.Extensions.DependencyInjection.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\Microsoft.Extensions.DependencyInjection.Abstractions.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\Microsoft.Extensions.Features.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\Microsoft.Extensions.Logging.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\Microsoft.Extensions.Logging.Abstractions.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\Microsoft.Extensions.Options.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\Microsoft.Extensions.Primitives.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\System.Diagnostics.DiagnosticSource.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\System.IO.Pipelines.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\System.Net.ServerSentEvents.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\System.Text.Encodings.Web.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\System.Text.Json.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\System.Threading.Channels.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\runtimes\browser\lib\net8.0\System.Text.Encodings.Web.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Release\net8.0-windows\SignalRTest.csproj.AssemblyReference.cache +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Release\net8.0-windows\SignalRTest.Form1.resources +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Release\net8.0-windows\SignalRTest.csproj.GenerateResource.cache +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Release\net8.0-windows\SignalRTest.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Release\net8.0-windows\SignalRTest.AssemblyInfoInputs.cache +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Release\net8.0-windows\SignalRTest.AssemblyInfo.cs +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Release\net8.0-windows\SignalRTest.csproj.CoreCompileInputs.cache +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Release\net8.0-windows\SignalRT.5CF90B77.Up2Date +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Release\net8.0-windows\SignalRTest.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Release\net8.0-windows\refint\SignalRTest.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Release\net8.0-windows\SignalRTest.pdb +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Release\net8.0-windows\SignalRTest.genruntimeconfig.cache +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Release\net8.0-windows\ref\SignalRTest.dll diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.csproj.GenerateResource.cache b/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.csproj.GenerateResource.cache new file mode 100644 index 0000000..49f13ab Binary files /dev/null and b/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.csproj.GenerateResource.cache differ diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.dll b/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.dll new file mode 100644 index 0000000..b294860 Binary files /dev/null and b/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.dll differ diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.genruntimeconfig.cache b/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.genruntimeconfig.cache new file mode 100644 index 0000000..afc3a0c --- /dev/null +++ b/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.genruntimeconfig.cache @@ -0,0 +1 @@ +730922d6fa16c413a1bc880e81bd425dd03f1fdba9d65be778f79d886ef5a309 diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.pdb b/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.pdb new file mode 100644 index 0000000..3f41f9b Binary files /dev/null and b/backend/SignalRTest/obj/Release/net8.0-windows/SignalRTest.pdb differ diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/apphost.exe b/backend/SignalRTest/obj/Release/net8.0-windows/apphost.exe new file mode 100644 index 0000000..6c90625 Binary files /dev/null and b/backend/SignalRTest/obj/Release/net8.0-windows/apphost.exe differ diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/ref/SignalRTest.dll b/backend/SignalRTest/obj/Release/net8.0-windows/ref/SignalRTest.dll new file mode 100644 index 0000000..5d3162d Binary files /dev/null and b/backend/SignalRTest/obj/Release/net8.0-windows/ref/SignalRTest.dll differ diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/refint/SignalRTest.dll b/backend/SignalRTest/obj/Release/net8.0-windows/refint/SignalRTest.dll new file mode 100644 index 0000000..5d3162d Binary files /dev/null and b/backend/SignalRTest/obj/Release/net8.0-windows/refint/SignalRTest.dll differ diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/PublishOutputs.c7711f52c6.txt b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/PublishOutputs.c7711f52c6.txt new file mode 100644 index 0000000..7145286 --- /dev/null +++ b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/PublishOutputs.c7711f52c6.txt @@ -0,0 +1,7 @@ +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\publish\win-x64\SignalRTest.pdb +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\publish\win-x64\D3DCompiler_47_cor3.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\publish\win-x64\PenImc_cor3.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\publish\win-x64\PresentationNative_cor3.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\publish\win-x64\vcruntime140_cor3.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\publish\win-x64\wpfgfx_cor3.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\publish\win-x64\SignalRTest.exe diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRT.5CF90B77.Up2Date b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRT.5CF90B77.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.AssemblyInfo.cs b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.AssemblyInfo.cs new file mode 100644 index 0000000..5050a24 --- /dev/null +++ b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("SignalRTest")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+219665d4657ce917f2ec72657b9e54ab4daccc10")] +[assembly: System.Reflection.AssemblyProductAttribute("SignalRTest")] +[assembly: System.Reflection.AssemblyTitleAttribute("SignalRTest")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.AssemblyInfoInputs.cache b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.AssemblyInfoInputs.cache new file mode 100644 index 0000000..4091985 --- /dev/null +++ b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +6c95105ac76c9f3a2fc221cab5f1d5a22db152a0fc8b642ffb31000a29645355 diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.Form1.resources b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.Form1.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.Form1.resources differ diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.GeneratedMSBuildEditorConfig.editorconfig b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..2040d7a --- /dev/null +++ b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,26 @@ +is_global = true +build_property.EnableAotAnalyzer = +build_property.EnableSingleFileAnalyzer = true +build_property.EnableTrimAnalyzer = +build_property.IncludeAllContentForSelfExtract = +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 = SignalRTest +build_property.ProjectDir = C:\Users\nanxun\Documents\IM\backend\SignalRTest\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.CsWinRTUseWindowsUIXamlProjections = false +build_property.EffectiveAnalysisLevelStyle = 8.0 +build_property.EnableCodeStyleSeverity = diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.GlobalUsings.g.cs b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.GlobalUsings.g.cs new file mode 100644 index 0000000..84bbb89 --- /dev/null +++ b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.GlobalUsings.g.cs @@ -0,0 +1,10 @@ +// +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; diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.assets.cache b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.assets.cache new file mode 100644 index 0000000..097f268 Binary files /dev/null and b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.assets.cache differ diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.csproj.AssemblyReference.cache b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.csproj.AssemblyReference.cache new file mode 100644 index 0000000..91e3c2d Binary files /dev/null and b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.csproj.AssemblyReference.cache differ diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.csproj.CoreCompileInputs.cache b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..a4e1e48 --- /dev/null +++ b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +daefb47b81d1e29c0f7a86bf1362a741ac410e35b5fa3d960ba984bda12732bf diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.csproj.FileListAbsolute.txt b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..ff5fa4c --- /dev/null +++ b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.csproj.FileListAbsolute.txt @@ -0,0 +1,495 @@ +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\SignalRTest.exe +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\SignalRTest.deps.json +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\SignalRTest.runtimeconfig.json +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\SignalRTest.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\SignalRTest.pdb +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\Microsoft.AspNetCore.Connections.Abstractions.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\Microsoft.AspNetCore.Http.Connections.Client.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\Microsoft.AspNetCore.Http.Connections.Common.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\Microsoft.AspNetCore.SignalR.Client.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\Microsoft.AspNetCore.SignalR.Client.Core.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\Microsoft.AspNetCore.SignalR.Common.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\Microsoft.AspNetCore.SignalR.Protocols.Json.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\Microsoft.Bcl.AsyncInterfaces.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\Microsoft.Bcl.TimeProvider.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\Microsoft.Extensions.DependencyInjection.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\Microsoft.Extensions.DependencyInjection.Abstractions.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\Microsoft.Extensions.Features.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\Microsoft.Extensions.Logging.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\Microsoft.Extensions.Logging.Abstractions.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\Microsoft.Extensions.Options.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\Microsoft.Extensions.Primitives.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Diagnostics.DiagnosticSource.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.IO.Pipelines.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Net.ServerSentEvents.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Text.Encodings.Web.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Text.Json.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Threading.Channels.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\Microsoft.CSharp.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\Microsoft.VisualBasic.Core.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\Microsoft.Win32.Primitives.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\Microsoft.Win32.Registry.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.AppContext.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Buffers.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Collections.Concurrent.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Collections.Immutable.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Collections.NonGeneric.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Collections.Specialized.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Collections.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.ComponentModel.Annotations.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.ComponentModel.DataAnnotations.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.ComponentModel.EventBasedAsync.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.ComponentModel.Primitives.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.ComponentModel.TypeConverter.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.ComponentModel.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Configuration.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Console.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Core.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Data.Common.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Data.DataSetExtensions.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Data.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Diagnostics.Contracts.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Diagnostics.Debug.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Diagnostics.FileVersionInfo.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Diagnostics.Process.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Diagnostics.StackTrace.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Diagnostics.TextWriterTraceListener.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Diagnostics.Tools.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Diagnostics.TraceSource.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Diagnostics.Tracing.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Drawing.Primitives.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Dynamic.Runtime.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Formats.Asn1.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Formats.Tar.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Globalization.Calendars.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Globalization.Extensions.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Globalization.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.IO.Compression.Brotli.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.IO.Compression.FileSystem.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.IO.Compression.ZipFile.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.IO.Compression.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.IO.FileSystem.AccessControl.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.IO.FileSystem.DriveInfo.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.IO.FileSystem.Primitives.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.IO.FileSystem.Watcher.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.IO.FileSystem.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.IO.IsolatedStorage.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.IO.MemoryMappedFiles.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.IO.Pipes.AccessControl.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.IO.Pipes.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.IO.UnmanagedMemoryStream.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.IO.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Linq.Expressions.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Linq.Parallel.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Linq.Queryable.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Linq.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Memory.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Net.Http.Json.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Net.Http.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Net.HttpListener.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Net.Mail.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Net.NameResolution.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Net.NetworkInformation.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Net.Ping.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Net.Primitives.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Net.Quic.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Net.Requests.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Net.Security.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Net.ServicePoint.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Net.Sockets.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Net.WebClient.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Net.WebHeaderCollection.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Net.WebProxy.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Net.WebSockets.Client.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Net.WebSockets.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Net.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Numerics.Vectors.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Numerics.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.ObjectModel.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Private.CoreLib.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Private.DataContractSerialization.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Private.Uri.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Private.Xml.Linq.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Private.Xml.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Reflection.DispatchProxy.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Reflection.Emit.ILGeneration.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Reflection.Emit.Lightweight.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Reflection.Emit.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Reflection.Extensions.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Reflection.Metadata.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Reflection.Primitives.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Reflection.TypeExtensions.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Reflection.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Resources.Reader.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Resources.ResourceManager.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Resources.Writer.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Runtime.CompilerServices.Unsafe.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Runtime.CompilerServices.VisualC.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Runtime.Extensions.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Runtime.Handles.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Runtime.InteropServices.JavaScript.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Runtime.InteropServices.RuntimeInformation.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Runtime.InteropServices.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Runtime.Intrinsics.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Runtime.Loader.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Runtime.Numerics.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Runtime.Serialization.Formatters.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Runtime.Serialization.Json.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Runtime.Serialization.Primitives.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Runtime.Serialization.Xml.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Runtime.Serialization.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Runtime.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Security.AccessControl.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Security.Claims.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Security.Cryptography.Algorithms.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Security.Cryptography.Cng.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Security.Cryptography.Csp.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Security.Cryptography.Encoding.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Security.Cryptography.OpenSsl.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Security.Cryptography.Primitives.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Security.Cryptography.X509Certificates.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Security.Cryptography.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Security.Principal.Windows.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Security.Principal.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Security.SecureString.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Security.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.ServiceModel.Web.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.ServiceProcess.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Text.Encoding.CodePages.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Text.Encoding.Extensions.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Text.Encoding.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Text.RegularExpressions.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Threading.Overlapped.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Threading.Tasks.Dataflow.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Threading.Tasks.Extensions.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Threading.Tasks.Parallel.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Threading.Tasks.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Threading.Thread.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Threading.ThreadPool.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Threading.Timer.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Threading.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Transactions.Local.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Transactions.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.ValueTuple.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Web.HttpUtility.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Web.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Windows.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Xml.Linq.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Xml.ReaderWriter.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Xml.Serialization.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Xml.XDocument.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Xml.XPath.XDocument.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Xml.XPath.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Xml.XmlDocument.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Xml.XmlSerializer.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Xml.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\mscorlib.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\netstandard.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\Accessibility.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\DirectWriteForwarder.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\Microsoft.VisualBasic.Forms.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\Microsoft.VisualBasic.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\Microsoft.Win32.Registry.AccessControl.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\Microsoft.Win32.SystemEvents.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\PresentationCore.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\PresentationFramework-SystemCore.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\PresentationFramework-SystemData.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\PresentationFramework-SystemDrawing.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\PresentationFramework-SystemXml.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\PresentationFramework-SystemXmlLinq.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\PresentationFramework.Aero.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\PresentationFramework.Aero2.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\PresentationFramework.AeroLite.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\PresentationFramework.Classic.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\PresentationFramework.Luna.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\PresentationFramework.Royale.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\PresentationFramework.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\PresentationUI.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ReachFramework.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.CodeDom.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Configuration.ConfigurationManager.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Design.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Diagnostics.EventLog.Messages.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Diagnostics.EventLog.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Diagnostics.PerformanceCounter.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.DirectoryServices.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Drawing.Common.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Drawing.Design.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Drawing.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.IO.Packaging.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Printing.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Resources.Extensions.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Security.Cryptography.Pkcs.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Security.Cryptography.ProtectedData.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Security.Cryptography.Xml.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Security.Permissions.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Threading.AccessControl.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Windows.Controls.Ribbon.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Windows.Extensions.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Windows.Forms.Design.Editors.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Windows.Forms.Design.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Windows.Forms.Primitives.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Windows.Forms.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Windows.Input.Manipulations.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Windows.Presentation.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.Xaml.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\UIAutomationClient.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\UIAutomationClientSideProviders.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\UIAutomationProvider.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\UIAutomationTypes.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\WindowsBase.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\WindowsFormsIntegration.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\Microsoft.DiaSymReader.Native.amd64.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\System.IO.Compression.Native.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\clretwrc.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\clrgc.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\clrjit.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\coreclr.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\createdump.exe +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\hostfxr.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\hostpolicy.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\mscordaccore.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\mscordaccore_amd64_amd64_8.0.1925.36514.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\mscordbi.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\mscorrc.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\msquic.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\D3DCompiler_47_cor3.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\PenImc_cor3.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\PresentationNative_cor3.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\vcruntime140_cor3.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\wpfgfx_cor3.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\cs\Microsoft.VisualBasic.Forms.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\cs\PresentationCore.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\cs\PresentationFramework.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\cs\PresentationUI.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\cs\ReachFramework.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\cs\System.Windows.Controls.Ribbon.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\cs\System.Windows.Forms.Design.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\cs\System.Windows.Forms.Primitives.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\cs\System.Windows.Forms.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\cs\System.Windows.Input.Manipulations.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\cs\System.Xaml.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\cs\UIAutomationClient.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\cs\UIAutomationClientSideProviders.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\cs\UIAutomationProvider.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\cs\UIAutomationTypes.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\cs\WindowsBase.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\cs\WindowsFormsIntegration.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\de\Microsoft.VisualBasic.Forms.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\de\PresentationCore.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\de\PresentationFramework.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\de\PresentationUI.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\de\ReachFramework.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\de\System.Windows.Controls.Ribbon.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\de\System.Windows.Forms.Design.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\de\System.Windows.Forms.Primitives.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\de\System.Windows.Forms.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\de\System.Windows.Input.Manipulations.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\de\System.Xaml.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\de\UIAutomationClient.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\de\UIAutomationClientSideProviders.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\de\UIAutomationProvider.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\de\UIAutomationTypes.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\de\WindowsBase.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\de\WindowsFormsIntegration.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\es\Microsoft.VisualBasic.Forms.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\es\PresentationCore.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\es\PresentationFramework.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\es\PresentationUI.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\es\ReachFramework.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\es\System.Windows.Controls.Ribbon.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\es\System.Windows.Forms.Design.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\es\System.Windows.Forms.Primitives.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\es\System.Windows.Forms.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\es\System.Windows.Input.Manipulations.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\es\System.Xaml.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\es\UIAutomationClient.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\es\UIAutomationClientSideProviders.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\es\UIAutomationProvider.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\es\UIAutomationTypes.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\es\WindowsBase.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\es\WindowsFormsIntegration.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\fr\Microsoft.VisualBasic.Forms.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\fr\PresentationCore.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\fr\PresentationFramework.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\fr\PresentationUI.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\fr\ReachFramework.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\fr\System.Windows.Controls.Ribbon.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\fr\System.Windows.Forms.Design.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\fr\System.Windows.Forms.Primitives.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\fr\System.Windows.Forms.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\fr\System.Windows.Input.Manipulations.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\fr\System.Xaml.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\fr\UIAutomationClient.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\fr\UIAutomationClientSideProviders.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\fr\UIAutomationProvider.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\fr\UIAutomationTypes.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\fr\WindowsBase.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\fr\WindowsFormsIntegration.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\it\Microsoft.VisualBasic.Forms.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\it\PresentationCore.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\it\PresentationFramework.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\it\PresentationUI.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\it\ReachFramework.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\it\System.Windows.Controls.Ribbon.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\it\System.Windows.Forms.Design.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\it\System.Windows.Forms.Primitives.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\it\System.Windows.Forms.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\it\System.Windows.Input.Manipulations.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\it\System.Xaml.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\it\UIAutomationClient.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\it\UIAutomationClientSideProviders.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\it\UIAutomationProvider.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\it\UIAutomationTypes.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\it\WindowsBase.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\it\WindowsFormsIntegration.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ja\Microsoft.VisualBasic.Forms.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ja\PresentationCore.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ja\PresentationFramework.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ja\PresentationUI.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ja\ReachFramework.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ja\System.Windows.Controls.Ribbon.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ja\System.Windows.Forms.Design.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ja\System.Windows.Forms.Primitives.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ja\System.Windows.Forms.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ja\System.Windows.Input.Manipulations.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ja\System.Xaml.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ja\UIAutomationClient.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ja\UIAutomationClientSideProviders.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ja\UIAutomationProvider.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ja\UIAutomationTypes.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ja\WindowsBase.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ja\WindowsFormsIntegration.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ko\Microsoft.VisualBasic.Forms.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ko\PresentationCore.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ko\PresentationFramework.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ko\PresentationUI.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ko\ReachFramework.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ko\System.Windows.Controls.Ribbon.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ko\System.Windows.Forms.Design.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ko\System.Windows.Forms.Primitives.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ko\System.Windows.Forms.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ko\System.Windows.Input.Manipulations.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ko\System.Xaml.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ko\UIAutomationClient.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ko\UIAutomationClientSideProviders.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ko\UIAutomationProvider.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ko\UIAutomationTypes.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ko\WindowsBase.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ko\WindowsFormsIntegration.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pl\Microsoft.VisualBasic.Forms.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pl\PresentationCore.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pl\PresentationFramework.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pl\PresentationUI.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pl\ReachFramework.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pl\System.Windows.Controls.Ribbon.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pl\System.Windows.Forms.Design.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pl\System.Windows.Forms.Primitives.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pl\System.Windows.Forms.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pl\System.Windows.Input.Manipulations.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pl\System.Xaml.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pl\UIAutomationClient.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pl\UIAutomationClientSideProviders.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pl\UIAutomationProvider.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pl\UIAutomationTypes.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pl\WindowsBase.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pl\WindowsFormsIntegration.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pt-BR\Microsoft.VisualBasic.Forms.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pt-BR\PresentationCore.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pt-BR\PresentationFramework.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pt-BR\PresentationUI.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pt-BR\ReachFramework.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pt-BR\System.Windows.Controls.Ribbon.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pt-BR\System.Windows.Forms.Design.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pt-BR\System.Windows.Forms.Primitives.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pt-BR\System.Windows.Forms.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pt-BR\System.Windows.Input.Manipulations.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pt-BR\System.Xaml.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pt-BR\UIAutomationClient.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pt-BR\UIAutomationClientSideProviders.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pt-BR\UIAutomationProvider.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pt-BR\UIAutomationTypes.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pt-BR\WindowsBase.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\pt-BR\WindowsFormsIntegration.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ru\Microsoft.VisualBasic.Forms.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ru\PresentationCore.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ru\PresentationFramework.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ru\PresentationUI.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ru\ReachFramework.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ru\System.Windows.Controls.Ribbon.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ru\System.Windows.Forms.Design.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ru\System.Windows.Forms.Primitives.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ru\System.Windows.Forms.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ru\System.Windows.Input.Manipulations.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ru\System.Xaml.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ru\UIAutomationClient.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ru\UIAutomationClientSideProviders.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ru\UIAutomationProvider.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ru\UIAutomationTypes.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ru\WindowsBase.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\ru\WindowsFormsIntegration.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\tr\Microsoft.VisualBasic.Forms.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\tr\PresentationCore.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\tr\PresentationFramework.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\tr\PresentationUI.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\tr\ReachFramework.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\tr\System.Windows.Controls.Ribbon.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\tr\System.Windows.Forms.Design.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\tr\System.Windows.Forms.Primitives.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\tr\System.Windows.Forms.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\tr\System.Windows.Input.Manipulations.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\tr\System.Xaml.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\tr\UIAutomationClient.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\tr\UIAutomationClientSideProviders.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\tr\UIAutomationProvider.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\tr\UIAutomationTypes.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\tr\WindowsBase.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\tr\WindowsFormsIntegration.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hans\Microsoft.VisualBasic.Forms.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hans\PresentationCore.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hans\PresentationFramework.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hans\PresentationUI.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hans\ReachFramework.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hans\System.Windows.Controls.Ribbon.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hans\System.Windows.Forms.Design.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hans\System.Windows.Forms.Primitives.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hans\System.Windows.Forms.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hans\System.Windows.Input.Manipulations.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hans\System.Xaml.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hans\UIAutomationClient.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hans\UIAutomationClientSideProviders.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hans\UIAutomationProvider.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hans\UIAutomationTypes.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hans\WindowsBase.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hans\WindowsFormsIntegration.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hant\Microsoft.VisualBasic.Forms.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hant\PresentationCore.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hant\PresentationFramework.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hant\PresentationUI.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hant\ReachFramework.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hant\System.Windows.Controls.Ribbon.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hant\System.Windows.Forms.Design.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hant\System.Windows.Forms.Primitives.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hant\System.Windows.Forms.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hant\System.Windows.Input.Manipulations.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hant\System.Xaml.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hant\UIAutomationClient.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hant\UIAutomationClientSideProviders.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hant\UIAutomationProvider.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hant\UIAutomationTypes.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hant\WindowsBase.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\bin\Release\net8.0-windows\win-x64\zh-Hant\WindowsFormsIntegration.resources.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Release\net8.0-windows\win-x64\SignalRTest.csproj.AssemblyReference.cache +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Release\net8.0-windows\win-x64\SignalRTest.Form1.resources +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Release\net8.0-windows\win-x64\SignalRTest.csproj.GenerateResource.cache +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Release\net8.0-windows\win-x64\SignalRTest.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Release\net8.0-windows\win-x64\SignalRTest.AssemblyInfoInputs.cache +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Release\net8.0-windows\win-x64\SignalRTest.AssemblyInfo.cs +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Release\net8.0-windows\win-x64\SignalRTest.csproj.CoreCompileInputs.cache +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Release\net8.0-windows\win-x64\SignalRT.5CF90B77.Up2Date +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Release\net8.0-windows\win-x64\SignalRTest.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Release\net8.0-windows\win-x64\refint\SignalRTest.dll +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Release\net8.0-windows\win-x64\SignalRTest.pdb +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Release\net8.0-windows\win-x64\SignalRTest.genruntimeconfig.cache +C:\Users\nanxun\Documents\IM\backend\SignalRTest\obj\Release\net8.0-windows\win-x64\ref\SignalRTest.dll diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.csproj.GenerateResource.cache b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.csproj.GenerateResource.cache new file mode 100644 index 0000000..49f13ab Binary files /dev/null and b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.csproj.GenerateResource.cache differ diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.deps.json b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.deps.json new file mode 100644 index 0000000..b88d09e --- /dev/null +++ b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.deps.json @@ -0,0 +1,1325 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0/win-x64", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": {}, + ".NETCoreApp,Version=v8.0/win-x64": { + "SignalRTest/1.0.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Client": "10.0.0", + "Microsoft.NET.ILLink.Tasks": "8.0.19", + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "8.0.19", + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64": "8.0.19" + }, + "runtime": { + "SignalRTest.dll": {} + } + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/8.0.19": { + "runtime": { + "Microsoft.CSharp.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "Microsoft.VisualBasic.Core.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1925.36514" + }, + "Microsoft.Win32.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "Microsoft.Win32.Registry.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.AppContext.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Buffers.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Collections.Concurrent.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Collections.Immutable.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Collections.NonGeneric.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Collections.Specialized.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Collections.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.ComponentModel.Annotations.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.ComponentModel.DataAnnotations.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.ComponentModel.EventBasedAsync.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.ComponentModel.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.ComponentModel.TypeConverter.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.ComponentModel.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Configuration.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Console.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Data.Common.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Data.DataSetExtensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Data.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Diagnostics.Contracts.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Diagnostics.Debug.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Diagnostics.FileVersionInfo.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Diagnostics.Process.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Diagnostics.StackTrace.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Diagnostics.TextWriterTraceListener.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Diagnostics.Tools.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Diagnostics.TraceSource.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Diagnostics.Tracing.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Drawing.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Dynamic.Runtime.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Formats.Asn1.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Formats.Tar.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Globalization.Calendars.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Globalization.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Globalization.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.IO.Compression.Brotli.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.IO.Compression.FileSystem.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.IO.Compression.ZipFile.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.IO.Compression.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.IO.FileSystem.AccessControl.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.IO.FileSystem.DriveInfo.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.IO.FileSystem.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.IO.FileSystem.Watcher.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.IO.FileSystem.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.IO.IsolatedStorage.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.IO.MemoryMappedFiles.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.IO.Pipes.AccessControl.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.IO.Pipes.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.IO.UnmanagedMemoryStream.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.IO.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Linq.Expressions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Linq.Parallel.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Linq.Queryable.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Linq.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Memory.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.Http.Json.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.Http.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.HttpListener.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.Mail.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.NameResolution.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.NetworkInformation.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.Ping.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.Quic.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.Requests.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.Security.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.ServicePoint.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.Sockets.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.WebClient.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.WebHeaderCollection.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.WebProxy.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.WebSockets.Client.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.WebSockets.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Net.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Numerics.Vectors.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Numerics.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.ObjectModel.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Private.CoreLib.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Private.DataContractSerialization.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Private.Uri.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Private.Xml.Linq.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Private.Xml.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Reflection.DispatchProxy.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Reflection.Emit.ILGeneration.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Reflection.Emit.Lightweight.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Reflection.Emit.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Reflection.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Reflection.Metadata.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Reflection.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Reflection.TypeExtensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Reflection.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Resources.Reader.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Resources.ResourceManager.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Resources.Writer.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Runtime.CompilerServices.VisualC.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Runtime.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Runtime.Handles.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Runtime.InteropServices.JavaScript.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Runtime.InteropServices.RuntimeInformation.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Runtime.InteropServices.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Runtime.Intrinsics.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Runtime.Loader.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Runtime.Numerics.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Runtime.Serialization.Formatters.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Runtime.Serialization.Json.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Runtime.Serialization.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Runtime.Serialization.Xml.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Runtime.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Runtime.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.AccessControl.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.Claims.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.Cryptography.Algorithms.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.Cryptography.Cng.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.Cryptography.Csp.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.Cryptography.Encoding.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.Cryptography.OpenSsl.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.Cryptography.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.Cryptography.X509Certificates.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.Cryptography.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.Principal.Windows.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.Principal.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.SecureString.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.ServiceModel.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.ServiceProcess.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Text.Encoding.CodePages.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Text.Encoding.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Text.Encoding.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Text.RegularExpressions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Threading.Overlapped.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Threading.Tasks.Dataflow.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Threading.Tasks.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Threading.Tasks.Parallel.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Threading.Tasks.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Threading.Thread.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Threading.ThreadPool.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Threading.Timer.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Threading.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Transactions.Local.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Transactions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.ValueTuple.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Web.HttpUtility.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Windows.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Xml.Linq.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Xml.ReaderWriter.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Xml.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Xml.XDocument.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Xml.XPath.XDocument.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Xml.XPath.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Xml.XmlDocument.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Xml.XmlSerializer.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Xml.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "mscorlib.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "netstandard.dll": { + "assemblyVersion": "2.1.0.0", + "fileVersion": "8.0.1925.36514" + } + } + }, + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/8.0.19": { + "runtime": { + "Accessibility.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "8.0.1925.36703" + }, + "DirectWriteForwarder.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "Microsoft.VisualBasic.Forms.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36703" + }, + "Microsoft.VisualBasic.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "8.0.1925.36703" + }, + "Microsoft.Win32.Registry.AccessControl.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "PresentationCore.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "PresentationFramework-SystemCore.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "PresentationFramework-SystemData.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "PresentationFramework-SystemDrawing.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "PresentationFramework-SystemXml.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "PresentationFramework-SystemXmlLinq.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "PresentationFramework.Aero.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "PresentationFramework.Aero2.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "PresentationFramework.AeroLite.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "PresentationFramework.Classic.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "PresentationFramework.Luna.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "PresentationFramework.Royale.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "PresentationFramework.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "PresentationUI.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "ReachFramework.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "System.CodeDom.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Design.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36703" + }, + "System.Diagnostics.EventLog.Messages.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "0.0.0.0" + }, + "System.Diagnostics.EventLog.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.DirectoryServices.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Drawing.Common.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36703" + }, + "System.Drawing.Design.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36703" + }, + "System.Drawing.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36703" + }, + "System.IO.Packaging.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Printing.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "System.Resources.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.Cryptography.Pkcs.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.Cryptography.Xml.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Security.Permissions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Threading.AccessControl.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Windows.Controls.Ribbon.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "System.Windows.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36514" + }, + "System.Windows.Forms.Design.Editors.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36703" + }, + "System.Windows.Forms.Design.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36703" + }, + "System.Windows.Forms.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36703" + }, + "System.Windows.Forms.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36703" + }, + "System.Windows.Input.Manipulations.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "System.Windows.Presentation.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "System.Xaml.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "UIAutomationClient.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "UIAutomationClientSideProviders.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "UIAutomationProvider.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "UIAutomationTypes.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "WindowsBase.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + }, + "WindowsFormsIntegration.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1925.36811" + } + }, + "native": { + "D3DCompiler_47_cor3.dll": { + "fileVersion": "10.0.22621.3233" + }, + "PenImc_cor3.dll": { + "fileVersion": "8.0.1925.36811" + }, + "PresentationNative_cor3.dll": { + "fileVersion": "8.0.25.16802" + }, + "vcruntime140_cor3.dll": { + "fileVersion": "14.42.34438.0" + }, + "wpfgfx_cor3.dll": { + "fileVersion": "8.0.1925.36811" + } + } + }, + "Microsoft.AspNetCore.Connections.Abstractions/10.0.0": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "10.0.0", + "Microsoft.Extensions.Features": "10.0.0", + "System.IO.Pipelines": "10.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.AspNetCore.Connections.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.AspNetCore.Http.Connections.Client/10.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Connections.Common": "10.0.0", + "Microsoft.Extensions.Logging.Abstractions": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0", + "System.Net.ServerSentEvents": "10.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Client.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.AspNetCore.Http.Connections.Common/10.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "10.0.0", + "System.Text.Json": "10.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.AspNetCore.SignalR.Client/10.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Connections.Client": "10.0.0", + "Microsoft.AspNetCore.SignalR.Client.Core": "10.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.AspNetCore.SignalR.Client.Core/10.0.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "10.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "10.0.0", + "Microsoft.Bcl.TimeProvider": "10.0.0", + "Microsoft.Extensions.DependencyInjection": "10.0.0", + "Microsoft.Extensions.Logging": "10.0.0", + "System.Threading.Channels": "10.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.Core.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.AspNetCore.SignalR.Common/10.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0", + "System.Text.Json": "10.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/10.0.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "10.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/10.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Bcl.TimeProvider/10.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Bcl.TimeProvider.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.DependencyInjection/10.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Features/10.0.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Features.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Logging/10.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "10.0.0", + "Microsoft.Extensions.Logging.Abstractions": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", + "System.Diagnostics.DiagnosticSource": "10.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Options/10.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", + "Microsoft.Extensions.Primitives": "10.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Primitives/10.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.19": {}, + "System.Diagnostics.DiagnosticSource/10.0.0": { + "runtime": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "System.IO.Pipelines/10.0.0": { + "runtime": { + "lib/net8.0/System.IO.Pipelines.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "System.Net.ServerSentEvents/10.0.0": { + "runtime": { + "lib/net8.0/System.Net.ServerSentEvents.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "System.Text.Encodings.Web/10.0.0": { + "runtime": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "System.Text.Json/10.0.0": { + "dependencies": { + "System.IO.Pipelines": "10.0.0", + "System.Text.Encodings.Web": "10.0.0" + }, + "runtime": { + "lib/net8.0/System.Text.Json.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "System.Threading.Channels/10.0.0": { + "runtime": { + "lib/net8.0/System.Threading.Channels.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + } + } + }, + "libraries": { + "SignalRTest/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/8.0.19": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/8.0.19": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Connections.Abstractions/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MPXDzUknemj+sCL/LYOLvU/qIX3o9zCJtKXu9jcwNMQiOvwuv75lV20p3qGENA/ynTH7hOPFqDUEGBT30IvhEA==", + "path": "microsoft.aspnetcore.connections.abstractions/10.0.0", + "hashPath": "microsoft.aspnetcore.connections.abstractions.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Connections.Client/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7nSER+de0V6mWTcdUqBJZlm1XMz+Y2mTHzL3B/msVF+JfSXXZtKNVC18TI7AeSz4PD//b5qpy8n0RQEIVByfJw==", + "path": "microsoft.aspnetcore.http.connections.client/10.0.0", + "hashPath": "microsoft.aspnetcore.http.connections.client.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Connections.Common/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VaEGwazymaL4NB+JoAdvM/IaFg5IIg1WXtVgKmD/y3Et2qnPxolAlMXYJrI8k1EPjmoIcXQZHTj47MskRRyRIA==", + "path": "microsoft.aspnetcore.http.connections.common/10.0.0", + "hashPath": "microsoft.aspnetcore.http.connections.common.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Client/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XHPNPLqPX7CVJ5JuaumTP58sAVrQG4TqFKLFOtN1mZIwgEUHKwtDeMwL0G8dIvy9zcpi7os4CYAHvA1bUUTzVw==", + "path": "microsoft.aspnetcore.signalr.client/10.0.0", + "hashPath": "microsoft.aspnetcore.signalr.client.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Client.Core/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MrXjT7YNV0e1Jb3Hai6kX/Ot7X2SlONHv5IC5XNGeycTTLu3qitJ7DXZUsPPZs6yanWIOsIKjPEY58ARHdRKGg==", + "path": "microsoft.aspnetcore.signalr.client.core/10.0.0", + "hashPath": "microsoft.aspnetcore.signalr.client.core.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Common/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pyG6FLV4/EeOQeZ30ra4aUYycJQPT/9ddB91aplMKwEGT5KbEs//WMqMObVGvDREP508EB4QUAKzacSVi30nxw==", + "path": "microsoft.aspnetcore.signalr.common/10.0.0", + "hashPath": "microsoft.aspnetcore.signalr.common.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-L++SCI4pcG9uo7HTzAFTX33BsZFDHCdukJIK+/S4tgH/kcJlPTp9QS96E4zgOuzXRDrzaunwbFSS2DElTmWGRA==", + "path": "microsoft.aspnetcore.signalr.protocols.json/10.0.0", + "hashPath": "microsoft.aspnetcore.signalr.protocols.json.10.0.0.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vFuwSLj9QJBbNR0NeNO4YVASUbokxs+i/xbuu8B+Fs4FAZg5QaFa6eGrMaRqTzzNI5tAb97T7BhSxtLckFyiRA==", + "path": "microsoft.bcl.asyncinterfaces/10.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.10.0.0.nupkg.sha512" + }, + "Microsoft.Bcl.TimeProvider/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bUubrBD6tRJE3V1kvRloYc6NymH3R5oFKjAS9e0ELNx6u0ZR+zjps9dDQyjgqN/rArzl7f+21KGszj3YRN7F2Q==", + "path": "microsoft.bcl.timeprovider/10.0.0", + "hashPath": "microsoft.bcl.timeprovider.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f0RBabswJq+gRu5a+hWIobrLWiUYPKMhCD9WO3sYBAdSy3FFH14LMvLVFZc2kPSCimBLxSuitUhsd6tb0TAY6A==", + "path": "microsoft.extensions.dependencyinjection/10.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-L3AdmZ1WOK4XXT5YFPEwyt0ep6l8lGIPs7F5OOBZc77Zqeo01Of7XXICy47628sdVl0v/owxYJTe86DTgFwKCA==", + "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Features/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kCFjPpfvz0K00xIpe7wJKre1gFJdNIu9+1BYJLklu3GWb+uU4HIjza0uMBQeFGZws9VJos9LeO+PUfvGcre+9g==", + "path": "microsoft.extensions.features/10.0.0", + "hashPath": "microsoft.extensions.features.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BStFkd5CcnEtarlcgYDBcFzGYCuuNMzPs02wN3WBsOFoYIEmYoUdAiU+au6opzoqfTYJsMTW00AeqDdnXH2CvA==", + "path": "microsoft.extensions.logging/10.0.0", + "hashPath": "microsoft.extensions.logging.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FU/IfjDfwaMuKr414SSQNTIti/69bHEMb+QKrskRb26oVqpx3lNFXMjs/RC9ZUuhBhcwDM2BwOgoMw+PZ+beqQ==", + "path": "microsoft.extensions.logging.abstractions/10.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8oCAgXOow5XDrY9HaXX1QmH3ORsyZO/ANVHBlhLyCeWTH5Sg4UuqZeOTWJi6484M+LqSx0RqQXDJtdYy2BNiLQ==", + "path": "microsoft.extensions.options/10.0.0", + "hashPath": "microsoft.extensions.options.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-inRnbpCS0nwO/RuoZIAqxQUuyjaknOOnCEZB55KSMMjRhl0RQDttSmLSGsUJN3RQ3ocf5NDLFd2mOQViHqMK5w==", + "path": "microsoft.extensions.primitives/10.0.0", + "hashPath": "microsoft.extensions.primitives.10.0.0.nupkg.sha512" + }, + "Microsoft.NET.ILLink.Tasks/8.0.19": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IhHf+zeZiaE5EXRyxILd4qM+Hj9cxV3sa8MpzZgeEhpvaG3a1VEGF6UCaPFLO44Kua3JkLKluE0SWVamS50PlA==", + "path": "microsoft.net.illink.tasks/8.0.19", + "hashPath": "microsoft.net.illink.tasks.8.0.19.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0KdBK+h7G13PuOSC2R/DalAoFMvdYMznvGRuICtkdcUMXgl/gYXsG6z4yUvTxHSMACorWgHCU1Faq0KUHU6yAQ==", + "path": "system.diagnostics.diagnosticsource/10.0.0", + "hashPath": "system.diagnostics.diagnosticsource.10.0.0.nupkg.sha512" + }, + "System.IO.Pipelines/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M1eb3nfXntaRJPrrMVM9EFS8I1bDTnt0uvUS6QP/SicZf/ZZjydMD5NiXxfmwW/uQwaMDP/yX2P+zQN1NBHChg==", + "path": "system.io.pipelines/10.0.0", + "hashPath": "system.io.pipelines.10.0.0.nupkg.sha512" + }, + "System.Net.ServerSentEvents/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zRH5XXZfenw7bgn8BT+q6XH1Sp75kSQM5m7Ee4WzZhMu2syGawcsqdlfFa2u/+skXr/u2ufp9F6M9lgkKkfZZg==", + "path": "system.net.serversentevents/10.0.0", + "hashPath": "system.net.serversentevents.10.0.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-257hh1ep1Gqm1Lm0ulxf7vVBVMJuGN6EL4xSWjpi46DffXzm1058IiWsfSC06zSm7SniN+Tb5160UnXsSa8rRg==", + "path": "system.text.encodings.web/10.0.0", + "hashPath": "system.text.encodings.web.10.0.0.nupkg.sha512" + }, + "System.Text.Json/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Dpjwq9peG/Wt5BNbrzIhTpclfOSqBWZsUO28vVr59yQlkvL5jLBWfpfzRmJ1OY+6DciaY0DUcltyzs4fuZHjw==", + "path": "system.text.json/10.0.0", + "hashPath": "system.text.json.10.0.0.nupkg.sha512" + }, + "System.Threading.Channels/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fwRdkJpKisUEVNaEdsL5w5EwidzuVw0BOTfzDvYB1Yg8sq1pqNfUZxBOVFgSj6i6tNhpT3HP8BEDXf1+kFkTDA==", + "path": "system.threading.channels/10.0.0", + "hashPath": "system.threading.channels.10.0.0.nupkg.sha512" + } + }, + "runtimes": { + "win-x64": [ + "win", + "any", + "base" + ] + } +} \ No newline at end of file diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.dll b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.dll new file mode 100644 index 0000000..3c5ddbe Binary files /dev/null and b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.dll differ diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.genbundle.cache b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.genbundle.cache new file mode 100644 index 0000000..5b491f2 --- /dev/null +++ b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.genbundle.cache @@ -0,0 +1 @@ +f5ec142e4205efa4e2a47deb98b16a53a730a2e2889eb06a1b8d2cf783369ecb diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.genpublishdeps.cache b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.genpublishdeps.cache new file mode 100644 index 0000000..e3cfe8f --- /dev/null +++ b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.genpublishdeps.cache @@ -0,0 +1 @@ +fd0643ce84d5db8d093a96fb4a51a64ab36d090f48e974c315bcd467642d24cb diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.genruntimeconfig.cache b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.genruntimeconfig.cache new file mode 100644 index 0000000..0fd30c9 --- /dev/null +++ b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.genruntimeconfig.cache @@ -0,0 +1 @@ +a51d30e150bdb740388f5f5acc59cb2abb41798f409c2d9c6e00372e67cc3428 diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.pdb b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.pdb new file mode 100644 index 0000000..c3af985 Binary files /dev/null and b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/SignalRTest.pdb differ diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/apphost.exe b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/apphost.exe new file mode 100644 index 0000000..6c90625 Binary files /dev/null and b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/apphost.exe differ diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/ref/SignalRTest.dll b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/ref/SignalRTest.dll new file mode 100644 index 0000000..0a60b02 Binary files /dev/null and b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/ref/SignalRTest.dll differ diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/refint/SignalRTest.dll b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/refint/SignalRTest.dll new file mode 100644 index 0000000..0a60b02 Binary files /dev/null and b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/refint/SignalRTest.dll differ diff --git a/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/singlefilehost.exe b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/singlefilehost.exe new file mode 100644 index 0000000..c32274d Binary files /dev/null and b/backend/SignalRTest/obj/Release/net8.0-windows/win-x64/singlefilehost.exe differ diff --git a/backend/SignalRTest/obj/SignalRTest.csproj.nuget.dgspec.json b/backend/SignalRTest/obj/SignalRTest.csproj.nuget.dgspec.json new file mode 100644 index 0000000..b2577f0 --- /dev/null +++ b/backend/SignalRTest/obj/SignalRTest.csproj.nuget.dgspec.json @@ -0,0 +1,83 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\nanxun\\Documents\\IM\\backend\\SignalRTest\\SignalRTest.csproj": {} + }, + "projects": { + "C:\\Users\\nanxun\\Documents\\IM\\backend\\SignalRTest\\SignalRTest.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\nanxun\\Documents\\IM\\backend\\SignalRTest\\SignalRTest.csproj", + "projectName": "SignalRTest", + "projectPath": "C:\\Users\\nanxun\\Documents\\IM\\backend\\SignalRTest\\SignalRTest.csproj", + "packagesPath": "C:\\Users\\nanxun\\.nuget\\packages\\", + "outputPath": "C:\\Users\\nanxun\\Documents\\IM\\backend\\SignalRTest\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\nanxun\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0-windows7.0": { + "targetAlias": "net8.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net8.0-windows7.0": { + "targetAlias": "net8.0-windows", + "dependencies": { + "Microsoft.AspNetCore.SignalR.Client": { + "target": "Package", + "version": "[10.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WindowsForms": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/backend/SignalRTest/obj/SignalRTest.csproj.nuget.g.props b/backend/SignalRTest/obj/SignalRTest.csproj.nuget.g.props new file mode 100644 index 0000000..8dc3638 --- /dev/null +++ b/backend/SignalRTest/obj/SignalRTest.csproj.nuget.g.props @@ -0,0 +1,16 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\nanxun\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.14.1 + + + + + + \ No newline at end of file diff --git a/backend/SignalRTest/obj/SignalRTest.csproj.nuget.g.targets b/backend/SignalRTest/obj/SignalRTest.csproj.nuget.g.targets new file mode 100644 index 0000000..1437cbf --- /dev/null +++ b/backend/SignalRTest/obj/SignalRTest.csproj.nuget.g.targets @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/backend/SignalRTest/obj/project.assets.json b/backend/SignalRTest/obj/project.assets.json new file mode 100644 index 0000000..82a7344 --- /dev/null +++ b/backend/SignalRTest/obj/project.assets.json @@ -0,0 +1,1153 @@ +{ + "version": 3, + "targets": { + "net8.0-windows7.0": { + "Microsoft.AspNetCore.Connections.Abstractions/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "10.0.0", + "Microsoft.Extensions.Features": "10.0.0", + "System.IO.Pipelines": "10.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.AspNetCore.Connections.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.AspNetCore.Connections.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Http.Connections.Client/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Connections.Common": "10.0.0", + "Microsoft.Extensions.Logging.Abstractions": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0", + "System.Net.ServerSentEvents": "10.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Client.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Client.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Http.Connections.Common/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "10.0.0", + "System.Text.Json": "10.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.SignalR.Client/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Connections.Client": "10.0.0", + "Microsoft.AspNetCore.SignalR.Client.Core": "10.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.SignalR.Client.Core/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "10.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "10.0.0", + "Microsoft.Bcl.TimeProvider": "10.0.0", + "Microsoft.Extensions.DependencyInjection": "10.0.0", + "Microsoft.Extensions.Logging": "10.0.0", + "System.Threading.Channels": "10.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.Core.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.SignalR.Common/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0", + "System.Text.Json": "10.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "10.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/10.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Bcl.TimeProvider/10.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Bcl.TimeProvider.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Bcl.TimeProvider.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Features/10.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Features.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Features.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "10.0.0", + "Microsoft.Extensions.Logging.Abstractions": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", + "System.Diagnostics.DiagnosticSource": "10.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Options/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", + "Microsoft.Extensions.Primitives": "10.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/10.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/10.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.IO.Pipelines/10.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Net.ServerSentEvents/10.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Net.ServerSentEvents.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Net.ServerSentEvents.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Text.Encodings.Web/10.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/10.0.0": { + "type": "package", + "dependencies": { + "System.IO.Pipelines": "10.0.0", + "System.Text.Encodings.Web": "10.0.0" + }, + "compile": { + "lib/net8.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/System.Text.Json.targets": {} + } + }, + "System.Threading.Channels/10.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Threading.Channels.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Threading.Channels.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + } + } + }, + "libraries": { + "Microsoft.AspNetCore.Connections.Abstractions/10.0.0": { + "sha512": "MPXDzUknemj+sCL/LYOLvU/qIX3o9zCJtKXu9jcwNMQiOvwuv75lV20p3qGENA/ynTH7hOPFqDUEGBT30IvhEA==", + "type": "package", + "path": "microsoft.aspnetcore.connections.abstractions/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.AspNetCore.Connections.Abstractions.dll", + "lib/net10.0/Microsoft.AspNetCore.Connections.Abstractions.xml", + "lib/net462/Microsoft.AspNetCore.Connections.Abstractions.dll", + "lib/net462/Microsoft.AspNetCore.Connections.Abstractions.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.xml", + "lib/netstandard2.1/Microsoft.AspNetCore.Connections.Abstractions.dll", + "lib/netstandard2.1/Microsoft.AspNetCore.Connections.Abstractions.xml", + "microsoft.aspnetcore.connections.abstractions.10.0.0.nupkg.sha512", + "microsoft.aspnetcore.connections.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Connections.Client/10.0.0": { + "sha512": "7nSER+de0V6mWTcdUqBJZlm1XMz+Y2mTHzL3B/msVF+JfSXXZtKNVC18TI7AeSz4PD//b5qpy8n0RQEIVByfJw==", + "type": "package", + "path": "microsoft.aspnetcore.http.connections.client/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.AspNetCore.Http.Connections.Client.dll", + "lib/net10.0/Microsoft.AspNetCore.Http.Connections.Client.xml", + "lib/net462/Microsoft.AspNetCore.Http.Connections.Client.dll", + "lib/net462/Microsoft.AspNetCore.Http.Connections.Client.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Client.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Client.xml", + "lib/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Client.dll", + "lib/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Client.xml", + "microsoft.aspnetcore.http.connections.client.10.0.0.nupkg.sha512", + "microsoft.aspnetcore.http.connections.client.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Connections.Common/10.0.0": { + "sha512": "VaEGwazymaL4NB+JoAdvM/IaFg5IIg1WXtVgKmD/y3Et2qnPxolAlMXYJrI8k1EPjmoIcXQZHTj47MskRRyRIA==", + "type": "package", + "path": "microsoft.aspnetcore.http.connections.common/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.AspNetCore.Http.Connections.Common.dll", + "lib/net10.0/Microsoft.AspNetCore.Http.Connections.Common.xml", + "lib/net462/Microsoft.AspNetCore.Http.Connections.Common.dll", + "lib/net462/Microsoft.AspNetCore.Http.Connections.Common.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.xml", + "microsoft.aspnetcore.http.connections.common.10.0.0.nupkg.sha512", + "microsoft.aspnetcore.http.connections.common.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR.Client/10.0.0": { + "sha512": "XHPNPLqPX7CVJ5JuaumTP58sAVrQG4TqFKLFOtN1mZIwgEUHKwtDeMwL0G8dIvy9zcpi7os4CYAHvA1bUUTzVw==", + "type": "package", + "path": "microsoft.aspnetcore.signalr.client/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.AspNetCore.SignalR.Client.dll", + "lib/net10.0/Microsoft.AspNetCore.SignalR.Client.xml", + "lib/net462/Microsoft.AspNetCore.SignalR.Client.dll", + "lib/net462/Microsoft.AspNetCore.SignalR.Client.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.xml", + "microsoft.aspnetcore.signalr.client.10.0.0.nupkg.sha512", + "microsoft.aspnetcore.signalr.client.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR.Client.Core/10.0.0": { + "sha512": "MrXjT7YNV0e1Jb3Hai6kX/Ot7X2SlONHv5IC5XNGeycTTLu3qitJ7DXZUsPPZs6yanWIOsIKjPEY58ARHdRKGg==", + "type": "package", + "path": "microsoft.aspnetcore.signalr.client.core/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.AspNetCore.SignalR.Client.Core.dll", + "lib/net10.0/Microsoft.AspNetCore.SignalR.Client.Core.xml", + "lib/net462/Microsoft.AspNetCore.SignalR.Client.Core.dll", + "lib/net462/Microsoft.AspNetCore.SignalR.Client.Core.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.Core.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.Core.xml", + "lib/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.Core.dll", + "lib/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.Core.xml", + "microsoft.aspnetcore.signalr.client.core.10.0.0.nupkg.sha512", + "microsoft.aspnetcore.signalr.client.core.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR.Common/10.0.0": { + "sha512": "pyG6FLV4/EeOQeZ30ra4aUYycJQPT/9ddB91aplMKwEGT5KbEs//WMqMObVGvDREP508EB4QUAKzacSVi30nxw==", + "type": "package", + "path": "microsoft.aspnetcore.signalr.common/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.AspNetCore.SignalR.Common.dll", + "lib/net10.0/Microsoft.AspNetCore.SignalR.Common.xml", + "lib/net462/Microsoft.AspNetCore.SignalR.Common.dll", + "lib/net462/Microsoft.AspNetCore.SignalR.Common.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.xml", + "microsoft.aspnetcore.signalr.common.10.0.0.nupkg.sha512", + "microsoft.aspnetcore.signalr.common.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/10.0.0": { + "sha512": "L++SCI4pcG9uo7HTzAFTX33BsZFDHCdukJIK+/S4tgH/kcJlPTp9QS96E4zgOuzXRDrzaunwbFSS2DElTmWGRA==", + "type": "package", + "path": "microsoft.aspnetcore.signalr.protocols.json/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll", + "lib/net10.0/Microsoft.AspNetCore.SignalR.Protocols.Json.xml", + "lib/net462/Microsoft.AspNetCore.SignalR.Protocols.Json.dll", + "lib/net462/Microsoft.AspNetCore.SignalR.Protocols.Json.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.xml", + "microsoft.aspnetcore.signalr.protocols.json.10.0.0.nupkg.sha512", + "microsoft.aspnetcore.signalr.protocols.json.nuspec" + ] + }, + "Microsoft.Bcl.AsyncInterfaces/10.0.0": { + "sha512": "vFuwSLj9QJBbNR0NeNO4YVASUbokxs+i/xbuu8B+Fs4FAZg5QaFa6eGrMaRqTzzNI5tAb97T7BhSxtLckFyiRA==", + "type": "package", + "path": "microsoft.bcl.asyncinterfaces/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Bcl.AsyncInterfaces.targets", + "buildTransitive/net462/_._", + "lib/net462/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/net462/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", + "microsoft.bcl.asyncinterfaces.10.0.0.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Bcl.TimeProvider/10.0.0": { + "sha512": "bUubrBD6tRJE3V1kvRloYc6NymH3R5oFKjAS9e0ELNx6u0ZR+zjps9dDQyjgqN/rArzl7f+21KGszj3YRN7F2Q==", + "type": "package", + "path": "microsoft.bcl.timeprovider/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Bcl.TimeProvider.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Bcl.TimeProvider.targets", + "lib/net462/Microsoft.Bcl.TimeProvider.dll", + "lib/net462/Microsoft.Bcl.TimeProvider.xml", + "lib/net8.0/Microsoft.Bcl.TimeProvider.dll", + "lib/net8.0/Microsoft.Bcl.TimeProvider.xml", + "lib/netstandard2.0/Microsoft.Bcl.TimeProvider.dll", + "lib/netstandard2.0/Microsoft.Bcl.TimeProvider.xml", + "microsoft.bcl.timeprovider.10.0.0.nupkg.sha512", + "microsoft.bcl.timeprovider.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/10.0.0": { + "sha512": "f0RBabswJq+gRu5a+hWIobrLWiUYPKMhCD9WO3sYBAdSy3FFH14LMvLVFZc2kPSCimBLxSuitUhsd6tb0TAY6A==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.10.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { + "sha512": "L3AdmZ1WOK4XXT5YFPEwyt0ep6l8lGIPs7F5OOBZc77Zqeo01Of7XXICy47628sdVl0v/owxYJTe86DTgFwKCA==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.10.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Features/10.0.0": { + "sha512": "kCFjPpfvz0K00xIpe7wJKre1gFJdNIu9+1BYJLklu3GWb+uU4HIjza0uMBQeFGZws9VJos9LeO+PUfvGcre+9g==", + "type": "package", + "path": "microsoft.extensions.features/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.Extensions.Features.dll", + "lib/net10.0/Microsoft.Extensions.Features.xml", + "lib/net462/Microsoft.Extensions.Features.dll", + "lib/net462/Microsoft.Extensions.Features.xml", + "lib/netstandard2.0/Microsoft.Extensions.Features.dll", + "lib/netstandard2.0/Microsoft.Extensions.Features.xml", + "microsoft.extensions.features.10.0.0.nupkg.sha512", + "microsoft.extensions.features.nuspec" + ] + }, + "Microsoft.Extensions.Logging/10.0.0": { + "sha512": "BStFkd5CcnEtarlcgYDBcFzGYCuuNMzPs02wN3WBsOFoYIEmYoUdAiU+au6opzoqfTYJsMTW00AeqDdnXH2CvA==", + "type": "package", + "path": "microsoft.extensions.logging/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net10.0/Microsoft.Extensions.Logging.dll", + "lib/net10.0/Microsoft.Extensions.Logging.xml", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net8.0/Microsoft.Extensions.Logging.dll", + "lib/net8.0/Microsoft.Extensions.Logging.xml", + "lib/net9.0/Microsoft.Extensions.Logging.dll", + "lib/net9.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.10.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.0": { + "sha512": "FU/IfjDfwaMuKr414SSQNTIti/69bHEMb+QKrskRb26oVqpx3lNFXMjs/RC9ZUuhBhcwDM2BwOgoMw+PZ+beqQ==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.10.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/10.0.0": { + "sha512": "8oCAgXOow5XDrY9HaXX1QmH3ORsyZO/ANVHBlhLyCeWTH5Sg4UuqZeOTWJi6484M+LqSx0RqQXDJtdYy2BNiLQ==", + "type": "package", + "path": "microsoft.extensions.options/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/Microsoft.Extensions.Options.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net10.0/Microsoft.Extensions.Options.dll", + "lib/net10.0/Microsoft.Extensions.Options.xml", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/net9.0/Microsoft.Extensions.Options.dll", + "lib/net9.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.10.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/10.0.0": { + "sha512": "inRnbpCS0nwO/RuoZIAqxQUuyjaknOOnCEZB55KSMMjRhl0RQDttSmLSGsUJN3RQ3ocf5NDLFd2mOQViHqMK5w==", + "type": "package", + "path": "microsoft.extensions.primitives/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net10.0/Microsoft.Extensions.Primitives.dll", + "lib/net10.0/Microsoft.Extensions.Primitives.xml", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/net9.0/Microsoft.Extensions.Primitives.dll", + "lib/net9.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.10.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.DiagnosticSource/10.0.0": { + "sha512": "0KdBK+h7G13PuOSC2R/DalAoFMvdYMznvGRuICtkdcUMXgl/gYXsG6z4yUvTxHSMACorWgHCU1Faq0KUHU6yAQ==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "lib/net10.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net10.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net462/System.Diagnostics.DiagnosticSource.dll", + "lib/net462/System.Diagnostics.DiagnosticSource.xml", + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net8.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net9.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net9.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.10.0.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.IO.Pipelines/10.0.0": { + "sha512": "M1eb3nfXntaRJPrrMVM9EFS8I1bDTnt0uvUS6QP/SicZf/ZZjydMD5NiXxfmwW/uQwaMDP/yX2P+zQN1NBHChg==", + "type": "package", + "path": "system.io.pipelines/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.IO.Pipelines.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets", + "lib/net10.0/System.IO.Pipelines.dll", + "lib/net10.0/System.IO.Pipelines.xml", + "lib/net462/System.IO.Pipelines.dll", + "lib/net462/System.IO.Pipelines.xml", + "lib/net8.0/System.IO.Pipelines.dll", + "lib/net8.0/System.IO.Pipelines.xml", + "lib/net9.0/System.IO.Pipelines.dll", + "lib/net9.0/System.IO.Pipelines.xml", + "lib/netstandard2.0/System.IO.Pipelines.dll", + "lib/netstandard2.0/System.IO.Pipelines.xml", + "system.io.pipelines.10.0.0.nupkg.sha512", + "system.io.pipelines.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Net.ServerSentEvents/10.0.0": { + "sha512": "zRH5XXZfenw7bgn8BT+q6XH1Sp75kSQM5m7Ee4WzZhMu2syGawcsqdlfFa2u/+skXr/u2ufp9F6M9lgkKkfZZg==", + "type": "package", + "path": "system.net.serversentevents/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Net.ServerSentEvents.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Net.ServerSentEvents.targets", + "lib/net10.0/System.Net.ServerSentEvents.dll", + "lib/net10.0/System.Net.ServerSentEvents.xml", + "lib/net462/System.Net.ServerSentEvents.dll", + "lib/net462/System.Net.ServerSentEvents.xml", + "lib/net8.0/System.Net.ServerSentEvents.dll", + "lib/net8.0/System.Net.ServerSentEvents.xml", + "lib/net9.0/System.Net.ServerSentEvents.dll", + "lib/net9.0/System.Net.ServerSentEvents.xml", + "lib/netstandard2.0/System.Net.ServerSentEvents.dll", + "lib/netstandard2.0/System.Net.ServerSentEvents.xml", + "system.net.serversentevents.10.0.0.nupkg.sha512", + "system.net.serversentevents.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Encodings.Web/10.0.0": { + "sha512": "257hh1ep1Gqm1Lm0ulxf7vVBVMJuGN6EL4xSWjpi46DffXzm1058IiWsfSC06zSm7SniN+Tb5160UnXsSa8rRg==", + "type": "package", + "path": "system.text.encodings.web/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Text.Encodings.Web.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "lib/net10.0/System.Text.Encodings.Web.dll", + "lib/net10.0/System.Text.Encodings.Web.xml", + "lib/net462/System.Text.Encodings.Web.dll", + "lib/net462/System.Text.Encodings.Web.xml", + "lib/net8.0/System.Text.Encodings.Web.dll", + "lib/net8.0/System.Text.Encodings.Web.xml", + "lib/net9.0/System.Text.Encodings.Web.dll", + "lib/net9.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net10.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net10.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml", + "runtimes/wasi/lib/net10.0/System.Text.Encodings.Web.dll", + "runtimes/wasi/lib/net10.0/System.Text.Encodings.Web.xml", + "runtimes/win/lib/net9.0/System.Text.Encodings.Web.dll", + "runtimes/win/lib/net9.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.10.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/10.0.0": { + "sha512": "1Dpjwq9peG/Wt5BNbrzIhTpclfOSqBWZsUO28vVr59yQlkvL5jLBWfpfzRmJ1OY+6DciaY0DUcltyzs4fuZHjw==", + "type": "package", + "path": "system.text.json/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "buildTransitive/net461/System.Text.Json.targets", + "buildTransitive/net462/System.Text.Json.targets", + "buildTransitive/net8.0/System.Text.Json.targets", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netstandard2.0/System.Text.Json.targets", + "lib/net10.0/System.Text.Json.dll", + "lib/net10.0/System.Text.Json.xml", + "lib/net462/System.Text.Json.dll", + "lib/net462/System.Text.Json.xml", + "lib/net8.0/System.Text.Json.dll", + "lib/net8.0/System.Text.Json.xml", + "lib/net9.0/System.Text.Json.dll", + "lib/net9.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.10.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Threading.Channels/10.0.0": { + "sha512": "fwRdkJpKisUEVNaEdsL5w5EwidzuVw0BOTfzDvYB1Yg8sq1pqNfUZxBOVFgSj6i6tNhpT3HP8BEDXf1+kFkTDA==", + "type": "package", + "path": "system.threading.channels/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Threading.Channels.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets", + "lib/net10.0/System.Threading.Channels.dll", + "lib/net10.0/System.Threading.Channels.xml", + "lib/net462/System.Threading.Channels.dll", + "lib/net462/System.Threading.Channels.xml", + "lib/net8.0/System.Threading.Channels.dll", + "lib/net8.0/System.Threading.Channels.xml", + "lib/net9.0/System.Threading.Channels.dll", + "lib/net9.0/System.Threading.Channels.xml", + "lib/netstandard2.0/System.Threading.Channels.dll", + "lib/netstandard2.0/System.Threading.Channels.xml", + "lib/netstandard2.1/System.Threading.Channels.dll", + "lib/netstandard2.1/System.Threading.Channels.xml", + "system.threading.channels.10.0.0.nupkg.sha512", + "system.threading.channels.nuspec", + "useSharedDesignerContext.txt" + ] + } + }, + "projectFileDependencyGroups": { + "net8.0-windows7.0": [ + "Microsoft.AspNetCore.SignalR.Client >= 10.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\nanxun\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\nanxun\\Documents\\IM\\backend\\SignalRTest\\SignalRTest.csproj", + "projectName": "SignalRTest", + "projectPath": "C:\\Users\\nanxun\\Documents\\IM\\backend\\SignalRTest\\SignalRTest.csproj", + "packagesPath": "C:\\Users\\nanxun\\.nuget\\packages\\", + "outputPath": "C:\\Users\\nanxun\\Documents\\IM\\backend\\SignalRTest\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\nanxun\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0-windows7.0": { + "targetAlias": "net8.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net8.0-windows7.0": { + "targetAlias": "net8.0-windows", + "dependencies": { + "Microsoft.AspNetCore.SignalR.Client": { + "target": "Package", + "version": "[10.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WindowsForms": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/backend/SignalRTest/obj/project.nuget.cache b/backend/SignalRTest/obj/project.nuget.cache new file mode 100644 index 0000000..099ebf6 --- /dev/null +++ b/backend/SignalRTest/obj/project.nuget.cache @@ -0,0 +1,31 @@ +{ + "version": 2, + "dgSpecHash": "qqVLMCu2v8Q=", + "success": true, + "projectFilePath": "C:\\Users\\nanxun\\Documents\\IM\\backend\\SignalRTest\\SignalRTest.csproj", + "expectedPackageFiles": [ + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.aspnetcore.connections.abstractions\\10.0.0\\microsoft.aspnetcore.connections.abstractions.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.aspnetcore.http.connections.client\\10.0.0\\microsoft.aspnetcore.http.connections.client.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.aspnetcore.http.connections.common\\10.0.0\\microsoft.aspnetcore.http.connections.common.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.aspnetcore.signalr.client\\10.0.0\\microsoft.aspnetcore.signalr.client.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.aspnetcore.signalr.client.core\\10.0.0\\microsoft.aspnetcore.signalr.client.core.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.aspnetcore.signalr.common\\10.0.0\\microsoft.aspnetcore.signalr.common.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.aspnetcore.signalr.protocols.json\\10.0.0\\microsoft.aspnetcore.signalr.protocols.json.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\10.0.0\\microsoft.bcl.asyncinterfaces.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.bcl.timeprovider\\10.0.0\\microsoft.bcl.timeprovider.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\10.0.0\\microsoft.extensions.dependencyinjection.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\10.0.0\\microsoft.extensions.dependencyinjection.abstractions.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.extensions.features\\10.0.0\\microsoft.extensions.features.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.extensions.logging\\10.0.0\\microsoft.extensions.logging.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\10.0.0\\microsoft.extensions.logging.abstractions.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.extensions.options\\10.0.0\\microsoft.extensions.options.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.extensions.primitives\\10.0.0\\microsoft.extensions.primitives.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\system.diagnostics.diagnosticsource\\10.0.0\\system.diagnostics.diagnosticsource.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\system.io.pipelines\\10.0.0\\system.io.pipelines.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\system.net.serversentevents\\10.0.0\\system.net.serversentevents.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\system.text.encodings.web\\10.0.0\\system.text.encodings.web.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\system.text.json\\10.0.0\\system.text.json.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\system.threading.channels\\10.0.0\\system.threading.channels.10.0.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/backend/SignalRTest/obj/publish/win-x64/SignalRTest.csproj.nuget.dgspec.json b/backend/SignalRTest/obj/publish/win-x64/SignalRTest.csproj.nuget.dgspec.json new file mode 100644 index 0000000..137f214 --- /dev/null +++ b/backend/SignalRTest/obj/publish/win-x64/SignalRTest.csproj.nuget.dgspec.json @@ -0,0 +1,108 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\nanxun\\Documents\\IM\\backend\\SignalRTest\\SignalRTest.csproj": {} + }, + "projects": { + "C:\\Users\\nanxun\\Documents\\IM\\backend\\SignalRTest\\SignalRTest.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\nanxun\\Documents\\IM\\backend\\SignalRTest\\SignalRTest.csproj", + "projectName": "SignalRTest", + "projectPath": "C:\\Users\\nanxun\\Documents\\IM\\backend\\SignalRTest\\SignalRTest.csproj", + "packagesPath": "C:\\Users\\nanxun\\.nuget\\packages\\", + "outputPath": "C:\\Users\\nanxun\\Documents\\IM\\backend\\SignalRTest\\obj\\publish\\win-x64\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\nanxun\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0-windows7.0": { + "targetAlias": "net8.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net8.0-windows7.0": { + "targetAlias": "net8.0-windows", + "dependencies": { + "Microsoft.AspNetCore.SignalR.Client": { + "target": "Package", + "version": "[10.0.0, )" + }, + "Microsoft.NET.ILLink.Tasks": { + "suppressParent": "All", + "target": "Package", + "version": "[8.0.19, )", + "autoReferenced": true + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Runtime.win-x64", + "version": "[8.0.19, 8.0.19]" + }, + { + "name": "Microsoft.NETCore.App.Runtime.win-x64", + "version": "[8.0.19, 8.0.19]" + }, + { + "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64", + "version": "[8.0.19, 8.0.19]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WindowsForms": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" + } + }, + "runtimes": { + "win-x64": { + "#import": [] + } + } + } + } +} \ No newline at end of file diff --git a/backend/SignalRTest/obj/publish/win-x64/SignalRTest.csproj.nuget.g.props b/backend/SignalRTest/obj/publish/win-x64/SignalRTest.csproj.nuget.g.props new file mode 100644 index 0000000..bbece53 --- /dev/null +++ b/backend/SignalRTest/obj/publish/win-x64/SignalRTest.csproj.nuget.g.props @@ -0,0 +1,22 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\nanxun\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.14.1 + + + + + + + + + + C:\Users\nanxun\.nuget\packages\microsoft.net.illink.tasks\8.0.19 + + \ No newline at end of file diff --git a/backend/SignalRTest/obj/publish/win-x64/SignalRTest.csproj.nuget.g.targets b/backend/SignalRTest/obj/publish/win-x64/SignalRTest.csproj.nuget.g.targets new file mode 100644 index 0000000..1437cbf --- /dev/null +++ b/backend/SignalRTest/obj/publish/win-x64/SignalRTest.csproj.nuget.g.targets @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/backend/SignalRTest/obj/publish/win-x64/project.assets.json b/backend/SignalRTest/obj/publish/win-x64/project.assets.json new file mode 100644 index 0000000..7f748c3 --- /dev/null +++ b/backend/SignalRTest/obj/publish/win-x64/project.assets.json @@ -0,0 +1,1624 @@ +{ + "version": 3, + "targets": { + "net8.0-windows7.0": { + "Microsoft.AspNetCore.Connections.Abstractions/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "10.0.0", + "Microsoft.Extensions.Features": "10.0.0", + "System.IO.Pipelines": "10.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.AspNetCore.Connections.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.AspNetCore.Connections.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Http.Connections.Client/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Connections.Common": "10.0.0", + "Microsoft.Extensions.Logging.Abstractions": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0", + "System.Net.ServerSentEvents": "10.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Client.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Client.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Http.Connections.Common/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "10.0.0", + "System.Text.Json": "10.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.SignalR.Client/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Connections.Client": "10.0.0", + "Microsoft.AspNetCore.SignalR.Client.Core": "10.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.SignalR.Client.Core/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "10.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "10.0.0", + "Microsoft.Bcl.TimeProvider": "10.0.0", + "Microsoft.Extensions.DependencyInjection": "10.0.0", + "Microsoft.Extensions.Logging": "10.0.0", + "System.Threading.Channels": "10.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.Core.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.SignalR.Common/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0", + "System.Text.Json": "10.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "10.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/10.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Bcl.TimeProvider/10.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Bcl.TimeProvider.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Bcl.TimeProvider.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Features/10.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Features.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Features.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "10.0.0", + "Microsoft.Extensions.Logging.Abstractions": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", + "System.Diagnostics.DiagnosticSource": "10.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Options/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", + "Microsoft.Extensions.Primitives": "10.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/10.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.19": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + }, + "System.Diagnostics.DiagnosticSource/10.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.IO.Pipelines/10.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Net.ServerSentEvents/10.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Net.ServerSentEvents.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Net.ServerSentEvents.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Text.Encodings.Web/10.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/10.0.0": { + "type": "package", + "dependencies": { + "System.IO.Pipelines": "10.0.0", + "System.Text.Encodings.Web": "10.0.0" + }, + "compile": { + "lib/net8.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/System.Text.Json.targets": {} + } + }, + "System.Threading.Channels/10.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Threading.Channels.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Threading.Channels.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + } + }, + "net8.0-windows7.0/win-x64": { + "Microsoft.AspNetCore.Connections.Abstractions/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "10.0.0", + "Microsoft.Extensions.Features": "10.0.0", + "System.IO.Pipelines": "10.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.AspNetCore.Connections.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.AspNetCore.Connections.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Http.Connections.Client/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Connections.Common": "10.0.0", + "Microsoft.Extensions.Logging.Abstractions": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0", + "System.Net.ServerSentEvents": "10.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Client.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Client.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Http.Connections.Common/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "10.0.0", + "System.Text.Json": "10.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.SignalR.Client/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Connections.Client": "10.0.0", + "Microsoft.AspNetCore.SignalR.Client.Core": "10.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.SignalR.Client.Core/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "10.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "10.0.0", + "Microsoft.Bcl.TimeProvider": "10.0.0", + "Microsoft.Extensions.DependencyInjection": "10.0.0", + "Microsoft.Extensions.Logging": "10.0.0", + "System.Threading.Channels": "10.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.Core.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.SignalR.Common/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0", + "System.Text.Json": "10.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "10.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/10.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Bcl.TimeProvider/10.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Bcl.TimeProvider.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Bcl.TimeProvider.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Features/10.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Features.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Features.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "10.0.0", + "Microsoft.Extensions.Logging.Abstractions": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", + "System.Diagnostics.DiagnosticSource": "10.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Options/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", + "Microsoft.Extensions.Primitives": "10.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/10.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.NET.ILLink.Tasks/8.0.19": { + "type": "package", + "build": { + "build/Microsoft.NET.ILLink.Tasks.props": {} + } + }, + "System.Diagnostics.DiagnosticSource/10.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.IO.Pipelines/10.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Net.ServerSentEvents/10.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Net.ServerSentEvents.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Net.ServerSentEvents.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Text.Encodings.Web/10.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Text.Json/10.0.0": { + "type": "package", + "dependencies": { + "System.IO.Pipelines": "10.0.0", + "System.Text.Encodings.Web": "10.0.0" + }, + "compile": { + "lib/net8.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/System.Text.Json.targets": {} + } + }, + "System.Threading.Channels/10.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Threading.Channels.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Threading.Channels.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + } + } + }, + "libraries": { + "Microsoft.AspNetCore.Connections.Abstractions/10.0.0": { + "sha512": "MPXDzUknemj+sCL/LYOLvU/qIX3o9zCJtKXu9jcwNMQiOvwuv75lV20p3qGENA/ynTH7hOPFqDUEGBT30IvhEA==", + "type": "package", + "path": "microsoft.aspnetcore.connections.abstractions/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.AspNetCore.Connections.Abstractions.dll", + "lib/net10.0/Microsoft.AspNetCore.Connections.Abstractions.xml", + "lib/net462/Microsoft.AspNetCore.Connections.Abstractions.dll", + "lib/net462/Microsoft.AspNetCore.Connections.Abstractions.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.xml", + "lib/netstandard2.1/Microsoft.AspNetCore.Connections.Abstractions.dll", + "lib/netstandard2.1/Microsoft.AspNetCore.Connections.Abstractions.xml", + "microsoft.aspnetcore.connections.abstractions.10.0.0.nupkg.sha512", + "microsoft.aspnetcore.connections.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Connections.Client/10.0.0": { + "sha512": "7nSER+de0V6mWTcdUqBJZlm1XMz+Y2mTHzL3B/msVF+JfSXXZtKNVC18TI7AeSz4PD//b5qpy8n0RQEIVByfJw==", + "type": "package", + "path": "microsoft.aspnetcore.http.connections.client/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.AspNetCore.Http.Connections.Client.dll", + "lib/net10.0/Microsoft.AspNetCore.Http.Connections.Client.xml", + "lib/net462/Microsoft.AspNetCore.Http.Connections.Client.dll", + "lib/net462/Microsoft.AspNetCore.Http.Connections.Client.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Client.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Client.xml", + "lib/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Client.dll", + "lib/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Client.xml", + "microsoft.aspnetcore.http.connections.client.10.0.0.nupkg.sha512", + "microsoft.aspnetcore.http.connections.client.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Connections.Common/10.0.0": { + "sha512": "VaEGwazymaL4NB+JoAdvM/IaFg5IIg1WXtVgKmD/y3Et2qnPxolAlMXYJrI8k1EPjmoIcXQZHTj47MskRRyRIA==", + "type": "package", + "path": "microsoft.aspnetcore.http.connections.common/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.AspNetCore.Http.Connections.Common.dll", + "lib/net10.0/Microsoft.AspNetCore.Http.Connections.Common.xml", + "lib/net462/Microsoft.AspNetCore.Http.Connections.Common.dll", + "lib/net462/Microsoft.AspNetCore.Http.Connections.Common.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.xml", + "microsoft.aspnetcore.http.connections.common.10.0.0.nupkg.sha512", + "microsoft.aspnetcore.http.connections.common.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR.Client/10.0.0": { + "sha512": "XHPNPLqPX7CVJ5JuaumTP58sAVrQG4TqFKLFOtN1mZIwgEUHKwtDeMwL0G8dIvy9zcpi7os4CYAHvA1bUUTzVw==", + "type": "package", + "path": "microsoft.aspnetcore.signalr.client/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.AspNetCore.SignalR.Client.dll", + "lib/net10.0/Microsoft.AspNetCore.SignalR.Client.xml", + "lib/net462/Microsoft.AspNetCore.SignalR.Client.dll", + "lib/net462/Microsoft.AspNetCore.SignalR.Client.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.xml", + "microsoft.aspnetcore.signalr.client.10.0.0.nupkg.sha512", + "microsoft.aspnetcore.signalr.client.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR.Client.Core/10.0.0": { + "sha512": "MrXjT7YNV0e1Jb3Hai6kX/Ot7X2SlONHv5IC5XNGeycTTLu3qitJ7DXZUsPPZs6yanWIOsIKjPEY58ARHdRKGg==", + "type": "package", + "path": "microsoft.aspnetcore.signalr.client.core/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.AspNetCore.SignalR.Client.Core.dll", + "lib/net10.0/Microsoft.AspNetCore.SignalR.Client.Core.xml", + "lib/net462/Microsoft.AspNetCore.SignalR.Client.Core.dll", + "lib/net462/Microsoft.AspNetCore.SignalR.Client.Core.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.Core.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.Core.xml", + "lib/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.Core.dll", + "lib/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.Core.xml", + "microsoft.aspnetcore.signalr.client.core.10.0.0.nupkg.sha512", + "microsoft.aspnetcore.signalr.client.core.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR.Common/10.0.0": { + "sha512": "pyG6FLV4/EeOQeZ30ra4aUYycJQPT/9ddB91aplMKwEGT5KbEs//WMqMObVGvDREP508EB4QUAKzacSVi30nxw==", + "type": "package", + "path": "microsoft.aspnetcore.signalr.common/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.AspNetCore.SignalR.Common.dll", + "lib/net10.0/Microsoft.AspNetCore.SignalR.Common.xml", + "lib/net462/Microsoft.AspNetCore.SignalR.Common.dll", + "lib/net462/Microsoft.AspNetCore.SignalR.Common.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.xml", + "microsoft.aspnetcore.signalr.common.10.0.0.nupkg.sha512", + "microsoft.aspnetcore.signalr.common.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/10.0.0": { + "sha512": "L++SCI4pcG9uo7HTzAFTX33BsZFDHCdukJIK+/S4tgH/kcJlPTp9QS96E4zgOuzXRDrzaunwbFSS2DElTmWGRA==", + "type": "package", + "path": "microsoft.aspnetcore.signalr.protocols.json/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll", + "lib/net10.0/Microsoft.AspNetCore.SignalR.Protocols.Json.xml", + "lib/net462/Microsoft.AspNetCore.SignalR.Protocols.Json.dll", + "lib/net462/Microsoft.AspNetCore.SignalR.Protocols.Json.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.xml", + "microsoft.aspnetcore.signalr.protocols.json.10.0.0.nupkg.sha512", + "microsoft.aspnetcore.signalr.protocols.json.nuspec" + ] + }, + "Microsoft.Bcl.AsyncInterfaces/10.0.0": { + "sha512": "vFuwSLj9QJBbNR0NeNO4YVASUbokxs+i/xbuu8B+Fs4FAZg5QaFa6eGrMaRqTzzNI5tAb97T7BhSxtLckFyiRA==", + "type": "package", + "path": "microsoft.bcl.asyncinterfaces/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Bcl.AsyncInterfaces.targets", + "buildTransitive/net462/_._", + "lib/net462/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/net462/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", + "microsoft.bcl.asyncinterfaces.10.0.0.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Bcl.TimeProvider/10.0.0": { + "sha512": "bUubrBD6tRJE3V1kvRloYc6NymH3R5oFKjAS9e0ELNx6u0ZR+zjps9dDQyjgqN/rArzl7f+21KGszj3YRN7F2Q==", + "type": "package", + "path": "microsoft.bcl.timeprovider/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Bcl.TimeProvider.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Bcl.TimeProvider.targets", + "lib/net462/Microsoft.Bcl.TimeProvider.dll", + "lib/net462/Microsoft.Bcl.TimeProvider.xml", + "lib/net8.0/Microsoft.Bcl.TimeProvider.dll", + "lib/net8.0/Microsoft.Bcl.TimeProvider.xml", + "lib/netstandard2.0/Microsoft.Bcl.TimeProvider.dll", + "lib/netstandard2.0/Microsoft.Bcl.TimeProvider.xml", + "microsoft.bcl.timeprovider.10.0.0.nupkg.sha512", + "microsoft.bcl.timeprovider.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/10.0.0": { + "sha512": "f0RBabswJq+gRu5a+hWIobrLWiUYPKMhCD9WO3sYBAdSy3FFH14LMvLVFZc2kPSCimBLxSuitUhsd6tb0TAY6A==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.10.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { + "sha512": "L3AdmZ1WOK4XXT5YFPEwyt0ep6l8lGIPs7F5OOBZc77Zqeo01Of7XXICy47628sdVl0v/owxYJTe86DTgFwKCA==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.10.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Features/10.0.0": { + "sha512": "kCFjPpfvz0K00xIpe7wJKre1gFJdNIu9+1BYJLklu3GWb+uU4HIjza0uMBQeFGZws9VJos9LeO+PUfvGcre+9g==", + "type": "package", + "path": "microsoft.extensions.features/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.Extensions.Features.dll", + "lib/net10.0/Microsoft.Extensions.Features.xml", + "lib/net462/Microsoft.Extensions.Features.dll", + "lib/net462/Microsoft.Extensions.Features.xml", + "lib/netstandard2.0/Microsoft.Extensions.Features.dll", + "lib/netstandard2.0/Microsoft.Extensions.Features.xml", + "microsoft.extensions.features.10.0.0.nupkg.sha512", + "microsoft.extensions.features.nuspec" + ] + }, + "Microsoft.Extensions.Logging/10.0.0": { + "sha512": "BStFkd5CcnEtarlcgYDBcFzGYCuuNMzPs02wN3WBsOFoYIEmYoUdAiU+au6opzoqfTYJsMTW00AeqDdnXH2CvA==", + "type": "package", + "path": "microsoft.extensions.logging/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net10.0/Microsoft.Extensions.Logging.dll", + "lib/net10.0/Microsoft.Extensions.Logging.xml", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net8.0/Microsoft.Extensions.Logging.dll", + "lib/net8.0/Microsoft.Extensions.Logging.xml", + "lib/net9.0/Microsoft.Extensions.Logging.dll", + "lib/net9.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.10.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.0": { + "sha512": "FU/IfjDfwaMuKr414SSQNTIti/69bHEMb+QKrskRb26oVqpx3lNFXMjs/RC9ZUuhBhcwDM2BwOgoMw+PZ+beqQ==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.10.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/10.0.0": { + "sha512": "8oCAgXOow5XDrY9HaXX1QmH3ORsyZO/ANVHBlhLyCeWTH5Sg4UuqZeOTWJi6484M+LqSx0RqQXDJtdYy2BNiLQ==", + "type": "package", + "path": "microsoft.extensions.options/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/Microsoft.Extensions.Options.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net10.0/Microsoft.Extensions.Options.dll", + "lib/net10.0/Microsoft.Extensions.Options.xml", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/net9.0/Microsoft.Extensions.Options.dll", + "lib/net9.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.10.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/10.0.0": { + "sha512": "inRnbpCS0nwO/RuoZIAqxQUuyjaknOOnCEZB55KSMMjRhl0RQDttSmLSGsUJN3RQ3ocf5NDLFd2mOQViHqMK5w==", + "type": "package", + "path": "microsoft.extensions.primitives/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net10.0/Microsoft.Extensions.Primitives.dll", + "lib/net10.0/Microsoft.Extensions.Primitives.xml", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/net9.0/Microsoft.Extensions.Primitives.dll", + "lib/net9.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.10.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.NET.ILLink.Tasks/8.0.19": { + "sha512": "IhHf+zeZiaE5EXRyxILd4qM+Hj9cxV3sa8MpzZgeEhpvaG3a1VEGF6UCaPFLO44Kua3JkLKluE0SWVamS50PlA==", + "type": "package", + "path": "microsoft.net.illink.tasks/8.0.19", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "Sdk/Sdk.props", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/cs/ILLink.CodeFixProvider.dll", + "analyzers/dotnet/cs/ILLink.RoslynAnalyzer.dll", + "build/Microsoft.NET.ILLink.Analyzers.props", + "build/Microsoft.NET.ILLink.Tasks.props", + "build/Microsoft.NET.ILLink.targets", + "microsoft.net.illink.tasks.8.0.19.nupkg.sha512", + "microsoft.net.illink.tasks.nuspec", + "tools/net472/ILLink.Tasks.dll", + "tools/net472/ILLink.Tasks.dll.config", + "tools/net472/Mono.Cecil.Mdb.dll", + "tools/net472/Mono.Cecil.Pdb.dll", + "tools/net472/Mono.Cecil.Rocks.dll", + "tools/net472/Mono.Cecil.dll", + "tools/net472/Sdk/Sdk.props", + "tools/net472/System.Buffers.dll", + "tools/net472/System.Collections.Immutable.dll", + "tools/net472/System.Memory.dll", + "tools/net472/System.Numerics.Vectors.dll", + "tools/net472/System.Reflection.Metadata.dll", + "tools/net472/System.Runtime.CompilerServices.Unsafe.dll", + "tools/net472/build/Microsoft.NET.ILLink.Analyzers.props", + "tools/net472/build/Microsoft.NET.ILLink.Tasks.props", + "tools/net472/build/Microsoft.NET.ILLink.targets", + "tools/net8.0/ILLink.Tasks.deps.json", + "tools/net8.0/ILLink.Tasks.dll", + "tools/net8.0/Mono.Cecil.Mdb.dll", + "tools/net8.0/Mono.Cecil.Pdb.dll", + "tools/net8.0/Mono.Cecil.Rocks.dll", + "tools/net8.0/Mono.Cecil.dll", + "tools/net8.0/Sdk/Sdk.props", + "tools/net8.0/build/Microsoft.NET.ILLink.Analyzers.props", + "tools/net8.0/build/Microsoft.NET.ILLink.Tasks.props", + "tools/net8.0/build/Microsoft.NET.ILLink.targets", + "tools/net8.0/illink.deps.json", + "tools/net8.0/illink.dll", + "tools/net8.0/illink.runtimeconfig.json", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.DiagnosticSource/10.0.0": { + "sha512": "0KdBK+h7G13PuOSC2R/DalAoFMvdYMznvGRuICtkdcUMXgl/gYXsG6z4yUvTxHSMACorWgHCU1Faq0KUHU6yAQ==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "lib/net10.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net10.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net462/System.Diagnostics.DiagnosticSource.dll", + "lib/net462/System.Diagnostics.DiagnosticSource.xml", + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net8.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net9.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net9.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.10.0.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.IO.Pipelines/10.0.0": { + "sha512": "M1eb3nfXntaRJPrrMVM9EFS8I1bDTnt0uvUS6QP/SicZf/ZZjydMD5NiXxfmwW/uQwaMDP/yX2P+zQN1NBHChg==", + "type": "package", + "path": "system.io.pipelines/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.IO.Pipelines.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets", + "lib/net10.0/System.IO.Pipelines.dll", + "lib/net10.0/System.IO.Pipelines.xml", + "lib/net462/System.IO.Pipelines.dll", + "lib/net462/System.IO.Pipelines.xml", + "lib/net8.0/System.IO.Pipelines.dll", + "lib/net8.0/System.IO.Pipelines.xml", + "lib/net9.0/System.IO.Pipelines.dll", + "lib/net9.0/System.IO.Pipelines.xml", + "lib/netstandard2.0/System.IO.Pipelines.dll", + "lib/netstandard2.0/System.IO.Pipelines.xml", + "system.io.pipelines.10.0.0.nupkg.sha512", + "system.io.pipelines.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Net.ServerSentEvents/10.0.0": { + "sha512": "zRH5XXZfenw7bgn8BT+q6XH1Sp75kSQM5m7Ee4WzZhMu2syGawcsqdlfFa2u/+skXr/u2ufp9F6M9lgkKkfZZg==", + "type": "package", + "path": "system.net.serversentevents/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Net.ServerSentEvents.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Net.ServerSentEvents.targets", + "lib/net10.0/System.Net.ServerSentEvents.dll", + "lib/net10.0/System.Net.ServerSentEvents.xml", + "lib/net462/System.Net.ServerSentEvents.dll", + "lib/net462/System.Net.ServerSentEvents.xml", + "lib/net8.0/System.Net.ServerSentEvents.dll", + "lib/net8.0/System.Net.ServerSentEvents.xml", + "lib/net9.0/System.Net.ServerSentEvents.dll", + "lib/net9.0/System.Net.ServerSentEvents.xml", + "lib/netstandard2.0/System.Net.ServerSentEvents.dll", + "lib/netstandard2.0/System.Net.ServerSentEvents.xml", + "system.net.serversentevents.10.0.0.nupkg.sha512", + "system.net.serversentevents.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Encodings.Web/10.0.0": { + "sha512": "257hh1ep1Gqm1Lm0ulxf7vVBVMJuGN6EL4xSWjpi46DffXzm1058IiWsfSC06zSm7SniN+Tb5160UnXsSa8rRg==", + "type": "package", + "path": "system.text.encodings.web/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Text.Encodings.Web.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "lib/net10.0/System.Text.Encodings.Web.dll", + "lib/net10.0/System.Text.Encodings.Web.xml", + "lib/net462/System.Text.Encodings.Web.dll", + "lib/net462/System.Text.Encodings.Web.xml", + "lib/net8.0/System.Text.Encodings.Web.dll", + "lib/net8.0/System.Text.Encodings.Web.xml", + "lib/net9.0/System.Text.Encodings.Web.dll", + "lib/net9.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net10.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net10.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml", + "runtimes/wasi/lib/net10.0/System.Text.Encodings.Web.dll", + "runtimes/wasi/lib/net10.0/System.Text.Encodings.Web.xml", + "runtimes/win/lib/net9.0/System.Text.Encodings.Web.dll", + "runtimes/win/lib/net9.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.10.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/10.0.0": { + "sha512": "1Dpjwq9peG/Wt5BNbrzIhTpclfOSqBWZsUO28vVr59yQlkvL5jLBWfpfzRmJ1OY+6DciaY0DUcltyzs4fuZHjw==", + "type": "package", + "path": "system.text.json/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "buildTransitive/net461/System.Text.Json.targets", + "buildTransitive/net462/System.Text.Json.targets", + "buildTransitive/net8.0/System.Text.Json.targets", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netstandard2.0/System.Text.Json.targets", + "lib/net10.0/System.Text.Json.dll", + "lib/net10.0/System.Text.Json.xml", + "lib/net462/System.Text.Json.dll", + "lib/net462/System.Text.Json.xml", + "lib/net8.0/System.Text.Json.dll", + "lib/net8.0/System.Text.Json.xml", + "lib/net9.0/System.Text.Json.dll", + "lib/net9.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.10.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Threading.Channels/10.0.0": { + "sha512": "fwRdkJpKisUEVNaEdsL5w5EwidzuVw0BOTfzDvYB1Yg8sq1pqNfUZxBOVFgSj6i6tNhpT3HP8BEDXf1+kFkTDA==", + "type": "package", + "path": "system.threading.channels/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Threading.Channels.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets", + "lib/net10.0/System.Threading.Channels.dll", + "lib/net10.0/System.Threading.Channels.xml", + "lib/net462/System.Threading.Channels.dll", + "lib/net462/System.Threading.Channels.xml", + "lib/net8.0/System.Threading.Channels.dll", + "lib/net8.0/System.Threading.Channels.xml", + "lib/net9.0/System.Threading.Channels.dll", + "lib/net9.0/System.Threading.Channels.xml", + "lib/netstandard2.0/System.Threading.Channels.dll", + "lib/netstandard2.0/System.Threading.Channels.xml", + "lib/netstandard2.1/System.Threading.Channels.dll", + "lib/netstandard2.1/System.Threading.Channels.xml", + "system.threading.channels.10.0.0.nupkg.sha512", + "system.threading.channels.nuspec", + "useSharedDesignerContext.txt" + ] + } + }, + "projectFileDependencyGroups": { + "net8.0-windows7.0": [ + "Microsoft.AspNetCore.SignalR.Client >= 10.0.0", + "Microsoft.NET.ILLink.Tasks >= 8.0.19" + ] + }, + "packageFolders": { + "C:\\Users\\nanxun\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\nanxun\\Documents\\IM\\backend\\SignalRTest\\SignalRTest.csproj", + "projectName": "SignalRTest", + "projectPath": "C:\\Users\\nanxun\\Documents\\IM\\backend\\SignalRTest\\SignalRTest.csproj", + "packagesPath": "C:\\Users\\nanxun\\.nuget\\packages\\", + "outputPath": "C:\\Users\\nanxun\\Documents\\IM\\backend\\SignalRTest\\obj\\publish\\win-x64\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\nanxun\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0-windows7.0": { + "targetAlias": "net8.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net8.0-windows7.0": { + "targetAlias": "net8.0-windows", + "dependencies": { + "Microsoft.AspNetCore.SignalR.Client": { + "target": "Package", + "version": "[10.0.0, )" + }, + "Microsoft.NET.ILLink.Tasks": { + "suppressParent": "All", + "target": "Package", + "version": "[8.0.19, )", + "autoReferenced": true + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Runtime.win-x64", + "version": "[8.0.19, 8.0.19]" + }, + { + "name": "Microsoft.NETCore.App.Runtime.win-x64", + "version": "[8.0.19, 8.0.19]" + }, + { + "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64", + "version": "[8.0.19, 8.0.19]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WindowsForms": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" + } + }, + "runtimes": { + "win-x64": { + "#import": [] + } + } + } +} \ No newline at end of file diff --git a/backend/SignalRTest/obj/publish/win-x64/project.nuget.cache b/backend/SignalRTest/obj/publish/win-x64/project.nuget.cache new file mode 100644 index 0000000..3812f5a --- /dev/null +++ b/backend/SignalRTest/obj/publish/win-x64/project.nuget.cache @@ -0,0 +1,35 @@ +{ + "version": 2, + "dgSpecHash": "tkEl1r4m+Ks=", + "success": true, + "projectFilePath": "C:\\Users\\nanxun\\Documents\\IM\\backend\\SignalRTest\\SignalRTest.csproj", + "expectedPackageFiles": [ + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.aspnetcore.connections.abstractions\\10.0.0\\microsoft.aspnetcore.connections.abstractions.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.aspnetcore.http.connections.client\\10.0.0\\microsoft.aspnetcore.http.connections.client.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.aspnetcore.http.connections.common\\10.0.0\\microsoft.aspnetcore.http.connections.common.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.aspnetcore.signalr.client\\10.0.0\\microsoft.aspnetcore.signalr.client.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.aspnetcore.signalr.client.core\\10.0.0\\microsoft.aspnetcore.signalr.client.core.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.aspnetcore.signalr.common\\10.0.0\\microsoft.aspnetcore.signalr.common.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.aspnetcore.signalr.protocols.json\\10.0.0\\microsoft.aspnetcore.signalr.protocols.json.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\10.0.0\\microsoft.bcl.asyncinterfaces.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.bcl.timeprovider\\10.0.0\\microsoft.bcl.timeprovider.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\10.0.0\\microsoft.extensions.dependencyinjection.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\10.0.0\\microsoft.extensions.dependencyinjection.abstractions.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.extensions.features\\10.0.0\\microsoft.extensions.features.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.extensions.logging\\10.0.0\\microsoft.extensions.logging.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\10.0.0\\microsoft.extensions.logging.abstractions.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.extensions.options\\10.0.0\\microsoft.extensions.options.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.extensions.primitives\\10.0.0\\microsoft.extensions.primitives.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.net.illink.tasks\\8.0.19\\microsoft.net.illink.tasks.8.0.19.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\system.diagnostics.diagnosticsource\\10.0.0\\system.diagnostics.diagnosticsource.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\system.io.pipelines\\10.0.0\\system.io.pipelines.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\system.net.serversentevents\\10.0.0\\system.net.serversentevents.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\system.text.encodings.web\\10.0.0\\system.text.encodings.web.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\system.text.json\\10.0.0\\system.text.json.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\system.threading.channels\\10.0.0\\system.threading.channels.10.0.0.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.netcore.app.runtime.win-x64\\8.0.19\\microsoft.netcore.app.runtime.win-x64.8.0.19.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.windowsdesktop.app.runtime.win-x64\\8.0.19\\microsoft.windowsdesktop.app.runtime.win-x64.8.0.19.nupkg.sha512", + "C:\\Users\\nanxun\\.nuget\\packages\\microsoft.aspnetcore.app.runtime.win-x64\\8.0.19\\microsoft.aspnetcore.app.runtime.win-x64.8.0.19.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file