Commit 0563a3d1 by xjp0422

no message

parents
using System;
namespace Mqtt_AGI
{
enum systemID {
SERVER=1,UI,DEVICE,AGI,OAM
}
enum AGI_Module {CACL_TLE=1,CACL_REPORT }
enum Server_Module { CACL_TLE = 1, CACL_REPORT }
//分解string类型的主题 工具类 暂时用不到
class ParseUid
{
public static uint getlevel1(string topic)
{
return (Convert.ToUInt32(topic) & 0xf0000000) >> 28;
}
public static uint getlevel2(string topic)
{
return (Convert.ToUInt32(topic) & 0x0f000000) >> 24;
}
public static uint getlevel3(string topic)
{
return (Convert.ToUInt32(topic) & 0x00f00000) >> 20;
}
public static uint getsystem(string topic)
{
return (Convert.ToUInt32(topic) & 0x000f0000) >> 16;
}
public static uint getsymodule(string topic)
{
return (Convert.ToUInt32(topic) & 0x0000f000) >> 12;
}
}
//生成主题的类
class SerializeUid
{
//生成对应系统 模块序列号
public static string SerilizeString(uint level1, uint level2, uint level3)
{
uint numtopic = 0;
numtopic = numtopic | (level1 << 28) | (level2 << 24) | (level3 << 20);
return Convert.ToString(numtopic, 2).PadLeft(32, '0');//uint转string 32位 前面补0
}
//由level id生成system id 和 module id
public static string SerilizeString(string level_uid, systemID system, uint module)
{
return Convert.ToString((Convert.ToUInt32(level_uid) | ((uint)system << 16) | (((uint)module) << 12)), 2).PadLeft(32, '0');
}
//指定module id
public static string SerilizeString(string level_system_uid, uint module) {
return Convert.ToString( (Convert.ToUInt32(level_system_uid) |(((uint)module)<<12)) ,2).PadLeft(32,'0');
}
}
}
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6"/>
</startup>
</configuration>
This source diff could not be displayed because it is too large. You can view the blob instead.
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{D810F35A-990A-476B-85DB-394DFF6F4962}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>Mqtt_AGI</RootNamespace>
<AssemblyName>Mqtt_AGI</AssemblyName>
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<TargetFrameworkProfile />
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>x64</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="AGI.Foundation.Core, Version=12.7.340.0, Culture=neutral, PublicKeyToken=f643815d9f9945b4, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>bin\Debug\AGI.Foundation.Core.dll</HintPath>
</Reference>
<Reference Include="AGI.Foundation.Models, Version=12.7.340.0, Culture=neutral, PublicKeyToken=f643815d9f9945b4, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>bin\Debug\AGI.Foundation.Models.dll</HintPath>
</Reference>
<Reference Include="AGI.Foundation.Platforms, Version=12.7.340.0, Culture=neutral, PublicKeyToken=f643815d9f9945b4, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>bin\Debug\AGI.Foundation.Platforms.dll</HintPath>
</Reference>
<Reference Include="Basic_Astrodynamics, Version=1.0.0.0, Culture=neutral, processorArchitecture=AMD64">
<SpecificVersion>False</SpecificVersion>
<HintPath>bin\Debug\Basic_Astrodynamics.dll</HintPath>
</Reference>
<Reference Include="Google.Protobuf, Version=3.21.5.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604, processorArchitecture=MSIL">
<HintPath>..\packages\Google.Protobuf.3.21.5\lib\net45\Google.Protobuf.dll</HintPath>
</Reference>
<Reference Include="M2Mqtt.Net, Version=4.3.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\M2Mqtt.4.3.0.0\lib\net45\M2Mqtt.Net.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Buffers, Version=4.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\packages\System.Buffers.4.4.0\lib\netstandard1.1\System.Buffers.dll</HintPath>
</Reference>
<Reference Include="System.Core" />
<Reference Include="System.Memory, Version=4.0.1.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\packages\System.Memory.4.5.3\lib\netstandard1.1\System.Memory.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.CompilerServices.Unsafe, Version=4.0.4.1, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard1.0\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
</Reference>
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="AGITopic.cs" />
<Compile Include="ModAgi.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Tdscmd.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
<None Include="packages.config">
<SubType>Designer</SubType>
</None>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="..\packages\Google.Protobuf.Tools.3.21.5\build\Google.Protobuf.Tools.targets" Condition="Exists('..\packages\Google.Protobuf.Tools.3.21.5\build\Google.Protobuf.Tools.targets')" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('..\packages\Google.Protobuf.Tools.3.21.5\build\Google.Protobuf.Tools.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Google.Protobuf.Tools.3.21.5\build\Google.Protobuf.Tools.targets'))" />
</Target>
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectView>ShowAllFiles</ProjectView>
</PropertyGroup>
</Project>
\ No newline at end of file
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 有关程序集的一般信息由以下
// 控制。更改这些特性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("Kepler_J20002TLE")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Kepler_J20002TLE")]
[assembly: AssemblyCopyright("Copyright © 2021")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// 将 ComVisible 设置为 false 会使此程序集中的类型
//对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型
//请将此类型的 ComVisible 特性设置为 true。
[assembly: ComVisible(false)]
// 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID
[assembly: Guid("d810f35a-990a-476b-85db-394dff6f4962")]
// 程序集的版本信息由下列四个值组成:
//
// 主版本
// 次版本
// 生成号
// 修订号
//
// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
// 方法是按如下所示使用“*”: :
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
This source diff could not be displayed because it is too large. You can view the blob instead.
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6"/>
</startup>
</configuration>
This source diff could not be displayed because it is too large. You can view the blob instead.
<?xml version="1.0" encoding="utf-8"?><span>
<doc>
<assembly>
<name>System.Buffers</name>
</assembly>
<members>
<member name="T:System.Buffers.ArrayPool`1">
<summary>Provides a resource pool that enables reusing instances of type <see cref="T[]"></see>.</summary>
<typeparam name="T">The type of the objects that are in the resource pool.</typeparam>
</member>
<member name="M:System.Buffers.ArrayPool`1.#ctor">
<summary>Initializes a new instance of the <see cref="ArrayPool{T}"></see> class.</summary>
</member>
<member name="M:System.Buffers.ArrayPool`1.Create">
<summary>Creates a new instance of the <see cref="ArrayPool{T}"></see> class.</summary>
<returns>A new instance of the <see cref="ArrayPool{T}"></see> class.</returns>
</member>
<member name="M:System.Buffers.ArrayPool`1.Create(System.Int32,System.Int32)">
<summary>Creates a new instance of the <see cref="ArrayPool{T}"></see> class using the specifed configuration.</summary>
<param name="maxArrayLength">The maximum length of an array instance that may be stored in the pool.</param>
<param name="maxArraysPerBucket">The maximum number of array instances that may be stored in each bucket in the pool. The pool groups arrays of similar lengths into buckets for faster access.</param>
<returns>A new instance of the <see cref="ArrayPool{T}"></see> class with the specified configuration.</returns>
</member>
<member name="M:System.Buffers.ArrayPool`1.Rent(System.Int32)">
<summary>Retrieves a buffer that is at least the requested length.</summary>
<param name="minimumLength">The minimum length of the array.</param>
<returns>An array of type <see cref="T[]"></see> that is at least <paramref name="minimumLength">minimumLength</paramref> in length.</returns>
</member>
<member name="M:System.Buffers.ArrayPool`1.Return(`0[],System.Boolean)">
<summary>Returns an array to the pool that was previously obtained using the <see cref="Rent"></see> method on the same <see cref="ArrayPool{T}"></see> instance.</summary>
<param name="array">A buffer to return to the pool that was previously obtained using the <see cref="Rent"></see> method.</param>
<param name="clearArray">Indicates whether the contents of the buffer should be cleared before reuse. If <paramref name="bufferLength">bufferLength</paramref> is set to true, and if the pool will store the buffer to enable subsequent reuse, the <see cref="Return"></see> method will clear the <paramref name="array">array</paramref> of its contents so that a subsequent caller using the <see cref="Rent"></see> method will not see the content of the previous caller. If <paramref name="bufferLength">bufferLength</paramref> is set to false or if the pool will release the buffer, the array's contents are left unchanged.</param>
</member>
<member name="P:System.Buffers.ArrayPool`1.Shared">
<summary>Gets a shared <see cref="ArrayPool{T}"></see> instance.</summary>
<returns>A shared <see cref="ArrayPool{T}"></see> instance.</returns>
</member>
</members>
</doc></span>
\ No newline at end of file
[role]
level1=1
level2=2
level3=3
[mqtt-local]
server=null
port=null
[mqtt-cloud]
server=null
port=null
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6"/>
</startup>
</configuration>
ip="47.96.160.63"
port="10010"
Const INTERVA = 5 '检测间隔
ps_str="Mqtt_AGI.exe"
Set ws = CreateObject("Wscript.Shell")
do while true
if CheckProcess(ps_str)=0 then
ws.run "cmd /c .\Mqtt_AGI.exe"&" "&ip&" "&port,vbhide
end if
wscript.sleep 1000 * INTERVA '检测间隔
loop
Function CheckProcess(str_s)
Dim WMI,Objs,Process,Obj
CheckProcess=0
Set WMI=GetObject("WinMgmts:")
Set Objs=WMI.InstancesOf("Win32_Process")
Process=""
'遍历所有在运行的进程
For Each Obj In Objs
Process = Obj.Description
If Process = str_s Then
CheckProcess=1
Exit For '发现所需进程时退出遍历
end if
Next
End Function
Function find_yn(str_s) '查找进程是否存在,不存在返回0
Dim re,ms,m
find_yn = 0
set re = New RegExp
re.Global = True
re.MultiLine = True
re.Pattern = "^Mqtt_AGI.exe" '测试查找进程
set ms = re.Execute(str_s)
For Each m In ms
'msgbox m
find_yn = find_yn + 1
Next
End Function
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
<?xml version="1.0" encoding="utf-8"?><span>
<doc>
<assembly>
<name>System.Buffers</name>
</assembly>
<members>
<member name="T:System.Buffers.ArrayPool`1">
<summary>Provides a resource pool that enables reusing instances of type <see cref="T[]"></see>.</summary>
<typeparam name="T">The type of the objects that are in the resource pool.</typeparam>
</member>
<member name="M:System.Buffers.ArrayPool`1.#ctor">
<summary>Initializes a new instance of the <see cref="ArrayPool{T}"></see> class.</summary>
</member>
<member name="M:System.Buffers.ArrayPool`1.Create">
<summary>Creates a new instance of the <see cref="ArrayPool{T}"></see> class.</summary>
<returns>A new instance of the <see cref="ArrayPool{T}"></see> class.</returns>
</member>
<member name="M:System.Buffers.ArrayPool`1.Create(System.Int32,System.Int32)">
<summary>Creates a new instance of the <see cref="ArrayPool{T}"></see> class using the specifed configuration.</summary>
<param name="maxArrayLength">The maximum length of an array instance that may be stored in the pool.</param>
<param name="maxArraysPerBucket">The maximum number of array instances that may be stored in each bucket in the pool. The pool groups arrays of similar lengths into buckets for faster access.</param>
<returns>A new instance of the <see cref="ArrayPool{T}"></see> class with the specified configuration.</returns>
</member>
<member name="M:System.Buffers.ArrayPool`1.Rent(System.Int32)">
<summary>Retrieves a buffer that is at least the requested length.</summary>
<param name="minimumLength">The minimum length of the array.</param>
<returns>An array of type <see cref="T[]"></see> that is at least <paramref name="minimumLength">minimumLength</paramref> in length.</returns>
</member>
<member name="M:System.Buffers.ArrayPool`1.Return(`0[],System.Boolean)">
<summary>Returns an array to the pool that was previously obtained using the <see cref="Rent"></see> method on the same <see cref="ArrayPool{T}"></see> instance.</summary>
<param name="array">A buffer to return to the pool that was previously obtained using the <see cref="Rent"></see> method.</param>
<param name="clearArray">Indicates whether the contents of the buffer should be cleared before reuse. If <paramref name="bufferLength">bufferLength</paramref> is set to true, and if the pool will store the buffer to enable subsequent reuse, the <see cref="Return"></see> method will clear the <paramref name="array">array</paramref> of its contents so that a subsequent caller using the <see cref="Rent"></see> method will not see the content of the previous caller. If <paramref name="bufferLength">bufferLength</paramref> is set to false or if the pool will release the buffer, the array's contents are left unchanged.</param>
</member>
<member name="P:System.Buffers.ArrayPool`1.Shared">
<summary>Gets a shared <see cref="ArrayPool{T}"></see> instance.</summary>
<returns>A shared <see cref="ArrayPool{T}"></see> instance.</returns>
</member>
</members>
</doc></span>
\ No newline at end of file
[role]
level1:1
level2:2
level3:3
[mqtt-local]
server:
port:
[mqtt-cloud]
server:
port:
\ No newline at end of file
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.6", FrameworkDisplayName = ".NET Framework 4.6")]
58add705a16f9e4cb14d547fac71ca60cb2b9091
F:\AGI_Project\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Debug\Mqtt_AGI.exe.config
F:\AGI_Project\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Debug\Mqtt_AGI.exe
F:\AGI_Project\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Debug\Mqtt_AGI.pdb
F:\AGI_Project\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Debug\M2Mqtt.Net.dll
F:\AGI_Project\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Debug\M2Mqtt.Net.pdb
F:\AGI_Project\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\obj\Debug\Mqtt_AGI.exe
F:\AGI_Project\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\obj\Debug\Mqtt_AGI.pdb
F:\AGI_Project\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\obj\Debug\Mqtt_AGI.csprojResolveAssemblyReference.cache
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Debug\Mqtt_AGI.exe.config
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Debug\Mqtt_AGI.exe
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Debug\Mqtt_AGI.pdb
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Debug\M2Mqtt.Net.dll
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Debug\M2Mqtt.Net.pdb
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\obj\Debug\Mqtt_AGI.csproj.CoreCompileInputs.cache
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\obj\Debug\Mqtt_AGI.csproj.CopyComplete
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\obj\Debug\Mqtt_AGI.exe
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\obj\Debug\Mqtt_AGI.pdb
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Debug\Google.Protobuf.dll
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Debug\Newtonsoft.Json.dll
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Debug\System.Buffers.dll
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Debug\System.Memory.dll
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Debug\System.Runtime.CompilerServices.Unsafe.dll
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Debug\Google.Protobuf.pdb
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Debug\Google.Protobuf.xml
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Debug\Newtonsoft.Json.xml
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Debug\System.Buffers.xml
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Debug\System.Memory.xml
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Debug\System.Runtime.CompilerServices.Unsafe.xml
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\obj\Debug\Mqtt_AGI.csproj.AssemblyReference.cache
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.6", FrameworkDisplayName = ".NET Framework 4.6")]
58add705a16f9e4cb14d547fac71ca60cb2b9091
F:\AGI_Project\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Release\Mqtt_AGI.exe.config
F:\AGI_Project\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Release\Mqtt_AGI.exe
F:\AGI_Project\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Release\Mqtt_AGI.pdb
F:\AGI_Project\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Release\AGI.Foundation.Core.dll
F:\AGI_Project\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Release\AGI.Foundation.Models.dll
F:\AGI_Project\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Release\AGI.Foundation.Platforms.dll
F:\AGI_Project\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Release\Basic_Astrodynamics.dll
F:\AGI_Project\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Release\M2Mqtt.Net.dll
F:\AGI_Project\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Release\M2Mqtt.Net.pdb
F:\AGI_Project\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\obj\Release\Mqtt_AGI.exe
F:\AGI_Project\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\obj\Release\Mqtt_AGI.pdb
F:\AGI_Project\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\obj\Release\Mqtt_AGI.csprojResolveAssemblyReference.cache
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Release\Mqtt_AGI.exe.config
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Release\Mqtt_AGI.exe
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Release\Mqtt_AGI.pdb
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Release\AGI.Foundation.Core.dll
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Release\AGI.Foundation.Models.dll
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Release\AGI.Foundation.Platforms.dll
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Release\Basic_Astrodynamics.dll
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Release\M2Mqtt.Net.dll
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Release\M2Mqtt.Net.pdb
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\obj\Release\Mqtt_AGI.csproj.AssemblyReference.cache
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\obj\Release\Mqtt_AGI.csproj.CoreCompileInputs.cache
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\obj\Release\Mqtt_AGI.csproj.CopyComplete
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\obj\Release\Mqtt_AGI.exe
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\obj\Release\Mqtt_AGI.pdb
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Release\Newtonsoft.Json.dll
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Release\Newtonsoft.Json.xml
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Release\Google.Protobuf.dll
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Release\System.Buffers.dll
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Release\System.Memory.dll
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Release\System.Runtime.CompilerServices.Unsafe.dll
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Release\Google.Protobuf.pdb
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Release\Google.Protobuf.xml
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Release\System.Buffers.xml
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Release\System.Memory.xml
D:\MQTT_AGI\Mqtt_AGI\Kepler_J20002TLE\bin\Release\System.Runtime.CompilerServices.Unsafe.xml
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Google.Protobuf" version="3.21.5" targetFramework="net46" />
<package id="Google.Protobuf.Tools" version="3.21.5" targetFramework="net46" />
<package id="M2Mqtt" version="4.3.0.0" targetFramework="net46" />
<package id="Newtonsoft.Json" version="13.0.1" targetFramework="net46" />
<package id="System.Buffers" version="4.4.0" targetFramework="net46" />
<package id="System.Memory" version="4.5.3" targetFramework="net46" />
<package id="System.Runtime.CompilerServices.Unsafe" version="4.5.2" targetFramework="net46" />
</packages>
\ No newline at end of file

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26228.4
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mqtt_AGI", "Kepler_J20002TLE\Mqtt_AGI.csproj", "{D810F35A-990A-476B-85DB-394DFF6F4962}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{D810F35A-990A-476B-85DB-394DFF6F4962}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D810F35A-990A-476B-85DB-394DFF6F4962}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D810F35A-990A-476B-85DB-394DFF6F4962}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D810F35A-990A-476B-85DB-394DFF6F4962}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment