初始化
This commit is contained in:
15
MyProtoActor/MyProtoActor.csproj
Normal file
15
MyProtoActor/MyProtoActor.csproj
Normal file
@@ -0,0 +1,15 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="MQTTnet" Version="5.0.1.1416" />
|
||||
<PackageReference Include="Proto.Actor" Version="1.8.0" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
159
MyProtoActor/Program.cs
Normal file
159
MyProtoActor/Program.cs
Normal file
@@ -0,0 +1,159 @@
|
||||
using MQTTnet;
|
||||
using MQTTnet.Protocol;
|
||||
using Proto;
|
||||
using Proto.Extensions;
|
||||
using System.Reflection;
|
||||
|
||||
namespace MyProtoActor
|
||||
{
|
||||
internal class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
var system = new ActorSystem();
|
||||
var props = Props.FromProducer(() => new MyMQTTSuper("111")).WithChildSupervisorStrategy(
|
||||
new OneForOneStrategy((PID pid, Exception ex) =>
|
||||
{
|
||||
return SupervisorDirective.Restart;
|
||||
}, 10, new TimeSpan(0, 0, 5))
|
||||
);
|
||||
|
||||
PID pid = system.Root.SpawnNamed(props, "MyAAA");
|
||||
system.Root.RequestAsync<StartMessage>(pid, new StartMessage() { Text = "aaaaaaaaaa" }).GetAwaiter().GetResult();
|
||||
//system.Root.Send(pid, new StartMessage() { Text = "aaaaaaaaaa" });
|
||||
|
||||
////PID pid1= PID.FromAddress(system.Address, "MQTT");
|
||||
|
||||
//Console.WriteLine("Hello, World!");
|
||||
//Console.ReadLine();
|
||||
//Console.WriteLine(1111111111111);
|
||||
//system.Root.Send(pid, new StartMessage() { Text = "aaaaaaaaaa" });
|
||||
Console.ReadLine();
|
||||
}
|
||||
}
|
||||
public record StartMessage
|
||||
{
|
||||
public string? Text { get; set; }
|
||||
}
|
||||
public class MyMQTTSuper : IActor
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public MyMQTTSuper(string name)
|
||||
{
|
||||
Name = name;
|
||||
}
|
||||
public Task ReceiveAsync(IContext context)
|
||||
{
|
||||
PID pid = null;
|
||||
var child = context.Children;
|
||||
var MSG = context.Message;
|
||||
if (MSG is Proto.Started && (child == null || child.Count == 0))
|
||||
{
|
||||
var props = Props.FromProducer(() => new MyMQTTServer());
|
||||
PID pid111 = context.SpawnNamed(props, "MQTT");
|
||||
//context.Watch(pid111);
|
||||
//context.Send(pid111, new StartMessage { Text = "started" });
|
||||
}
|
||||
else
|
||||
{
|
||||
pid = child.FirstOrDefault();
|
||||
|
||||
if (pid != null)
|
||||
{
|
||||
context.Forward(pid);
|
||||
}
|
||||
}
|
||||
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
}
|
||||
public class MyMQTTServer : IActor
|
||||
{
|
||||
public MyMQTTServer()
|
||||
{
|
||||
|
||||
InitializeMqttClient();
|
||||
}
|
||||
public Task ReceiveAsync(IContext context)
|
||||
{
|
||||
var msg = context.Message;
|
||||
Console.WriteLine("1次");
|
||||
if (msg is Proto.Started)
|
||||
{
|
||||
_mqttClient.ConnectAsync(_options).GetAwaiter().GetResult();
|
||||
//int a = 3;
|
||||
//int b = 0;
|
||||
//int c = a / b;
|
||||
var usa = msg as Proto.Started;
|
||||
|
||||
var sss= context.Sender;
|
||||
context.Respond(new StartMessage { Text = "started" });
|
||||
}
|
||||
if (msg is StartMessage)
|
||||
{
|
||||
}
|
||||
if (msg.ToString().Equals("start"))
|
||||
{
|
||||
int a = 3;
|
||||
int b = 0;
|
||||
int c = a / b;
|
||||
}
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
|
||||
public static IMqttClient? _mqttClient;
|
||||
public MqttClientOptions? _options;
|
||||
private async Task InitializeMqttClient()
|
||||
{
|
||||
try
|
||||
{
|
||||
var factory = new MQTTnet.MqttClientFactory();
|
||||
_mqttClient = factory.CreateMqttClient();
|
||||
|
||||
|
||||
var IP = "";
|
||||
int Port = 1883;
|
||||
var UserName = "";
|
||||
var PWD = "";
|
||||
string clientId = "IOTConsumer#" + Guid.NewGuid().ToString("N");
|
||||
|
||||
_options = new MqttClientOptionsBuilder()
|
||||
.WithTcpServer(IP, Port)
|
||||
.WithClientId(clientId)
|
||||
.WithCredentials(UserName, PWD)
|
||||
.WithWillQualityOfServiceLevel(MqttQualityOfServiceLevel.AtMostOnce)
|
||||
.WithProtocolVersion(MQTTnet.Formatter.MqttProtocolVersion.V500)
|
||||
.Build();
|
||||
|
||||
// 注册事件
|
||||
_mqttClient.ConnectedAsync += OnConnectedAsync;
|
||||
_mqttClient.DisconnectedAsync += OnDisconnectedAsync;
|
||||
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
private async Task OnConnectedAsync(MqttClientConnectedEventArgs arg)
|
||||
{
|
||||
|
||||
await Task.CompletedTask;
|
||||
}
|
||||
|
||||
private async Task OnDisconnectedAsync(MqttClientDisconnectedEventArgs e)
|
||||
{
|
||||
|
||||
// 如果不是正常断开,启动重连
|
||||
if (e.Reason != MqttClientDisconnectReason.NormalDisconnection)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
await Task.CompletedTask;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
BIN
MyProtoActor/bin/Debug/net8.0/Google.Protobuf.dll
Normal file
BIN
MyProtoActor/bin/Debug/net8.0/Google.Protobuf.dll
Normal file
Binary file not shown.
BIN
MyProtoActor/bin/Debug/net8.0/MQTTnet.dll
Normal file
BIN
MyProtoActor/bin/Debug/net8.0/MQTTnet.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
202
MyProtoActor/bin/Debug/net8.0/MyProtoActor.deps.json
Normal file
202
MyProtoActor/bin/Debug/net8.0/MyProtoActor.deps.json
Normal file
@@ -0,0 +1,202 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v8.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v8.0": {
|
||||
"MyProtoActor/1.0.0": {
|
||||
"dependencies": {
|
||||
"MQTTnet": "5.0.1.1416",
|
||||
"Proto.Actor": "1.8.0"
|
||||
},
|
||||
"runtime": {
|
||||
"MyProtoActor.dll": {}
|
||||
}
|
||||
},
|
||||
"Google.Protobuf/3.30.2": {
|
||||
"runtime": {
|
||||
"lib/net5.0/Google.Protobuf.dll": {
|
||||
"assemblyVersion": "3.30.2.0",
|
||||
"fileVersion": "3.30.2.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection/9.0.3": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions/9.0.3": {
|
||||
"runtime": {
|
||||
"lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Abstractions/8.0.1": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.324.11423"
|
||||
}
|
||||
}
|
||||
},
|
||||
"MQTTnet/5.0.1.1416": {
|
||||
"runtime": {
|
||||
"lib/net8.0/MQTTnet.dll": {
|
||||
"assemblyVersion": "5.0.1.1416",
|
||||
"fileVersion": "5.0.1.1416"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Proto.Actor/1.8.0": {
|
||||
"dependencies": {
|
||||
"Google.Protobuf": "3.30.2",
|
||||
"Microsoft.Extensions.DependencyInjection": "9.0.3",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "8.0.1",
|
||||
"System.Diagnostics.DiagnosticSource": "9.0.3",
|
||||
"System.Text.Json": "9.0.3"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Proto.Actor.dll": {
|
||||
"assemblyVersion": "1.0.0.0",
|
||||
"fileVersion": "1.8.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Diagnostics.DiagnosticSource/9.0.3": {
|
||||
"runtime": {
|
||||
"lib/net8.0/System.Diagnostics.DiagnosticSource.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.IO.Pipelines/9.0.3": {
|
||||
"runtime": {
|
||||
"lib/net8.0/System.IO.Pipelines.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Text.Encodings.Web/9.0.3": {
|
||||
"runtime": {
|
||||
"lib/net8.0/System.Text.Encodings.Web.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll": {
|
||||
"rid": "browser",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Text.Json/9.0.3": {
|
||||
"dependencies": {
|
||||
"System.IO.Pipelines": "9.0.3",
|
||||
"System.Text.Encodings.Web": "9.0.3"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/System.Text.Json.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.325.11113"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"MyProtoActor/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Google.Protobuf/3.30.2": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-Y2aOVLIt75yeeEWigg9V9YnjsEm53sADtLGq0gLhwaXpk3iu8tYSoauolyhenagA2sWno2TQ2WujI0HQd6s1Vw==",
|
||||
"path": "google.protobuf/3.30.2",
|
||||
"hashPath": "google.protobuf.3.30.2.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-lDbxJpkl6X8KZGpkAxgrrthQ42YeiR0xjPp7KPx+sCPc3ZbpaIbjzd0QQ+9kDdK2RU2DOl3pc6tQyAgEZY3V0A==",
|
||||
"path": "microsoft.extensions.dependencyinjection/9.0.3",
|
||||
"hashPath": "microsoft.extensions.dependencyinjection.9.0.3.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-TfaHPSe39NyL2wxkisRxXK7xvHGZYBZ+dy3r+mqGvnxKgAPdHkMu3QMQZI4pquP6W5FIQBqs8FJpWV8ffCgDqQ==",
|
||||
"path": "microsoft.extensions.dependencyinjection.abstractions/9.0.3",
|
||||
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.3.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Abstractions/8.0.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-RIFgaqoaINxkM2KTOw72dmilDmTrYA0ns2KW4lDz4gZ2+o6IQ894CzmdL3StM2oh7QQq44nCWiqKqc4qUI9Jmg==",
|
||||
"path": "microsoft.extensions.logging.abstractions/8.0.1",
|
||||
"hashPath": "microsoft.extensions.logging.abstractions.8.0.1.nupkg.sha512"
|
||||
},
|
||||
"MQTTnet/5.0.1.1416": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-ONYieEMaHiIei5dAtHXywnfJGhmrd5Av5sNJSQERp6AtZdPk3xxjCR6Cv0C5RUr/XbLeHO4/HQ0Rc2bQ5NF5Mw==",
|
||||
"path": "mqttnet/5.0.1.1416",
|
||||
"hashPath": "mqttnet.5.0.1.1416.nupkg.sha512"
|
||||
},
|
||||
"Proto.Actor/1.8.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-dyX9N3mnLf48Gr5paA2NxLQhcNE8/uS/966NLuJxrtOSAQZZ1qIOXFgIcZ4L0caQeb2m9pqSDdujVLH3u9PyRA==",
|
||||
"path": "proto.actor/1.8.0",
|
||||
"hashPath": "proto.actor.1.8.0.nupkg.sha512"
|
||||
},
|
||||
"System.Diagnostics.DiagnosticSource/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-cBA+28xDW33tSiGht/H8xvr8lnaCrgJ7EdO348AfSGsX4PPJUOULKxny/cc9DVNGExaCrtqagsnm5M2mkWIZ+g==",
|
||||
"path": "system.diagnostics.diagnosticsource/9.0.3",
|
||||
"hashPath": "system.diagnostics.diagnosticsource.9.0.3.nupkg.sha512"
|
||||
},
|
||||
"System.IO.Pipelines/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-aP1Qh9llcEmo0qN+VKvVDHFMe5Cqpfb1VjhBO7rjmxCXtLs3IfVSOiNqqLBZ/4Qbcr4J0SDdJq9S7EKAGpnwEA==",
|
||||
"path": "system.io.pipelines/9.0.3",
|
||||
"hashPath": "system.io.pipelines.9.0.3.nupkg.sha512"
|
||||
},
|
||||
"System.Text.Encodings.Web/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-5L+iI4fBMtGwt4FHLQh40/rgdbxnw6lHaLkR3gbaHG97TohzUv+z/oP03drsTR1lKCLhOkp40cFnHYOQLtpT5A==",
|
||||
"path": "system.text.encodings.web/9.0.3",
|
||||
"hashPath": "system.text.encodings.web.9.0.3.nupkg.sha512"
|
||||
},
|
||||
"System.Text.Json/9.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-r2JRkLjsYrq5Dpo7+y3Wa73OfirZPdVhxiTJWwZ+oJM7FOAe0LkM3GlH+pgkNRdd1G1kwUbmRCdmh4uoaWwu1g==",
|
||||
"path": "system.text.json/9.0.3",
|
||||
"hashPath": "system.text.json.9.0.3.nupkg.sha512"
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
MyProtoActor/bin/Debug/net8.0/MyProtoActor.dll
Normal file
BIN
MyProtoActor/bin/Debug/net8.0/MyProtoActor.dll
Normal file
Binary file not shown.
BIN
MyProtoActor/bin/Debug/net8.0/MyProtoActor.exe
Normal file
BIN
MyProtoActor/bin/Debug/net8.0/MyProtoActor.exe
Normal file
Binary file not shown.
BIN
MyProtoActor/bin/Debug/net8.0/MyProtoActor.pdb
Normal file
BIN
MyProtoActor/bin/Debug/net8.0/MyProtoActor.pdb
Normal file
Binary file not shown.
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net8.0",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "8.0.0"
|
||||
},
|
||||
"configProperties": {
|
||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
MyProtoActor/bin/Debug/net8.0/Proto.Actor.dll
Normal file
BIN
MyProtoActor/bin/Debug/net8.0/Proto.Actor.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
MyProtoActor/bin/Debug/net8.0/System.IO.Pipelines.dll
Normal file
BIN
MyProtoActor/bin/Debug/net8.0/System.IO.Pipelines.dll
Normal file
Binary file not shown.
BIN
MyProtoActor/bin/Debug/net8.0/System.Text.Encodings.Web.dll
Normal file
BIN
MyProtoActor/bin/Debug/net8.0/System.Text.Encodings.Web.dll
Normal file
Binary file not shown.
BIN
MyProtoActor/bin/Debug/net8.0/System.Text.Json.dll
Normal file
BIN
MyProtoActor/bin/Debug/net8.0/System.Text.Json.dll
Normal file
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
|
||||
23
MyProtoActor/obj/Debug/net8.0/MyProtoActor.AssemblyInfo.cs
Normal file
23
MyProtoActor/obj/Debug/net8.0/MyProtoActor.AssemblyInfo.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
// 运行时版本:4.0.30319.42000
|
||||
//
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
// 重新生成代码,这些更改将会丢失。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("MyProtoActor")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+b5c74a3917285a83fa24bb31b761745583549030")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("MyProtoActor")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("MyProtoActor")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// 由 MSBuild WriteCodeFragment 类生成。
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
803e97acf52803ac781b79b79466ec138ffa483ab1ff98acac5a9e94e59be650
|
||||
@@ -0,0 +1,17 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net8.0
|
||||
build_property.TargetFrameworkIdentifier = .NETCoreApp
|
||||
build_property.TargetFrameworkVersion = v8.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = MyProtoActor
|
||||
build_property.ProjectDir = E:\tian\chongxin\EMQX\BooliveMQTT_Auth\MyProtoActor\
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.EffectiveAnalysisLevelStyle = 8.0
|
||||
build_property.EnableCodeStyleSeverity =
|
||||
@@ -0,0 +1,8 @@
|
||||
// <auto-generated/>
|
||||
global using System;
|
||||
global using System.Collections.Generic;
|
||||
global using System.IO;
|
||||
global using System.Linq;
|
||||
global using System.Net.Http;
|
||||
global using System.Threading;
|
||||
global using System.Threading.Tasks;
|
||||
BIN
MyProtoActor/obj/Debug/net8.0/MyProtoActor.assets.cache
Normal file
BIN
MyProtoActor/obj/Debug/net8.0/MyProtoActor.assets.cache
Normal file
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
c39a11557ad0ad902d2db9d0d0e30fe91b1cfee8284d150828121117a4f70d73
|
||||
@@ -0,0 +1,27 @@
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\MyProtoActor\bin\Debug\net8.0\MyProtoActor.exe
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\MyProtoActor\bin\Debug\net8.0\MyProtoActor.deps.json
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\MyProtoActor\bin\Debug\net8.0\MyProtoActor.runtimeconfig.json
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\MyProtoActor\bin\Debug\net8.0\MyProtoActor.dll
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\MyProtoActor\bin\Debug\net8.0\MyProtoActor.pdb
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\MyProtoActor\bin\Debug\net8.0\Google.Protobuf.dll
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\MyProtoActor\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.dll
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\MyProtoActor\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\MyProtoActor\bin\Debug\net8.0\Microsoft.Extensions.Logging.Abstractions.dll
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\MyProtoActor\bin\Debug\net8.0\MQTTnet.dll
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\MyProtoActor\bin\Debug\net8.0\Proto.Actor.dll
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\MyProtoActor\bin\Debug\net8.0\System.Diagnostics.DiagnosticSource.dll
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\MyProtoActor\bin\Debug\net8.0\System.IO.Pipelines.dll
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\MyProtoActor\bin\Debug\net8.0\System.Text.Encodings.Web.dll
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\MyProtoActor\bin\Debug\net8.0\System.Text.Json.dll
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\MyProtoActor\bin\Debug\net8.0\runtimes\browser\lib\net8.0\System.Text.Encodings.Web.dll
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\MyProtoActor\obj\Debug\net8.0\MyProtoActor.csproj.AssemblyReference.cache
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\MyProtoActor\obj\Debug\net8.0\MyProtoActor.GeneratedMSBuildEditorConfig.editorconfig
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\MyProtoActor\obj\Debug\net8.0\MyProtoActor.AssemblyInfoInputs.cache
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\MyProtoActor\obj\Debug\net8.0\MyProtoActor.AssemblyInfo.cs
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\MyProtoActor\obj\Debug\net8.0\MyProtoActor.csproj.CoreCompileInputs.cache
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\MyProtoActor\obj\Debug\net8.0\MyProtoA.D6F3A3F8.Up2Date
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\MyProtoActor\obj\Debug\net8.0\MyProtoActor.dll
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\MyProtoActor\obj\Debug\net8.0\refint\MyProtoActor.dll
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\MyProtoActor\obj\Debug\net8.0\MyProtoActor.pdb
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\MyProtoActor\obj\Debug\net8.0\MyProtoActor.genruntimeconfig.cache
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\MyProtoActor\obj\Debug\net8.0\ref\MyProtoActor.dll
|
||||
BIN
MyProtoActor/obj/Debug/net8.0/MyProtoActor.dll
Normal file
BIN
MyProtoActor/obj/Debug/net8.0/MyProtoActor.dll
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
4ff5a00e02a07afec6eaf5a8f5f957e0f594cf0b901d1ec25de9e20227921f17
|
||||
BIN
MyProtoActor/obj/Debug/net8.0/MyProtoActor.pdb
Normal file
BIN
MyProtoActor/obj/Debug/net8.0/MyProtoActor.pdb
Normal file
Binary file not shown.
BIN
MyProtoActor/obj/Debug/net8.0/apphost.exe
Normal file
BIN
MyProtoActor/obj/Debug/net8.0/apphost.exe
Normal file
Binary file not shown.
BIN
MyProtoActor/obj/Debug/net8.0/ref/MyProtoActor.dll
Normal file
BIN
MyProtoActor/obj/Debug/net8.0/ref/MyProtoActor.dll
Normal file
Binary file not shown.
BIN
MyProtoActor/obj/Debug/net8.0/refint/MyProtoActor.dll
Normal file
BIN
MyProtoActor/obj/Debug/net8.0/refint/MyProtoActor.dll
Normal file
Binary file not shown.
366
MyProtoActor/obj/MyProtoActor.csproj.nuget.dgspec.json
Normal file
366
MyProtoActor/obj/MyProtoActor.csproj.nuget.dgspec.json
Normal file
@@ -0,0 +1,366 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"E:\\tian\\chongxin\\EMQX\\BooliveMQTT_Auth\\MyProtoActor\\MyProtoActor.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"E:\\tian\\chongxin\\EMQX\\BooliveMQTT_Auth\\MyProtoActor\\MyProtoActor.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "E:\\tian\\chongxin\\EMQX\\BooliveMQTT_Auth\\MyProtoActor\\MyProtoActor.csproj",
|
||||
"projectName": "MyProtoActor",
|
||||
"projectPath": "E:\\tian\\chongxin\\EMQX\\BooliveMQTT_Auth\\MyProtoActor\\MyProtoActor.csproj",
|
||||
"packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\",
|
||||
"outputPath": "E:\\tian\\chongxin\\EMQX\\BooliveMQTT_Auth\\MyProtoActor\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\Administrator\\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"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
},
|
||||
"restoreAuditProperties": {
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
},
|
||||
"SdkAnalysisLevel": "10.0.100"
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"dependencies": {
|
||||
"MQTTnet": {
|
||||
"target": "Package",
|
||||
"version": "[5.0.1.1416, )"
|
||||
},
|
||||
"Proto.Actor": {
|
||||
"target": "Package",
|
||||
"version": "[1.8.0, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.101/PortableRuntimeIdentifierGraph.json",
|
||||
"packagesToPrune": {
|
||||
"Microsoft.CSharp": "(, 4.7.32767]",
|
||||
"Microsoft.VisualBasic": "(, 10.3.32767]",
|
||||
"Microsoft.Win32.Primitives": "(, 4.3.32767]",
|
||||
"Microsoft.Win32.Registry": "(, 5.0.32767]",
|
||||
"runtime.any.System.Collections": "(, 4.3.32767]",
|
||||
"runtime.any.System.Diagnostics.Tools": "(, 4.3.32767]",
|
||||
"runtime.any.System.Diagnostics.Tracing": "(, 4.3.32767]",
|
||||
"runtime.any.System.Globalization": "(, 4.3.32767]",
|
||||
"runtime.any.System.Globalization.Calendars": "(, 4.3.32767]",
|
||||
"runtime.any.System.IO": "(, 4.3.32767]",
|
||||
"runtime.any.System.Reflection": "(, 4.3.32767]",
|
||||
"runtime.any.System.Reflection.Extensions": "(, 4.3.32767]",
|
||||
"runtime.any.System.Reflection.Primitives": "(, 4.3.32767]",
|
||||
"runtime.any.System.Resources.ResourceManager": "(, 4.3.32767]",
|
||||
"runtime.any.System.Runtime": "(, 4.3.32767]",
|
||||
"runtime.any.System.Runtime.Handles": "(, 4.3.32767]",
|
||||
"runtime.any.System.Runtime.InteropServices": "(, 4.3.32767]",
|
||||
"runtime.any.System.Text.Encoding": "(, 4.3.32767]",
|
||||
"runtime.any.System.Text.Encoding.Extensions": "(, 4.3.32767]",
|
||||
"runtime.any.System.Threading.Tasks": "(, 4.3.32767]",
|
||||
"runtime.any.System.Threading.Timer": "(, 4.3.32767]",
|
||||
"runtime.aot.System.Collections": "(, 4.3.32767]",
|
||||
"runtime.aot.System.Diagnostics.Tools": "(, 4.3.32767]",
|
||||
"runtime.aot.System.Diagnostics.Tracing": "(, 4.3.32767]",
|
||||
"runtime.aot.System.Globalization": "(, 4.3.32767]",
|
||||
"runtime.aot.System.Globalization.Calendars": "(, 4.3.32767]",
|
||||
"runtime.aot.System.IO": "(, 4.3.32767]",
|
||||
"runtime.aot.System.Reflection": "(, 4.3.32767]",
|
||||
"runtime.aot.System.Reflection.Extensions": "(, 4.3.32767]",
|
||||
"runtime.aot.System.Reflection.Primitives": "(, 4.3.32767]",
|
||||
"runtime.aot.System.Resources.ResourceManager": "(, 4.3.32767]",
|
||||
"runtime.aot.System.Runtime": "(, 4.3.32767]",
|
||||
"runtime.aot.System.Runtime.Handles": "(, 4.3.32767]",
|
||||
"runtime.aot.System.Runtime.InteropServices": "(, 4.3.32767]",
|
||||
"runtime.aot.System.Text.Encoding": "(, 4.3.32767]",
|
||||
"runtime.aot.System.Text.Encoding.Extensions": "(, 4.3.32767]",
|
||||
"runtime.aot.System.Threading.Tasks": "(, 4.3.32767]",
|
||||
"runtime.aot.System.Threading.Timer": "(, 4.3.32767]",
|
||||
"runtime.debian.8-x64.runtime.native.System": "(, 4.3.32767]",
|
||||
"runtime.debian.8-x64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.debian.8-x64.runtime.native.System.Net.Http": "(, 4.3.32767]",
|
||||
"runtime.debian.8-x64.runtime.native.System.Net.Security": "(, 4.3.32767]",
|
||||
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(, 4.3.32767]",
|
||||
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(, 4.3.32767]",
|
||||
"runtime.debian.9-x64.runtime.native.System": "(, 4.3.32767]",
|
||||
"runtime.debian.9-x64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.debian.9-x64.runtime.native.System.Net.Http": "(, 4.3.32767]",
|
||||
"runtime.debian.9-x64.runtime.native.System.Net.Security": "(, 4.3.32767]",
|
||||
"runtime.debian.9-x64.runtime.native.System.Security.Cryptography": "(, 4.3.32767]",
|
||||
"runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(, 4.3.32767]",
|
||||
"runtime.fedora.23-x64.runtime.native.System": "(, 4.3.32767]",
|
||||
"runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.fedora.23-x64.runtime.native.System.Net.Http": "(, 4.3.32767]",
|
||||
"runtime.fedora.23-x64.runtime.native.System.Net.Security": "(, 4.3.32767]",
|
||||
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(, 4.3.32767]",
|
||||
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(, 4.3.32767]",
|
||||
"runtime.fedora.24-x64.runtime.native.System": "(, 4.3.32767]",
|
||||
"runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.fedora.24-x64.runtime.native.System.Net.Http": "(, 4.3.32767]",
|
||||
"runtime.fedora.24-x64.runtime.native.System.Net.Security": "(, 4.3.32767]",
|
||||
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(, 4.3.32767]",
|
||||
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(, 4.3.32767]",
|
||||
"runtime.fedora.27-x64.runtime.native.System": "(, 4.3.32767]",
|
||||
"runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.fedora.27-x64.runtime.native.System.Net.Http": "(, 4.3.32767]",
|
||||
"runtime.fedora.27-x64.runtime.native.System.Net.Security": "(, 4.3.32767]",
|
||||
"runtime.fedora.27-x64.runtime.native.System.Security.Cryptography": "(, 4.3.32767]",
|
||||
"runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(, 4.3.32767]",
|
||||
"runtime.fedora.28-x64.runtime.native.System": "(, 4.3.32767]",
|
||||
"runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.fedora.28-x64.runtime.native.System.Net.Http": "(, 4.3.32767]",
|
||||
"runtime.fedora.28-x64.runtime.native.System.Net.Security": "(, 4.3.32767]",
|
||||
"runtime.fedora.28-x64.runtime.native.System.Security.Cryptography": "(, 4.3.32767]",
|
||||
"runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(, 4.3.32767]",
|
||||
"runtime.native.System.Security.Cryptography": "(, 4.3.32767]",
|
||||
"runtime.native.System.Security.Cryptography.Apple": "(, 4.3.32767]",
|
||||
"runtime.native.System.Security.Cryptography.OpenSsl": "(, 4.3.32767]",
|
||||
"runtime.opensuse.13.2-x64.runtime.native.System": "(, 4.3.32767]",
|
||||
"runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(, 4.3.32767]",
|
||||
"runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(, 4.3.32767]",
|
||||
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(, 4.3.32767]",
|
||||
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(, 4.3.32767]",
|
||||
"runtime.opensuse.42.1-x64.runtime.native.System": "(, 4.3.32767]",
|
||||
"runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(, 4.3.32767]",
|
||||
"runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(, 4.3.32767]",
|
||||
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(, 4.3.32767]",
|
||||
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(, 4.3.32767]",
|
||||
"runtime.opensuse.42.3-x64.runtime.native.System": "(, 4.3.32767]",
|
||||
"runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(, 4.3.32767]",
|
||||
"runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(, 4.3.32767]",
|
||||
"runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography": "(, 4.3.32767]",
|
||||
"runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(, 4.3.32767]",
|
||||
"runtime.osx.10.10-x64.runtime.native.System": "(, 4.3.32767]",
|
||||
"runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(, 4.3.32767]",
|
||||
"runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(, 4.3.32767]",
|
||||
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(, 4.3.32767]",
|
||||
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(, 4.3.32767]",
|
||||
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(, 4.3.32767]",
|
||||
"runtime.rhel.7-x64.runtime.native.System": "(, 4.3.32767]",
|
||||
"runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.rhel.7-x64.runtime.native.System.Net.Http": "(, 4.3.32767]",
|
||||
"runtime.rhel.7-x64.runtime.native.System.Net.Security": "(, 4.3.32767]",
|
||||
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(, 4.3.32767]",
|
||||
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.14.04-x64.runtime.native.System": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.16.04-x64.runtime.native.System": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.16.10-x64.runtime.native.System": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.18.04-x64.runtime.native.System": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(, 4.3.32767]",
|
||||
"runtime.unix.Microsoft.Win32.Primitives": "(, 4.3.32767]",
|
||||
"runtime.unix.System.Console": "(, 4.3.32767]",
|
||||
"runtime.unix.System.Diagnostics.Debug": "(, 4.3.32767]",
|
||||
"runtime.unix.System.IO.FileSystem": "(, 4.3.32767]",
|
||||
"runtime.unix.System.Net.Primitives": "(, 4.3.32767]",
|
||||
"runtime.unix.System.Net.Sockets": "(, 4.3.32767]",
|
||||
"runtime.unix.System.Private.Uri": "(, 4.3.32767]",
|
||||
"runtime.unix.System.Runtime.Extensions": "(, 4.3.32767]",
|
||||
"runtime.win.Microsoft.Win32.Primitives": "(, 4.3.32767]",
|
||||
"runtime.win.System.Console": "(, 4.3.32767]",
|
||||
"runtime.win.System.Diagnostics.Debug": "(, 4.3.32767]",
|
||||
"runtime.win.System.IO.FileSystem": "(, 4.3.32767]",
|
||||
"runtime.win.System.Net.Primitives": "(, 4.3.32767]",
|
||||
"runtime.win.System.Net.Sockets": "(, 4.3.32767]",
|
||||
"runtime.win.System.Runtime.Extensions": "(, 4.3.32767]",
|
||||
"runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(, 4.0.32767]",
|
||||
"runtime.win10-arm64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(, 4.0.32767]",
|
||||
"runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(, 4.0.32767]",
|
||||
"runtime.win7-x64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.win7-x86.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.win7.System.Private.Uri": "(, 4.3.32767]",
|
||||
"runtime.win8-arm.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"System.AppContext": "(, 4.3.32767]",
|
||||
"System.Buffers": "(, 4.6.32767]",
|
||||
"System.Collections": "(, 4.3.32767]",
|
||||
"System.Collections.Concurrent": "(, 4.3.32767]",
|
||||
"System.Collections.Immutable": "(, 8.0.32767]",
|
||||
"System.Collections.NonGeneric": "(, 4.3.32767]",
|
||||
"System.Collections.Specialized": "(, 4.3.32767]",
|
||||
"System.ComponentModel": "(, 4.3.32767]",
|
||||
"System.ComponentModel.Annotations": "(, 5.0.32767]",
|
||||
"System.ComponentModel.EventBasedAsync": "(, 4.3.32767]",
|
||||
"System.ComponentModel.Primitives": "(, 4.3.32767]",
|
||||
"System.ComponentModel.TypeConverter": "(, 4.3.32767]",
|
||||
"System.Console": "(, 4.3.32767]",
|
||||
"System.Data.Common": "(, 4.3.32767]",
|
||||
"System.Data.DataSetExtensions": "(, 4.5.32767]",
|
||||
"System.Diagnostics.Contracts": "(, 4.3.32767]",
|
||||
"System.Diagnostics.Debug": "(, 4.3.32767]",
|
||||
"System.Diagnostics.DiagnosticSource": "(, 8.0.32767]",
|
||||
"System.Diagnostics.FileVersionInfo": "(, 4.3.32767]",
|
||||
"System.Diagnostics.Process": "(, 4.3.32767]",
|
||||
"System.Diagnostics.StackTrace": "(, 4.3.32767]",
|
||||
"System.Diagnostics.TextWriterTraceListener": "(, 4.3.32767]",
|
||||
"System.Diagnostics.Tools": "(, 4.3.32767]",
|
||||
"System.Diagnostics.TraceSource": "(, 4.3.32767]",
|
||||
"System.Diagnostics.Tracing": "(, 4.3.32767]",
|
||||
"System.Drawing.Primitives": "(, 4.3.32767]",
|
||||
"System.Dynamic.Runtime": "(, 4.3.32767]",
|
||||
"System.Formats.Asn1": "(, 8.0.32767]",
|
||||
"System.Globalization": "(, 4.3.32767]",
|
||||
"System.Globalization.Calendars": "(, 4.3.32767]",
|
||||
"System.Globalization.Extensions": "(, 4.3.32767]",
|
||||
"System.IO": "(, 4.3.32767]",
|
||||
"System.IO.Compression": "(, 4.3.32767]",
|
||||
"System.IO.Compression.ZipFile": "(, 4.3.32767]",
|
||||
"System.IO.FileSystem": "(, 4.3.32767]",
|
||||
"System.IO.FileSystem.AccessControl": "(, 5.0.32767]",
|
||||
"System.IO.FileSystem.DriveInfo": "(, 4.3.32767]",
|
||||
"System.IO.FileSystem.Primitives": "(, 4.3.32767]",
|
||||
"System.IO.FileSystem.Watcher": "(, 4.3.32767]",
|
||||
"System.IO.IsolatedStorage": "(, 4.3.32767]",
|
||||
"System.IO.MemoryMappedFiles": "(, 4.3.32767]",
|
||||
"System.IO.Pipes": "(, 4.3.32767]",
|
||||
"System.IO.Pipes.AccessControl": "(, 4.6.32767]",
|
||||
"System.IO.UnmanagedMemoryStream": "(, 4.3.32767]",
|
||||
"System.Linq": "(, 4.3.32767]",
|
||||
"System.Linq.Expressions": "(, 4.3.32767]",
|
||||
"System.Linq.Parallel": "(, 4.3.32767]",
|
||||
"System.Linq.Queryable": "(, 4.3.32767]",
|
||||
"System.Memory": "(, 4.6.32767]",
|
||||
"System.Net.Http": "(, 4.3.32767]",
|
||||
"System.Net.Http.Json": "(, 8.0.32767]",
|
||||
"System.Net.NameResolution": "(, 4.3.32767]",
|
||||
"System.Net.NetworkInformation": "(, 4.3.32767]",
|
||||
"System.Net.Ping": "(, 4.3.32767]",
|
||||
"System.Net.Primitives": "(, 4.3.32767]",
|
||||
"System.Net.Requests": "(, 4.3.32767]",
|
||||
"System.Net.Security": "(, 4.3.32767]",
|
||||
"System.Net.Sockets": "(, 4.3.32767]",
|
||||
"System.Net.WebHeaderCollection": "(, 4.3.32767]",
|
||||
"System.Net.WebSockets": "(, 4.3.32767]",
|
||||
"System.Net.WebSockets.Client": "(, 4.3.32767]",
|
||||
"System.Numerics.Vectors": "(, 4.6.32767]",
|
||||
"System.ObjectModel": "(, 4.3.32767]",
|
||||
"System.Private.DataContractSerialization": "(, 4.3.32767]",
|
||||
"System.Private.Uri": "(, 4.3.32767]",
|
||||
"System.Reflection": "(, 4.3.32767]",
|
||||
"System.Reflection.DispatchProxy": "(, 4.8.32767]",
|
||||
"System.Reflection.Emit": "(, 4.7.32767]",
|
||||
"System.Reflection.Emit.ILGeneration": "(, 4.7.32767]",
|
||||
"System.Reflection.Emit.Lightweight": "(, 4.7.32767]",
|
||||
"System.Reflection.Extensions": "(, 4.3.32767]",
|
||||
"System.Reflection.Metadata": "(, 8.0.32767]",
|
||||
"System.Reflection.Primitives": "(, 4.3.32767]",
|
||||
"System.Reflection.TypeExtensions": "(, 4.7.32767]",
|
||||
"System.Resources.Reader": "(, 4.3.32767]",
|
||||
"System.Resources.ResourceManager": "(, 4.3.32767]",
|
||||
"System.Resources.Writer": "(, 4.3.32767]",
|
||||
"System.Runtime": "(, 4.3.32767]",
|
||||
"System.Runtime.CompilerServices.Unsafe": "(, 6.1.32767]",
|
||||
"System.Runtime.CompilerServices.VisualC": "(, 4.3.32767]",
|
||||
"System.Runtime.Extensions": "(, 4.3.32767]",
|
||||
"System.Runtime.Handles": "(, 4.3.32767]",
|
||||
"System.Runtime.InteropServices": "(, 4.3.32767]",
|
||||
"System.Runtime.InteropServices.RuntimeInformation": "(, 4.3.32767]",
|
||||
"System.Runtime.Loader": "(, 4.3.32767]",
|
||||
"System.Runtime.Numerics": "(, 4.3.32767]",
|
||||
"System.Runtime.Serialization.Formatters": "(, 4.3.32767]",
|
||||
"System.Runtime.Serialization.Json": "(, 4.3.32767]",
|
||||
"System.Runtime.Serialization.Primitives": "(, 4.3.32767]",
|
||||
"System.Runtime.Serialization.Xml": "(, 4.3.32767]",
|
||||
"System.Security.AccessControl": "(, 6.0.32767]",
|
||||
"System.Security.Claims": "(, 4.3.32767]",
|
||||
"System.Security.Cryptography.Algorithms": "(, 4.3.32767]",
|
||||
"System.Security.Cryptography.Cng": "(, 4.6.32767]",
|
||||
"System.Security.Cryptography.Csp": "(, 4.3.32767]",
|
||||
"System.Security.Cryptography.Encoding": "(, 4.3.32767]",
|
||||
"System.Security.Cryptography.OpenSsl": "(, 5.0.32767]",
|
||||
"System.Security.Cryptography.Primitives": "(, 4.3.32767]",
|
||||
"System.Security.Cryptography.X509Certificates": "(, 4.3.32767]",
|
||||
"System.Security.Principal": "(, 4.3.32767]",
|
||||
"System.Security.Principal.Windows": "(, 5.0.32767]",
|
||||
"System.Security.SecureString": "(, 4.3.32767]",
|
||||
"System.Text.Encoding": "(, 4.3.32767]",
|
||||
"System.Text.Encoding.CodePages": "(, 8.0.32767]",
|
||||
"System.Text.Encoding.Extensions": "(, 4.3.32767]",
|
||||
"System.Text.Encodings.Web": "(, 8.0.32767]",
|
||||
"System.Text.Json": "(, 8.0.32767]",
|
||||
"System.Text.RegularExpressions": "(, 4.3.32767]",
|
||||
"System.Threading": "(, 4.3.32767]",
|
||||
"System.Threading.Channels": "(, 8.0.32767]",
|
||||
"System.Threading.Overlapped": "(, 4.3.32767]",
|
||||
"System.Threading.Tasks": "(, 4.3.32767]",
|
||||
"System.Threading.Tasks.Dataflow": "(, 8.0.32767]",
|
||||
"System.Threading.Tasks.Extensions": "(, 4.6.32767]",
|
||||
"System.Threading.Tasks.Parallel": "(, 4.3.32767]",
|
||||
"System.Threading.Thread": "(, 4.3.32767]",
|
||||
"System.Threading.ThreadPool": "(, 4.3.32767]",
|
||||
"System.Threading.Timer": "(, 4.3.32767]",
|
||||
"System.ValueTuple": "(, 4.6.32767]",
|
||||
"System.Xml.ReaderWriter": "(, 4.3.32767]",
|
||||
"System.Xml.XDocument": "(, 4.3.32767]",
|
||||
"System.Xml.XmlDocument": "(, 4.3.32767]",
|
||||
"System.Xml.XmlSerializer": "(, 4.3.32767]",
|
||||
"System.Xml.XPath": "(, 4.3.32767]",
|
||||
"System.Xml.XPath.XDocument": "(, 4.3.32767]"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
16
MyProtoActor/obj/MyProtoActor.csproj.nuget.g.props
Normal file
16
MyProtoActor/obj/MyProtoActor.csproj.nuget.g.props
Normal file
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Administrator\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.14.1</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\Administrator\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
7
MyProtoActor/obj/MyProtoActor.csproj.nuget.g.targets
Normal file
7
MyProtoActor/obj/MyProtoActor.csproj.nuget.g.targets
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)system.text.json\9.0.3\buildTransitive\net8.0\System.Text.Json.targets" Condition="Exists('$(NuGetPackageRoot)system.text.json\9.0.3\buildTransitive\net8.0\System.Text.Json.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\8.0.1\buildTransitive\net6.0\Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\8.0.1\buildTransitive\net6.0\Microsoft.Extensions.Logging.Abstractions.targets')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
|
||||
23
MyProtoActor/obj/Release/net8.0/MyProtoActor.AssemblyInfo.cs
Normal file
23
MyProtoActor/obj/Release/net8.0/MyProtoActor.AssemblyInfo.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
// 运行时版本:4.0.30319.42000
|
||||
//
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
// 重新生成代码,这些更改将会丢失。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("MyProtoActor")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+b5c74a3917285a83fa24bb31b761745583549030")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("MyProtoActor")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("MyProtoActor")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// 由 MSBuild WriteCodeFragment 类生成。
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
3923db8b3ce762ca8f0bc9d5796e02b9fed79ef606cec0529eed56607069168c
|
||||
@@ -0,0 +1,17 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net8.0
|
||||
build_property.TargetFrameworkIdentifier = .NETCoreApp
|
||||
build_property.TargetFrameworkVersion = v8.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = MyProtoActor
|
||||
build_property.ProjectDir = E:\tian\chongxin\EMQX\BooliveMQTT_Auth\MyProtoActor\
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.EffectiveAnalysisLevelStyle = 8.0
|
||||
build_property.EnableCodeStyleSeverity =
|
||||
@@ -0,0 +1,8 @@
|
||||
// <auto-generated/>
|
||||
global using System;
|
||||
global using System.Collections.Generic;
|
||||
global using System.IO;
|
||||
global using System.Linq;
|
||||
global using System.Net.Http;
|
||||
global using System.Threading;
|
||||
global using System.Threading.Tasks;
|
||||
BIN
MyProtoActor/obj/Release/net8.0/MyProtoActor.assets.cache
Normal file
BIN
MyProtoActor/obj/Release/net8.0/MyProtoActor.assets.cache
Normal file
Binary file not shown.
Binary file not shown.
905
MyProtoActor/obj/project.assets.json
Normal file
905
MyProtoActor/obj/project.assets.json
Normal file
@@ -0,0 +1,905 @@
|
||||
{
|
||||
"version": 3,
|
||||
"targets": {
|
||||
"net8.0": {
|
||||
"Google.Protobuf/3.30.2": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/net5.0/Google.Protobuf.dll": {
|
||||
"related": ".pdb;.xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net5.0/Google.Protobuf.dll": {
|
||||
"related": ".pdb;.xml"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection/9.0.3": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3"
|
||||
},
|
||||
"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/9.0.3": {
|
||||
"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.Logging.Abstractions/8.0.1": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1"
|
||||
},
|
||||
"compile": {
|
||||
"lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"build": {
|
||||
"buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
|
||||
}
|
||||
},
|
||||
"MQTTnet/5.0.1.1416": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/net8.0/MQTTnet.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/MQTTnet.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Proto.Actor/1.8.0": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Google.Protobuf": "3.30.2",
|
||||
"Microsoft.Extensions.DependencyInjection": "9.0.3",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "8.0.1",
|
||||
"System.Diagnostics.DiagnosticSource": "9.0.3",
|
||||
"System.Text.Json": "9.0.3"
|
||||
},
|
||||
"compile": {
|
||||
"lib/net8.0/Proto.Actor.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Proto.Actor.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Diagnostics.DiagnosticSource/9.0.3": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/net8.0/System.Diagnostics.DiagnosticSource.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/System.Diagnostics.DiagnosticSource.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"contentFiles": {
|
||||
"contentFiles/any/any/_._": {
|
||||
"buildAction": "None",
|
||||
"codeLanguage": "any",
|
||||
"copyToOutput": false
|
||||
}
|
||||
},
|
||||
"build": {
|
||||
"buildTransitive/net8.0/_._": {}
|
||||
}
|
||||
},
|
||||
"System.IO.Pipelines/9.0.3": {
|
||||
"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.Text.Encodings.Web/9.0.3": {
|
||||
"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/9.0.3": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"System.IO.Pipelines": "9.0.3",
|
||||
"System.Text.Encodings.Web": "9.0.3"
|
||||
},
|
||||
"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": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"Google.Protobuf/3.30.2": {
|
||||
"sha512": "Y2aOVLIt75yeeEWigg9V9YnjsEm53sADtLGq0gLhwaXpk3iu8tYSoauolyhenagA2sWno2TQ2WujI0HQd6s1Vw==",
|
||||
"type": "package",
|
||||
"path": "google.protobuf/3.30.2",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"google.protobuf.3.30.2.nupkg.sha512",
|
||||
"google.protobuf.nuspec",
|
||||
"lib/net45/Google.Protobuf.dll",
|
||||
"lib/net45/Google.Protobuf.pdb",
|
||||
"lib/net45/Google.Protobuf.xml",
|
||||
"lib/net5.0/Google.Protobuf.dll",
|
||||
"lib/net5.0/Google.Protobuf.pdb",
|
||||
"lib/net5.0/Google.Protobuf.xml",
|
||||
"lib/netstandard1.1/Google.Protobuf.dll",
|
||||
"lib/netstandard1.1/Google.Protobuf.pdb",
|
||||
"lib/netstandard1.1/Google.Protobuf.xml",
|
||||
"lib/netstandard2.0/Google.Protobuf.dll",
|
||||
"lib/netstandard2.0/Google.Protobuf.pdb",
|
||||
"lib/netstandard2.0/Google.Protobuf.xml"
|
||||
]
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection/9.0.3": {
|
||||
"sha512": "lDbxJpkl6X8KZGpkAxgrrthQ42YeiR0xjPp7KPx+sCPc3ZbpaIbjzd0QQ+9kDdK2RU2DOl3pc6tQyAgEZY3V0A==",
|
||||
"type": "package",
|
||||
"path": "microsoft.extensions.dependencyinjection/9.0.3",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"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/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.9.0.3.nupkg.sha512",
|
||||
"microsoft.extensions.dependencyinjection.nuspec",
|
||||
"useSharedDesignerContext.txt"
|
||||
]
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions/9.0.3": {
|
||||
"sha512": "TfaHPSe39NyL2wxkisRxXK7xvHGZYBZ+dy3r+mqGvnxKgAPdHkMu3QMQZI4pquP6W5FIQBqs8FJpWV8ffCgDqQ==",
|
||||
"type": "package",
|
||||
"path": "microsoft.extensions.dependencyinjection.abstractions/9.0.3",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"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/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.9.0.3.nupkg.sha512",
|
||||
"microsoft.extensions.dependencyinjection.abstractions.nuspec",
|
||||
"useSharedDesignerContext.txt"
|
||||
]
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Abstractions/8.0.1": {
|
||||
"sha512": "RIFgaqoaINxkM2KTOw72dmilDmTrYA0ns2KW4lDz4gZ2+o6IQ894CzmdL3StM2oh7QQq44nCWiqKqc4qUI9Jmg==",
|
||||
"type": "package",
|
||||
"path": "microsoft.extensions.logging.abstractions/8.0.1",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"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/net6.0/Microsoft.Extensions.Logging.Abstractions.targets",
|
||||
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
|
||||
"buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
|
||||
"lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
|
||||
"lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
|
||||
"lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
|
||||
"lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
|
||||
"lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll",
|
||||
"lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml",
|
||||
"lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll",
|
||||
"lib/net8.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.8.0.1.nupkg.sha512",
|
||||
"microsoft.extensions.logging.abstractions.nuspec",
|
||||
"useSharedDesignerContext.txt"
|
||||
]
|
||||
},
|
||||
"MQTTnet/5.0.1.1416": {
|
||||
"sha512": "ONYieEMaHiIei5dAtHXywnfJGhmrd5Av5sNJSQERp6AtZdPk3xxjCR6Cv0C5RUr/XbLeHO4/HQ0Rc2bQ5NF5Mw==",
|
||||
"type": "package",
|
||||
"path": "mqttnet/5.0.1.1416",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"lib/net8.0/MQTTnet.dll",
|
||||
"lib/net8.0/MQTTnet.xml",
|
||||
"mqttnet.5.0.1.1416.nupkg.sha512",
|
||||
"mqttnet.nuspec",
|
||||
"nuget.png"
|
||||
]
|
||||
},
|
||||
"Proto.Actor/1.8.0": {
|
||||
"sha512": "dyX9N3mnLf48Gr5paA2NxLQhcNE8/uS/966NLuJxrtOSAQZZ1qIOXFgIcZ4L0caQeb2m9pqSDdujVLH3u9PyRA==",
|
||||
"type": "package",
|
||||
"path": "proto.actor/1.8.0",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"lib/net8.0/Proto.Actor.dll",
|
||||
"lib/net8.0/Proto.Actor.xml",
|
||||
"logo.png",
|
||||
"proto.actor.1.8.0.nupkg.sha512",
|
||||
"proto.actor.nuspec"
|
||||
]
|
||||
},
|
||||
"System.Diagnostics.DiagnosticSource/9.0.3": {
|
||||
"sha512": "cBA+28xDW33tSiGht/H8xvr8lnaCrgJ7EdO348AfSGsX4PPJUOULKxny/cc9DVNGExaCrtqagsnm5M2mkWIZ+g==",
|
||||
"type": "package",
|
||||
"path": "system.diagnostics.diagnosticsource/9.0.3",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets",
|
||||
"buildTransitive/net462/_._",
|
||||
"buildTransitive/net8.0/_._",
|
||||
"buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
|
||||
"content/ILLink/ILLink.Descriptors.LibraryBuild.xml",
|
||||
"contentFiles/any/net462/ILLink/ILLink.Descriptors.LibraryBuild.xml",
|
||||
"contentFiles/any/net8.0/ILLink/ILLink.Descriptors.LibraryBuild.xml",
|
||||
"contentFiles/any/net9.0/ILLink/ILLink.Descriptors.LibraryBuild.xml",
|
||||
"contentFiles/any/netstandard2.0/ILLink/ILLink.Descriptors.LibraryBuild.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.9.0.3.nupkg.sha512",
|
||||
"system.diagnostics.diagnosticsource.nuspec",
|
||||
"useSharedDesignerContext.txt"
|
||||
]
|
||||
},
|
||||
"System.IO.Pipelines/9.0.3": {
|
||||
"sha512": "aP1Qh9llcEmo0qN+VKvVDHFMe5Cqpfb1VjhBO7rjmxCXtLs3IfVSOiNqqLBZ/4Qbcr4J0SDdJq9S7EKAGpnwEA==",
|
||||
"type": "package",
|
||||
"path": "system.io.pipelines/9.0.3",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"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/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.9.0.3.nupkg.sha512",
|
||||
"system.io.pipelines.nuspec",
|
||||
"useSharedDesignerContext.txt"
|
||||
]
|
||||
},
|
||||
"System.Text.Encodings.Web/9.0.3": {
|
||||
"sha512": "5L+iI4fBMtGwt4FHLQh40/rgdbxnw6lHaLkR3gbaHG97TohzUv+z/oP03drsTR1lKCLhOkp40cFnHYOQLtpT5A==",
|
||||
"type": "package",
|
||||
"path": "system.text.encodings.web/9.0.3",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"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/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/net8.0/System.Text.Encodings.Web.dll",
|
||||
"runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml",
|
||||
"runtimes/browser/lib/net9.0/System.Text.Encodings.Web.dll",
|
||||
"runtimes/browser/lib/net9.0/System.Text.Encodings.Web.xml",
|
||||
"system.text.encodings.web.9.0.3.nupkg.sha512",
|
||||
"system.text.encodings.web.nuspec",
|
||||
"useSharedDesignerContext.txt"
|
||||
]
|
||||
},
|
||||
"System.Text.Json/9.0.3": {
|
||||
"sha512": "r2JRkLjsYrq5Dpo7+y3Wa73OfirZPdVhxiTJWwZ+oJM7FOAe0LkM3GlH+pgkNRdd1G1kwUbmRCdmh4uoaWwu1g==",
|
||||
"type": "package",
|
||||
"path": "system.text.json/9.0.3",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"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/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.9.0.3.nupkg.sha512",
|
||||
"system.text.json.nuspec",
|
||||
"useSharedDesignerContext.txt"
|
||||
]
|
||||
}
|
||||
},
|
||||
"projectFileDependencyGroups": {
|
||||
"net8.0": [
|
||||
"MQTTnet >= 5.0.1.1416",
|
||||
"Proto.Actor >= 1.8.0"
|
||||
]
|
||||
},
|
||||
"packageFolders": {
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\": {},
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "E:\\tian\\chongxin\\EMQX\\BooliveMQTT_Auth\\MyProtoActor\\MyProtoActor.csproj",
|
||||
"projectName": "MyProtoActor",
|
||||
"projectPath": "E:\\tian\\chongxin\\EMQX\\BooliveMQTT_Auth\\MyProtoActor\\MyProtoActor.csproj",
|
||||
"packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\",
|
||||
"outputPath": "E:\\tian\\chongxin\\EMQX\\BooliveMQTT_Auth\\MyProtoActor\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\Administrator\\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"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
},
|
||||
"restoreAuditProperties": {
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
},
|
||||
"SdkAnalysisLevel": "10.0.100"
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"dependencies": {
|
||||
"MQTTnet": {
|
||||
"target": "Package",
|
||||
"version": "[5.0.1.1416, )"
|
||||
},
|
||||
"Proto.Actor": {
|
||||
"target": "Package",
|
||||
"version": "[1.8.0, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.101/PortableRuntimeIdentifierGraph.json",
|
||||
"packagesToPrune": {
|
||||
"Microsoft.CSharp": "(, 4.7.32767]",
|
||||
"Microsoft.VisualBasic": "(, 10.3.32767]",
|
||||
"Microsoft.Win32.Primitives": "(, 4.3.32767]",
|
||||
"Microsoft.Win32.Registry": "(, 5.0.32767]",
|
||||
"runtime.any.System.Collections": "(, 4.3.32767]",
|
||||
"runtime.any.System.Diagnostics.Tools": "(, 4.3.32767]",
|
||||
"runtime.any.System.Diagnostics.Tracing": "(, 4.3.32767]",
|
||||
"runtime.any.System.Globalization": "(, 4.3.32767]",
|
||||
"runtime.any.System.Globalization.Calendars": "(, 4.3.32767]",
|
||||
"runtime.any.System.IO": "(, 4.3.32767]",
|
||||
"runtime.any.System.Reflection": "(, 4.3.32767]",
|
||||
"runtime.any.System.Reflection.Extensions": "(, 4.3.32767]",
|
||||
"runtime.any.System.Reflection.Primitives": "(, 4.3.32767]",
|
||||
"runtime.any.System.Resources.ResourceManager": "(, 4.3.32767]",
|
||||
"runtime.any.System.Runtime": "(, 4.3.32767]",
|
||||
"runtime.any.System.Runtime.Handles": "(, 4.3.32767]",
|
||||
"runtime.any.System.Runtime.InteropServices": "(, 4.3.32767]",
|
||||
"runtime.any.System.Text.Encoding": "(, 4.3.32767]",
|
||||
"runtime.any.System.Text.Encoding.Extensions": "(, 4.3.32767]",
|
||||
"runtime.any.System.Threading.Tasks": "(, 4.3.32767]",
|
||||
"runtime.any.System.Threading.Timer": "(, 4.3.32767]",
|
||||
"runtime.aot.System.Collections": "(, 4.3.32767]",
|
||||
"runtime.aot.System.Diagnostics.Tools": "(, 4.3.32767]",
|
||||
"runtime.aot.System.Diagnostics.Tracing": "(, 4.3.32767]",
|
||||
"runtime.aot.System.Globalization": "(, 4.3.32767]",
|
||||
"runtime.aot.System.Globalization.Calendars": "(, 4.3.32767]",
|
||||
"runtime.aot.System.IO": "(, 4.3.32767]",
|
||||
"runtime.aot.System.Reflection": "(, 4.3.32767]",
|
||||
"runtime.aot.System.Reflection.Extensions": "(, 4.3.32767]",
|
||||
"runtime.aot.System.Reflection.Primitives": "(, 4.3.32767]",
|
||||
"runtime.aot.System.Resources.ResourceManager": "(, 4.3.32767]",
|
||||
"runtime.aot.System.Runtime": "(, 4.3.32767]",
|
||||
"runtime.aot.System.Runtime.Handles": "(, 4.3.32767]",
|
||||
"runtime.aot.System.Runtime.InteropServices": "(, 4.3.32767]",
|
||||
"runtime.aot.System.Text.Encoding": "(, 4.3.32767]",
|
||||
"runtime.aot.System.Text.Encoding.Extensions": "(, 4.3.32767]",
|
||||
"runtime.aot.System.Threading.Tasks": "(, 4.3.32767]",
|
||||
"runtime.aot.System.Threading.Timer": "(, 4.3.32767]",
|
||||
"runtime.debian.8-x64.runtime.native.System": "(, 4.3.32767]",
|
||||
"runtime.debian.8-x64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.debian.8-x64.runtime.native.System.Net.Http": "(, 4.3.32767]",
|
||||
"runtime.debian.8-x64.runtime.native.System.Net.Security": "(, 4.3.32767]",
|
||||
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(, 4.3.32767]",
|
||||
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(, 4.3.32767]",
|
||||
"runtime.debian.9-x64.runtime.native.System": "(, 4.3.32767]",
|
||||
"runtime.debian.9-x64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.debian.9-x64.runtime.native.System.Net.Http": "(, 4.3.32767]",
|
||||
"runtime.debian.9-x64.runtime.native.System.Net.Security": "(, 4.3.32767]",
|
||||
"runtime.debian.9-x64.runtime.native.System.Security.Cryptography": "(, 4.3.32767]",
|
||||
"runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(, 4.3.32767]",
|
||||
"runtime.fedora.23-x64.runtime.native.System": "(, 4.3.32767]",
|
||||
"runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.fedora.23-x64.runtime.native.System.Net.Http": "(, 4.3.32767]",
|
||||
"runtime.fedora.23-x64.runtime.native.System.Net.Security": "(, 4.3.32767]",
|
||||
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(, 4.3.32767]",
|
||||
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(, 4.3.32767]",
|
||||
"runtime.fedora.24-x64.runtime.native.System": "(, 4.3.32767]",
|
||||
"runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.fedora.24-x64.runtime.native.System.Net.Http": "(, 4.3.32767]",
|
||||
"runtime.fedora.24-x64.runtime.native.System.Net.Security": "(, 4.3.32767]",
|
||||
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(, 4.3.32767]",
|
||||
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(, 4.3.32767]",
|
||||
"runtime.fedora.27-x64.runtime.native.System": "(, 4.3.32767]",
|
||||
"runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.fedora.27-x64.runtime.native.System.Net.Http": "(, 4.3.32767]",
|
||||
"runtime.fedora.27-x64.runtime.native.System.Net.Security": "(, 4.3.32767]",
|
||||
"runtime.fedora.27-x64.runtime.native.System.Security.Cryptography": "(, 4.3.32767]",
|
||||
"runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(, 4.3.32767]",
|
||||
"runtime.fedora.28-x64.runtime.native.System": "(, 4.3.32767]",
|
||||
"runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.fedora.28-x64.runtime.native.System.Net.Http": "(, 4.3.32767]",
|
||||
"runtime.fedora.28-x64.runtime.native.System.Net.Security": "(, 4.3.32767]",
|
||||
"runtime.fedora.28-x64.runtime.native.System.Security.Cryptography": "(, 4.3.32767]",
|
||||
"runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(, 4.3.32767]",
|
||||
"runtime.native.System.Security.Cryptography": "(, 4.3.32767]",
|
||||
"runtime.native.System.Security.Cryptography.Apple": "(, 4.3.32767]",
|
||||
"runtime.native.System.Security.Cryptography.OpenSsl": "(, 4.3.32767]",
|
||||
"runtime.opensuse.13.2-x64.runtime.native.System": "(, 4.3.32767]",
|
||||
"runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(, 4.3.32767]",
|
||||
"runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(, 4.3.32767]",
|
||||
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(, 4.3.32767]",
|
||||
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(, 4.3.32767]",
|
||||
"runtime.opensuse.42.1-x64.runtime.native.System": "(, 4.3.32767]",
|
||||
"runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(, 4.3.32767]",
|
||||
"runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(, 4.3.32767]",
|
||||
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(, 4.3.32767]",
|
||||
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(, 4.3.32767]",
|
||||
"runtime.opensuse.42.3-x64.runtime.native.System": "(, 4.3.32767]",
|
||||
"runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(, 4.3.32767]",
|
||||
"runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(, 4.3.32767]",
|
||||
"runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography": "(, 4.3.32767]",
|
||||
"runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(, 4.3.32767]",
|
||||
"runtime.osx.10.10-x64.runtime.native.System": "(, 4.3.32767]",
|
||||
"runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(, 4.3.32767]",
|
||||
"runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(, 4.3.32767]",
|
||||
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(, 4.3.32767]",
|
||||
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(, 4.3.32767]",
|
||||
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(, 4.3.32767]",
|
||||
"runtime.rhel.7-x64.runtime.native.System": "(, 4.3.32767]",
|
||||
"runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.rhel.7-x64.runtime.native.System.Net.Http": "(, 4.3.32767]",
|
||||
"runtime.rhel.7-x64.runtime.native.System.Net.Security": "(, 4.3.32767]",
|
||||
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(, 4.3.32767]",
|
||||
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.14.04-x64.runtime.native.System": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.16.04-x64.runtime.native.System": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.16.10-x64.runtime.native.System": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.18.04-x64.runtime.native.System": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography": "(, 4.3.32767]",
|
||||
"runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(, 4.3.32767]",
|
||||
"runtime.unix.Microsoft.Win32.Primitives": "(, 4.3.32767]",
|
||||
"runtime.unix.System.Console": "(, 4.3.32767]",
|
||||
"runtime.unix.System.Diagnostics.Debug": "(, 4.3.32767]",
|
||||
"runtime.unix.System.IO.FileSystem": "(, 4.3.32767]",
|
||||
"runtime.unix.System.Net.Primitives": "(, 4.3.32767]",
|
||||
"runtime.unix.System.Net.Sockets": "(, 4.3.32767]",
|
||||
"runtime.unix.System.Private.Uri": "(, 4.3.32767]",
|
||||
"runtime.unix.System.Runtime.Extensions": "(, 4.3.32767]",
|
||||
"runtime.win.Microsoft.Win32.Primitives": "(, 4.3.32767]",
|
||||
"runtime.win.System.Console": "(, 4.3.32767]",
|
||||
"runtime.win.System.Diagnostics.Debug": "(, 4.3.32767]",
|
||||
"runtime.win.System.IO.FileSystem": "(, 4.3.32767]",
|
||||
"runtime.win.System.Net.Primitives": "(, 4.3.32767]",
|
||||
"runtime.win.System.Net.Sockets": "(, 4.3.32767]",
|
||||
"runtime.win.System.Runtime.Extensions": "(, 4.3.32767]",
|
||||
"runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(, 4.0.32767]",
|
||||
"runtime.win10-arm64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(, 4.0.32767]",
|
||||
"runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(, 4.0.32767]",
|
||||
"runtime.win7-x64.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.win7-x86.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"runtime.win7.System.Private.Uri": "(, 4.3.32767]",
|
||||
"runtime.win8-arm.runtime.native.System.IO.Compression": "(, 4.3.32767]",
|
||||
"System.AppContext": "(, 4.3.32767]",
|
||||
"System.Buffers": "(, 4.6.32767]",
|
||||
"System.Collections": "(, 4.3.32767]",
|
||||
"System.Collections.Concurrent": "(, 4.3.32767]",
|
||||
"System.Collections.Immutable": "(, 8.0.32767]",
|
||||
"System.Collections.NonGeneric": "(, 4.3.32767]",
|
||||
"System.Collections.Specialized": "(, 4.3.32767]",
|
||||
"System.ComponentModel": "(, 4.3.32767]",
|
||||
"System.ComponentModel.Annotations": "(, 5.0.32767]",
|
||||
"System.ComponentModel.EventBasedAsync": "(, 4.3.32767]",
|
||||
"System.ComponentModel.Primitives": "(, 4.3.32767]",
|
||||
"System.ComponentModel.TypeConverter": "(, 4.3.32767]",
|
||||
"System.Console": "(, 4.3.32767]",
|
||||
"System.Data.Common": "(, 4.3.32767]",
|
||||
"System.Data.DataSetExtensions": "(, 4.5.32767]",
|
||||
"System.Diagnostics.Contracts": "(, 4.3.32767]",
|
||||
"System.Diagnostics.Debug": "(, 4.3.32767]",
|
||||
"System.Diagnostics.DiagnosticSource": "(, 8.0.32767]",
|
||||
"System.Diagnostics.FileVersionInfo": "(, 4.3.32767]",
|
||||
"System.Diagnostics.Process": "(, 4.3.32767]",
|
||||
"System.Diagnostics.StackTrace": "(, 4.3.32767]",
|
||||
"System.Diagnostics.TextWriterTraceListener": "(, 4.3.32767]",
|
||||
"System.Diagnostics.Tools": "(, 4.3.32767]",
|
||||
"System.Diagnostics.TraceSource": "(, 4.3.32767]",
|
||||
"System.Diagnostics.Tracing": "(, 4.3.32767]",
|
||||
"System.Drawing.Primitives": "(, 4.3.32767]",
|
||||
"System.Dynamic.Runtime": "(, 4.3.32767]",
|
||||
"System.Formats.Asn1": "(, 8.0.32767]",
|
||||
"System.Globalization": "(, 4.3.32767]",
|
||||
"System.Globalization.Calendars": "(, 4.3.32767]",
|
||||
"System.Globalization.Extensions": "(, 4.3.32767]",
|
||||
"System.IO": "(, 4.3.32767]",
|
||||
"System.IO.Compression": "(, 4.3.32767]",
|
||||
"System.IO.Compression.ZipFile": "(, 4.3.32767]",
|
||||
"System.IO.FileSystem": "(, 4.3.32767]",
|
||||
"System.IO.FileSystem.AccessControl": "(, 5.0.32767]",
|
||||
"System.IO.FileSystem.DriveInfo": "(, 4.3.32767]",
|
||||
"System.IO.FileSystem.Primitives": "(, 4.3.32767]",
|
||||
"System.IO.FileSystem.Watcher": "(, 4.3.32767]",
|
||||
"System.IO.IsolatedStorage": "(, 4.3.32767]",
|
||||
"System.IO.MemoryMappedFiles": "(, 4.3.32767]",
|
||||
"System.IO.Pipes": "(, 4.3.32767]",
|
||||
"System.IO.Pipes.AccessControl": "(, 4.6.32767]",
|
||||
"System.IO.UnmanagedMemoryStream": "(, 4.3.32767]",
|
||||
"System.Linq": "(, 4.3.32767]",
|
||||
"System.Linq.Expressions": "(, 4.3.32767]",
|
||||
"System.Linq.Parallel": "(, 4.3.32767]",
|
||||
"System.Linq.Queryable": "(, 4.3.32767]",
|
||||
"System.Memory": "(, 4.6.32767]",
|
||||
"System.Net.Http": "(, 4.3.32767]",
|
||||
"System.Net.Http.Json": "(, 8.0.32767]",
|
||||
"System.Net.NameResolution": "(, 4.3.32767]",
|
||||
"System.Net.NetworkInformation": "(, 4.3.32767]",
|
||||
"System.Net.Ping": "(, 4.3.32767]",
|
||||
"System.Net.Primitives": "(, 4.3.32767]",
|
||||
"System.Net.Requests": "(, 4.3.32767]",
|
||||
"System.Net.Security": "(, 4.3.32767]",
|
||||
"System.Net.Sockets": "(, 4.3.32767]",
|
||||
"System.Net.WebHeaderCollection": "(, 4.3.32767]",
|
||||
"System.Net.WebSockets": "(, 4.3.32767]",
|
||||
"System.Net.WebSockets.Client": "(, 4.3.32767]",
|
||||
"System.Numerics.Vectors": "(, 4.6.32767]",
|
||||
"System.ObjectModel": "(, 4.3.32767]",
|
||||
"System.Private.DataContractSerialization": "(, 4.3.32767]",
|
||||
"System.Private.Uri": "(, 4.3.32767]",
|
||||
"System.Reflection": "(, 4.3.32767]",
|
||||
"System.Reflection.DispatchProxy": "(, 4.8.32767]",
|
||||
"System.Reflection.Emit": "(, 4.7.32767]",
|
||||
"System.Reflection.Emit.ILGeneration": "(, 4.7.32767]",
|
||||
"System.Reflection.Emit.Lightweight": "(, 4.7.32767]",
|
||||
"System.Reflection.Extensions": "(, 4.3.32767]",
|
||||
"System.Reflection.Metadata": "(, 8.0.32767]",
|
||||
"System.Reflection.Primitives": "(, 4.3.32767]",
|
||||
"System.Reflection.TypeExtensions": "(, 4.7.32767]",
|
||||
"System.Resources.Reader": "(, 4.3.32767]",
|
||||
"System.Resources.ResourceManager": "(, 4.3.32767]",
|
||||
"System.Resources.Writer": "(, 4.3.32767]",
|
||||
"System.Runtime": "(, 4.3.32767]",
|
||||
"System.Runtime.CompilerServices.Unsafe": "(, 6.1.32767]",
|
||||
"System.Runtime.CompilerServices.VisualC": "(, 4.3.32767]",
|
||||
"System.Runtime.Extensions": "(, 4.3.32767]",
|
||||
"System.Runtime.Handles": "(, 4.3.32767]",
|
||||
"System.Runtime.InteropServices": "(, 4.3.32767]",
|
||||
"System.Runtime.InteropServices.RuntimeInformation": "(, 4.3.32767]",
|
||||
"System.Runtime.Loader": "(, 4.3.32767]",
|
||||
"System.Runtime.Numerics": "(, 4.3.32767]",
|
||||
"System.Runtime.Serialization.Formatters": "(, 4.3.32767]",
|
||||
"System.Runtime.Serialization.Json": "(, 4.3.32767]",
|
||||
"System.Runtime.Serialization.Primitives": "(, 4.3.32767]",
|
||||
"System.Runtime.Serialization.Xml": "(, 4.3.32767]",
|
||||
"System.Security.AccessControl": "(, 6.0.32767]",
|
||||
"System.Security.Claims": "(, 4.3.32767]",
|
||||
"System.Security.Cryptography.Algorithms": "(, 4.3.32767]",
|
||||
"System.Security.Cryptography.Cng": "(, 4.6.32767]",
|
||||
"System.Security.Cryptography.Csp": "(, 4.3.32767]",
|
||||
"System.Security.Cryptography.Encoding": "(, 4.3.32767]",
|
||||
"System.Security.Cryptography.OpenSsl": "(, 5.0.32767]",
|
||||
"System.Security.Cryptography.Primitives": "(, 4.3.32767]",
|
||||
"System.Security.Cryptography.X509Certificates": "(, 4.3.32767]",
|
||||
"System.Security.Principal": "(, 4.3.32767]",
|
||||
"System.Security.Principal.Windows": "(, 5.0.32767]",
|
||||
"System.Security.SecureString": "(, 4.3.32767]",
|
||||
"System.Text.Encoding": "(, 4.3.32767]",
|
||||
"System.Text.Encoding.CodePages": "(, 8.0.32767]",
|
||||
"System.Text.Encoding.Extensions": "(, 4.3.32767]",
|
||||
"System.Text.Encodings.Web": "(, 8.0.32767]",
|
||||
"System.Text.Json": "(, 8.0.32767]",
|
||||
"System.Text.RegularExpressions": "(, 4.3.32767]",
|
||||
"System.Threading": "(, 4.3.32767]",
|
||||
"System.Threading.Channels": "(, 8.0.32767]",
|
||||
"System.Threading.Overlapped": "(, 4.3.32767]",
|
||||
"System.Threading.Tasks": "(, 4.3.32767]",
|
||||
"System.Threading.Tasks.Dataflow": "(, 8.0.32767]",
|
||||
"System.Threading.Tasks.Extensions": "(, 4.6.32767]",
|
||||
"System.Threading.Tasks.Parallel": "(, 4.3.32767]",
|
||||
"System.Threading.Thread": "(, 4.3.32767]",
|
||||
"System.Threading.ThreadPool": "(, 4.3.32767]",
|
||||
"System.Threading.Timer": "(, 4.3.32767]",
|
||||
"System.ValueTuple": "(, 4.6.32767]",
|
||||
"System.Xml.ReaderWriter": "(, 4.3.32767]",
|
||||
"System.Xml.XDocument": "(, 4.3.32767]",
|
||||
"System.Xml.XmlDocument": "(, 4.3.32767]",
|
||||
"System.Xml.XmlSerializer": "(, 4.3.32767]",
|
||||
"System.Xml.XPath": "(, 4.3.32767]",
|
||||
"System.Xml.XPath.XDocument": "(, 4.3.32767]"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
19
MyProtoActor/obj/project.nuget.cache
Normal file
19
MyProtoActor/obj/project.nuget.cache
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "So1ARPukK94=",
|
||||
"success": true,
|
||||
"projectFilePath": "E:\\tian\\chongxin\\EMQX\\BooliveMQTT_Auth\\MyProtoActor\\MyProtoActor.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\google.protobuf\\3.30.2\\google.protobuf.3.30.2.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\9.0.3\\microsoft.extensions.dependencyinjection.9.0.3.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\9.0.3\\microsoft.extensions.dependencyinjection.abstractions.9.0.3.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\8.0.1\\microsoft.extensions.logging.abstractions.8.0.1.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\mqttnet\\5.0.1.1416\\mqttnet.5.0.1.1416.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\proto.actor\\1.8.0\\proto.actor.1.8.0.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.diagnosticsource\\9.0.3\\system.diagnostics.diagnosticsource.9.0.3.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\system.io.pipelines\\9.0.3\\system.io.pipelines.9.0.3.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\system.text.encodings.web\\9.0.3\\system.text.encodings.web.9.0.3.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\system.text.json\\9.0.3\\system.text.json.9.0.3.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
||||
Reference in New Issue
Block a user