diff --git a/.vs/ConanExilesSeasonalControl/DesignTimeBuild/.dtbcache.v2 b/.vs/ConanExilesSeasonalControl/DesignTimeBuild/.dtbcache.v2
new file mode 100644
index 0000000..341f746
Binary files /dev/null and b/.vs/ConanExilesSeasonalControl/DesignTimeBuild/.dtbcache.v2 differ
diff --git a/.vs/ConanExilesSeasonalControl/project-colors.json b/.vs/ConanExilesSeasonalControl/project-colors.json
new file mode 100644
index 0000000..4fa98cc
--- /dev/null
+++ b/.vs/ConanExilesSeasonalControl/project-colors.json
@@ -0,0 +1,11 @@
+{
+ "Version": 1,
+ "ProjectMap": {
+ "de6a64b1-8c9d-46c3-b9d1-a58c11c16824": {
+ "ProjectGuid": "de6a64b1-8c9d-46c3-b9d1-a58c11c16824",
+ "DisplayName": "ConanExilesSeasonalControl",
+ "ColorIndex": 0
+ }
+ },
+ "NextColorIndex": 1
+}
\ No newline at end of file
diff --git a/.vs/ConanExilesSeasonalControl/v17/.futdcache.v1 b/.vs/ConanExilesSeasonalControl/v17/.futdcache.v1
new file mode 100644
index 0000000..cebf059
Binary files /dev/null and b/.vs/ConanExilesSeasonalControl/v17/.futdcache.v1 differ
diff --git a/.vs/ConanExilesSeasonalControl/v17/.suo b/.vs/ConanExilesSeasonalControl/v17/.suo
new file mode 100644
index 0000000..2afbab2
Binary files /dev/null and b/.vs/ConanExilesSeasonalControl/v17/.suo differ
diff --git a/ConanExilesSeasonalControl.csproj b/ConanExilesSeasonalControl.csproj
new file mode 100644
index 0000000..b08321f
--- /dev/null
+++ b/ConanExilesSeasonalControl.csproj
@@ -0,0 +1,16 @@
+
+
+
+ Exe
+ net6.0
+ enable
+ enable
+
+
+
+
+ bin\MinecraftServerRCON.dll
+
+
+
+
diff --git a/ConanExilesSeasonalControl.sln b/ConanExilesSeasonalControl.sln
new file mode 100644
index 0000000..6a2d8b0
--- /dev/null
+++ b/ConanExilesSeasonalControl.sln
@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.0.31903.59
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConanExilesSeasonalControl", "ConanExilesSeasonalControl.csproj", "{DE6A64B1-8C9D-46C3-B9D1-A58C11C16824}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {DE6A64B1-8C9D-46C3-B9D1-A58C11C16824}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {DE6A64B1-8C9D-46C3-B9D1-A58C11C16824}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {DE6A64B1-8C9D-46C3-B9D1-A58C11C16824}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {DE6A64B1-8C9D-46C3-B9D1-A58C11C16824}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {8A1E3940-8B42-4DD5-A0FA-005EC88E259C}
+ EndGlobalSection
+EndGlobal
diff --git a/Program.cs b/Program.cs
new file mode 100644
index 0000000..0ced188
--- /dev/null
+++ b/Program.cs
@@ -0,0 +1,236 @@
+using System;
+using System.Collections.Generic;
+using System.Timers;
+using MinecraftServerRCON;
+using Timer = System.Timers.Timer;
+
+namespace ConanExilesSeasonalControl
+{
+ internal class Program
+ {
+ private static void Main(string[] args)
+ {
+ Console.Title = "皓月云 - 柯南服务端 生态控制系统 Ver 0.1";
+ Program.justdoit();
+ Program.StartSeasonde();
+ while (true)
+ {
+ Console.ReadLine();
+ }
+ }
+
+ private static void StartSeasonde()
+ {
+ Timer aTimer = new Timer();
+ aTimer.Elapsed += Program.SeasondeTimeEvent;
+ aTimer.Interval = 600000.0;
+ aTimer.Enabled = true;
+ }
+
+ private static void SeasondeTimeEvent(object source, ElapsedEventArgs e)
+ {
+ Program.justdoit();
+ }
+
+ private static void justdoit()
+ {
+ DateTime t0 = new DateTime(2020, 3, 18);
+ DateTime dt = DateTime.Now;
+ double seasondehours = 3.5;
+ int seasondeIndex = 2;
+ while (t0 < dt)
+ {
+ seasondeIndex++;
+ bool flag = seasondeIndex > 2;
+ if (flag)
+ {
+ seasondeIndex = 0;
+ }
+ t0 = t0.AddHours(seasondehours);
+ }
+ string seasondeNow = "";
+ string seasondeNext = "";
+ switch (seasondeIndex)
+ {
+ case 0:
+ seasondeNow = "温暖繁殖期";
+ seasondeNext = "炎热富饶期";
+ break;
+ case 1:
+ seasondeNow = "炎热富饶期";
+ seasondeNext = "寒冷保守期";
+ break;
+ case 2:
+ seasondeNow = "寒冷保守期";
+ seasondeNext = "温暖繁殖期";
+ break;
+ }
+ bool ShowBoxFlag = true;
+ bool flag2 = Program.doingindex == seasondeIndex;
+ if (flag2)
+ {
+ Console.WriteLine(DateTime.Now.ToString() + " 当前正处于【" + seasondeNow + "】");
+ ShowBoxFlag = false;
+ }
+ else
+ {
+ Console.WriteLine(DateTime.Now.ToString() + " 准备更替季节【" + seasondeNow + "】");
+ }
+ Program.doingindex = seasondeIndex;
+ string joinmsg = string.Concat(new string[]
+ {
+ "con 0 setserversetting \"ServerMessageOfTheDay\" \"皓月原创 - 季 节 系 统
当前季节 -> 【",
+ seasondeNow,
+ "】
下一季节 -> 【",
+ seasondeNext,
+ "】
到来时间->",
+ t0.ToString("HH:mm"),
+ "
掌握季节特性,使您更得心应手,是本服原创乐趣。
季节说明:(也可以在群相册看图表)
【温暖繁殖期】 推荐进行抓动物奴隶,训练速度较快,动物数量上升,但繁殖期动物比较凶猛。
(昼长↑/夜长↓/耐力消耗↓/口渴↑/仆役训练速度↑↑/野狗交·配/繁殖量↑↑/宠物伤害↑↑/爪牙类伤害↑↑/仇恨追逐范围↑↑)
【炎热富饶期】 推荐采集物资,物产丰富,不过要做好充分准备,炎热的夏天体能会差一些的。
(昼长↑↑/夜长↓↓/资源产出↑↑/资源刷新↑/冲刺速度↓/耐力耗费↑/口渴↑↑/饥饿↑/负重能力↓↓/宠物伤害↑/爪牙类伤害↑)
【寒冷保守期】 推荐在家建设,建造获得经验上升,建造速度微升,容易饿,进入严冬之前尽量先做好储备。
(昼长↓↓/夜长↑↑/耐力耗费↑↑/制造速度↑/制造经验↑/资源产出↓/资源刷新↓/燃料持久↓↓/冲刺速度↓↓/饥饿↑↑/负重能力↓↓/宠物伤害↓/爪牙类伤害↓)\""
+ });
+ string messageboxmsg = string.Concat(new string[]
+ {
+ "broadcast 皓月原创 - 季 节 系 统♡当前季节 -> 【",
+ seasondeNow,
+ "】下一季节 -> 【",
+ seasondeNext,
+ "】♡到来时间->",
+ t0.ToString("HH:mm"),
+ "♡掌握季节特性,使您更得心应手,是本服原创乐趣。♡季节说明:(也可以在群相册看图表)♡【温暖繁殖期】 推荐进行抓动物奴隶,训练速度较快,动物数量上升,但繁殖期动物比较凶猛。♡(昼长↑/夜长↓/耐力消耗↓/口渴↑/仆役训练速度↑↑/野狗交·配/繁殖量↑↑/宠物伤害↑↑/爪牙类伤害↑↑/仇恨追逐范围↑↑)♡【炎热富饶期】 推荐采集物资,物产丰富,不过要做好充分准备,炎热的夏天体能会差一些的。♡(昼长↑↑/夜长↓↓/资源产出↑↑/资源刷新↑/冲刺速度↓/耐力耗费↑/口渴↑↑/饥饿↑/负重能力↓↓/宠物伤害↑/爪牙类伤害↑)♡【寒冷保守期】 推荐在家建设,建造获得经验上升,建造速度微升,容易饿,进入严冬之前尽量先做好储备。♡(昼长↓↓/夜长↑↑/耐力耗费↑↑/制造速度↑/制造经验↑/资源产出↓/资源刷新↓/燃料持久↓↓/冲刺速度↓↓/饥饿↑↑/负重能力↓↓/宠物伤害↓/爪牙类伤害↓)♡"
+ });
+ List msglist = new List();
+ bool flag3 = ShowBoxFlag;
+ if (flag3)
+ {
+ Console.WriteLine("需要弹窗提示");
+ msglist.Add(messageboxmsg);
+ }
+ msglist.Add(joinmsg);
+ switch (seasondeIndex)
+ {
+ case 0:
+ Console.WriteLine(DateTime.Now.ToString() + " 【温暖繁殖期】配置");
+ msglist.AddRange(Program.seasond1setting);
+ break;
+ case 1:
+ Console.WriteLine(DateTime.Now.ToString() + " 【炎热富饶期】配置");
+ msglist.AddRange(Program.seasond2setting);
+ break;
+ case 2:
+ Console.WriteLine(DateTime.Now.ToString() + " 【寒冷保守期】配置");
+ msglist.AddRange(Program.seasond3setting);
+ break;
+ }
+ Program.RunCmd(msglist.ToArray());
+ Console.WriteLine(DateTime.Now.ToString() + " 设置完毕");
+ }
+
+ private static void RunCmd(string[] cmdarr)
+ {
+ using (RCONClient rcon = RCONClient.INSTANCE)
+ {
+ rcon.setupStream(Program.rconip, Program.rconport, Program.rconpwd);
+ foreach (string c in cmdarr)
+ {
+ rcon.sendMessage(RCONMessageType.Command, c);
+ Console.WriteLine(c);
+ }
+ }
+ }
+
+ private static string rconip = "127.0.0.1";
+
+ private static int rconport = 25575;
+
+ private static string rconpwd = "123456";
+
+ private static int doingindex = -1;
+
+ private static string[] seasondefaultsetting = new string[]
+ {
+ "con 0 setserversetting \"DayTimeSpeedScale\" 1.0",
+ "con 0 setserversetting \"NightTimeSpeedScale\" 1.0",
+ "con 0 setserversetting \"HarvestAmountMultiplier\" 1.0",
+ "con 0 setserversetting \"ResourceRespawnSpeedMultiplier\" 1.0",
+ "con 0 setserversetting \"FuelBurnTimeMultiplier\" 1.0",
+ "con 0 setserversetting \"PlayerSprintSpeedScale\" 1.0",
+ "con 0 setserversetting \"PlayerStaminaCostMultiplier\" 1.0",
+ "con 0 setserversetting \"PlayerActiveThirstMultiplier\" 1.0",
+ "con 0 setserversetting \"PlayerActiveHungerMultiplier\" 1.0",
+ "con 0 setserversetting \"PlayerEncumbranceMultiplier\" 1.0",
+ "con 0 setserversetting \"FuelBurnTimeMultiplier\" 1.0",
+ "con 0 setserversetting \"DogsOfTheDesertSpawnWithDogs\" False",
+ "con 0 setserversetting \"NPCMaxSpawnCapMultiplier\" 1.0",
+ "con 0 setserversetting \"MinionDamageMultiplier\" 1.0",
+ "con 0 setserversetting \"MinionDamageTakenMultiplier\" 1.0",
+ "con 0 setserversetting \"MaxAggroRange\" 9000.0",
+ "con 0 setserversetting \"ItemConvertionMultiplier\" 1.0",
+ "con 0 setserversetting \"PlayerXPCraftMultiplier\" 1.0"
+ };
+
+ private static string[] seasond1setting = new string[]
+ {
+ "con 0 setserversetting \"DayTimeSpeedScale\" 0.7",
+ "con 0 setserversetting \"NightTimeSpeedScale\" 1.3",
+ "con 0 setserversetting \"HarvestAmountMultiplier\" 1.0",
+ "con 0 setserversetting \"ResourceRespawnSpeedMultiplier\" 1.0",
+ "con 0 setserversetting \"FuelBurnTimeMultiplier\" 1.0",
+ "con 0 setserversetting \"PlayerSprintSpeedScale\" 1.0",
+ "con 0 setserversetting \"PlayerStaminaCostMultiplier\" 0.8",
+ "con 0 setserversetting \"PlayerActiveThirstMultiplier\" 1.5",
+ "con 0 setserversetting \"PlayerActiveHungerMultiplier\" 1.0",
+ "con 0 setserversetting \"PlayerEncumbranceMultiplier\" 1.0",
+ "con 0 setserversetting \"FuelBurnTimeMultiplier\" 2.0",
+ "con 0 setserversetting \"DogsOfTheDesertSpawnWithDogs\" True",
+ "con 0 setserversetting \"NPCMaxSpawnCapMultiplier\" 2.0",
+ "con 0 setserversetting \"MinionDamageMultiplier\" 1.5",
+ "con 0 setserversetting \"MinionDamageTakenMultiplier\" 2.0",
+ "con 0 setserversetting \"MaxAggroRange\" 18000.0",
+ "con 0 setserversetting \"ItemConvertionMultiplier\" 1.0",
+ "con 0 setserversetting \"PlayerXPCraftMultiplier\" 1.0"
+ };
+
+ private static string[] seasond2setting = new string[]
+ {
+ "con 0 setserversetting \"DayTimeSpeedScale\" 0.3",
+ "con 0 setserversetting \"NightTimeSpeedScale\" 2.2",
+ "con 0 setserversetting \"HarvestAmountMultiplier\" 1.5",
+ "con 0 setserversetting \"ResourceRespawnSpeedMultiplier\" 1.5",
+ "con 0 setserversetting \"FuelBurnTimeMultiplier\" 1.0",
+ "con 0 setserversetting \"PlayerSprintSpeedScale\" 0.8",
+ "con 0 setserversetting \"PlayerStaminaCostMultiplier\" 1.2",
+ "con 0 setserversetting \"PlayerActiveThirstMultiplier\" 3.0",
+ "con 0 setserversetting \"PlayerActiveHungerMultiplier\" 1.5",
+ "con 0 setserversetting \"PlayerEncumbranceMultiplier\" 1.6",
+ "con 0 setserversetting \"FuelBurnTimeMultiplier\" 1.0",
+ "con 0 setserversetting \"DogsOfTheDesertSpawnWithDogs\" False",
+ "con 0 setserversetting \"NPCMaxSpawnCapMultiplier\" 1.0",
+ "con 0 setserversetting \"MinionDamageMultiplier\" 1.2",
+ "con 0 setserversetting \"MinionDamageTakenMultiplier\" 1.4",
+ "con 0 setserversetting \"MaxAggroRange\" 9000.0",
+ "con 0 setserversetting \"ItemConvertionMultiplier\" 1.0",
+ "con 0 setserversetting \"PlayerXPCraftMultiplier\" 1.0"
+ };
+
+ private static string[] seasond3setting = new string[]
+ {
+ "con 0 setserversetting \"DayTimeSpeedScale\" 2.2",
+ "con 0 setserversetting \"NightTimeSpeedScale\" 0.5",
+ "con 0 setserversetting \"HarvestAmountMultiplier\" 0.7",
+ "con 0 setserversetting \"ResourceRespawnSpeedMultiplier\" 0.7",
+ "con 0 setserversetting \"FuelBurnTimeMultiplier\" 0.5",
+ "con 0 setserversetting \"PlayerSprintSpeedScale\" 0.6",
+ "con 0 setserversetting \"PlayerStaminaCostMultiplier\" 1.6",
+ "con 0 setserversetting \"PlayerActiveThirstMultiplier\" 1.0",
+ "con 0 setserversetting \"PlayerActiveHungerMultiplier\" 1.9",
+ "con 0 setserversetting \"PlayerEncumbranceMultiplier\" 1.2",
+ "con 0 setserversetting \"FuelBurnTimeMultiplier\" 1.0",
+ "con 0 setserversetting \"DogsOfTheDesertSpawnWithDogs\" False",
+ "con 0 setserversetting \"NPCMaxSpawnCapMultiplier\" 1.0",
+ "con 0 setserversetting \"MinionDamageMultiplier\" 0.7",
+ "con 0 setserversetting \"MinionDamageTakenMultiplier\" 0.7",
+ "con 0 setserversetting \"MaxAggroRange\" 6000.0",
+ "con 0 setserversetting \"ItemConvertionMultiplier\" 1.3",
+ "con 0 setserversetting \"PlayerXPCraftMultiplier\" 1.3"
+ };
+ }
+}
diff --git a/bin/Debug/net6.0/ConanExilesSeasonalControl.deps.json b/bin/Debug/net6.0/ConanExilesSeasonalControl.deps.json
new file mode 100644
index 0000000..5907605
--- /dev/null
+++ b/bin/Debug/net6.0/ConanExilesSeasonalControl.deps.json
@@ -0,0 +1,39 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v6.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v6.0": {
+ "ConanExilesSeasonalControl/1.0.0": {
+ "dependencies": {
+ "MinecraftServerRCON": "1.0.2.0"
+ },
+ "runtime": {
+ "ConanExilesSeasonalControl.dll": {}
+ }
+ },
+ "MinecraftServerRCON/1.0.2.0": {
+ "runtime": {
+ "MinecraftServerRCON.dll": {
+ "assemblyVersion": "1.0.2.0",
+ "fileVersion": "1.0.2.0"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "ConanExilesSeasonalControl/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "MinecraftServerRCON/1.0.2.0": {
+ "type": "reference",
+ "serviceable": false,
+ "sha512": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/bin/Debug/net6.0/ConanExilesSeasonalControl.dll b/bin/Debug/net6.0/ConanExilesSeasonalControl.dll
new file mode 100644
index 0000000..624604c
Binary files /dev/null and b/bin/Debug/net6.0/ConanExilesSeasonalControl.dll differ
diff --git a/bin/Debug/net6.0/ConanExilesSeasonalControl.exe b/bin/Debug/net6.0/ConanExilesSeasonalControl.exe
new file mode 100644
index 0000000..c188b69
Binary files /dev/null and b/bin/Debug/net6.0/ConanExilesSeasonalControl.exe differ
diff --git a/bin/Debug/net6.0/ConanExilesSeasonalControl.pdb b/bin/Debug/net6.0/ConanExilesSeasonalControl.pdb
new file mode 100644
index 0000000..aeeaf5c
Binary files /dev/null and b/bin/Debug/net6.0/ConanExilesSeasonalControl.pdb differ
diff --git a/bin/Debug/net6.0/ConanExilesSeasonalControl.runtimeconfig.json b/bin/Debug/net6.0/ConanExilesSeasonalControl.runtimeconfig.json
new file mode 100644
index 0000000..4986d16
--- /dev/null
+++ b/bin/Debug/net6.0/ConanExilesSeasonalControl.runtimeconfig.json
@@ -0,0 +1,9 @@
+{
+ "runtimeOptions": {
+ "tfm": "net6.0",
+ "framework": {
+ "name": "Microsoft.NETCore.App",
+ "version": "6.0.0"
+ }
+ }
+}
\ No newline at end of file
diff --git a/bin/Debug/net6.0/MinecraftServerRCON.dll b/bin/Debug/net6.0/MinecraftServerRCON.dll
new file mode 100644
index 0000000..2cf6776
Binary files /dev/null and b/bin/Debug/net6.0/MinecraftServerRCON.dll differ
diff --git a/bin/Debug/net6.0/ref/ConanExilesSeasonalControl.dll b/bin/Debug/net6.0/ref/ConanExilesSeasonalControl.dll
new file mode 100644
index 0000000..c1b042e
Binary files /dev/null and b/bin/Debug/net6.0/ref/ConanExilesSeasonalControl.dll differ
diff --git a/bin/MinecraftServerRCON.dll b/bin/MinecraftServerRCON.dll
new file mode 100644
index 0000000..2cf6776
Binary files /dev/null and b/bin/MinecraftServerRCON.dll differ
diff --git a/obj/ConanExilesSeasonalControl.csproj.nuget.dgspec.json b/obj/ConanExilesSeasonalControl.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..2c203be
--- /dev/null
+++ b/obj/ConanExilesSeasonalControl.csproj.nuget.dgspec.json
@@ -0,0 +1,62 @@
+{
+ "format": 1,
+ "restore": {
+ "E:\\ConanExilesSeasonalControl\\ConanExilesSeasonalControl.csproj": {}
+ },
+ "projects": {
+ "E:\\ConanExilesSeasonalControl\\ConanExilesSeasonalControl.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "E:\\ConanExilesSeasonalControl\\ConanExilesSeasonalControl.csproj",
+ "projectName": "ConanExilesSeasonalControl",
+ "projectPath": "E:\\ConanExilesSeasonalControl\\ConanExilesSeasonalControl.csproj",
+ "packagesPath": "C:\\Users\\35337\\.nuget\\packages\\",
+ "outputPath": "E:\\ConanExilesSeasonalControl\\obj\\",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "C:\\Users\\35337\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "net6.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net6.0": {
+ "targetAlias": "net6.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "net6.0": {
+ "targetAlias": "net6.0",
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/obj/ConanExilesSeasonalControl.csproj.nuget.g.props b/obj/ConanExilesSeasonalControl.csproj.nuget.g.props
new file mode 100644
index 0000000..d59c8a2
--- /dev/null
+++ b/obj/ConanExilesSeasonalControl.csproj.nuget.g.props
@@ -0,0 +1,15 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\35337\.nuget\packages\
+ PackageReference
+ 6.0.0
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/ConanExilesSeasonalControl.csproj.nuget.g.targets b/obj/ConanExilesSeasonalControl.csproj.nuget.g.targets
new file mode 100644
index 0000000..3dc06ef
--- /dev/null
+++ b/obj/ConanExilesSeasonalControl.csproj.nuget.g.targets
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..36203c7
--- /dev/null
+++ b/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]
diff --git a/obj/Debug/net6.0/ConanExilesSeasonalControl.AssemblyInfo.cs b/obj/Debug/net6.0/ConanExilesSeasonalControl.AssemblyInfo.cs
new file mode 100644
index 0000000..5ce5839
--- /dev/null
+++ b/obj/Debug/net6.0/ConanExilesSeasonalControl.AssemblyInfo.cs
@@ -0,0 +1,23 @@
+//------------------------------------------------------------------------------
+//
+// 此代码由工具生成。
+// 运行时版本:4.0.30319.42000
+//
+// 对此文件的更改可能会导致不正确的行为,并且如果
+// 重新生成代码,这些更改将会丢失。
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("ConanExilesSeasonalControl")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("ConanExilesSeasonalControl")]
+[assembly: System.Reflection.AssemblyTitleAttribute("ConanExilesSeasonalControl")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// 由 MSBuild WriteCodeFragment 类生成。
+
diff --git a/obj/Debug/net6.0/ConanExilesSeasonalControl.AssemblyInfoInputs.cache b/obj/Debug/net6.0/ConanExilesSeasonalControl.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..c58e2bf
--- /dev/null
+++ b/obj/Debug/net6.0/ConanExilesSeasonalControl.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+10626ebef6a81f8089dbf84c1421fdfcbbb4e1bd
diff --git a/obj/Debug/net6.0/ConanExilesSeasonalControl.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0/ConanExilesSeasonalControl.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..a8ee4ab
--- /dev/null
+++ b/obj/Debug/net6.0/ConanExilesSeasonalControl.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,10 @@
+is_global = true
+build_property.TargetFramework = net6.0
+build_property.TargetPlatformMinVersion =
+build_property.UsingMicrosoftNETSdkWeb =
+build_property.ProjectTypeGuids =
+build_property.InvariantGlobalization =
+build_property.PlatformNeutralAssembly =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = ConanExilesSeasonalControl
+build_property.ProjectDir = E:\ConanExilesSeasonalControl\
diff --git a/obj/Debug/net6.0/ConanExilesSeasonalControl.GlobalUsings.g.cs b/obj/Debug/net6.0/ConanExilesSeasonalControl.GlobalUsings.g.cs
new file mode 100644
index 0000000..8578f3d
--- /dev/null
+++ b/obj/Debug/net6.0/ConanExilesSeasonalControl.GlobalUsings.g.cs
@@ -0,0 +1,8 @@
+//
+global using global::System;
+global using global::System.Collections.Generic;
+global using global::System.IO;
+global using global::System.Linq;
+global using global::System.Net.Http;
+global using global::System.Threading;
+global using global::System.Threading.Tasks;
diff --git a/obj/Debug/net6.0/ConanExilesSeasonalControl.assets.cache b/obj/Debug/net6.0/ConanExilesSeasonalControl.assets.cache
new file mode 100644
index 0000000..14d7cf6
Binary files /dev/null and b/obj/Debug/net6.0/ConanExilesSeasonalControl.assets.cache differ
diff --git a/obj/Debug/net6.0/ConanExilesSeasonalControl.csproj.AssemblyReference.cache b/obj/Debug/net6.0/ConanExilesSeasonalControl.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..204fdef
Binary files /dev/null and b/obj/Debug/net6.0/ConanExilesSeasonalControl.csproj.AssemblyReference.cache differ
diff --git a/obj/Debug/net6.0/ConanExilesSeasonalControl.csproj.CopyComplete b/obj/Debug/net6.0/ConanExilesSeasonalControl.csproj.CopyComplete
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net6.0/ConanExilesSeasonalControl.csproj.CoreCompileInputs.cache b/obj/Debug/net6.0/ConanExilesSeasonalControl.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..b85f3f8
--- /dev/null
+++ b/obj/Debug/net6.0/ConanExilesSeasonalControl.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+52a2a5e2da2a9b20dcfe177a511908c7801068b8
diff --git a/obj/Debug/net6.0/ConanExilesSeasonalControl.csproj.FileListAbsolute.txt b/obj/Debug/net6.0/ConanExilesSeasonalControl.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..983a970
--- /dev/null
+++ b/obj/Debug/net6.0/ConanExilesSeasonalControl.csproj.FileListAbsolute.txt
@@ -0,0 +1,17 @@
+E:\ConanExilesSeasonalControl\bin\Debug\net6.0\ConanExilesSeasonalControl.exe
+E:\ConanExilesSeasonalControl\bin\Debug\net6.0\ConanExilesSeasonalControl.deps.json
+E:\ConanExilesSeasonalControl\bin\Debug\net6.0\ConanExilesSeasonalControl.runtimeconfig.json
+E:\ConanExilesSeasonalControl\bin\Debug\net6.0\ConanExilesSeasonalControl.dll
+E:\ConanExilesSeasonalControl\bin\Debug\net6.0\ref\ConanExilesSeasonalControl.dll
+E:\ConanExilesSeasonalControl\bin\Debug\net6.0\ConanExilesSeasonalControl.pdb
+E:\ConanExilesSeasonalControl\bin\Debug\net6.0\MinecraftServerRCON.dll
+E:\ConanExilesSeasonalControl\obj\Debug\net6.0\ConanExilesSeasonalControl.csproj.AssemblyReference.cache
+E:\ConanExilesSeasonalControl\obj\Debug\net6.0\ConanExilesSeasonalControl.GeneratedMSBuildEditorConfig.editorconfig
+E:\ConanExilesSeasonalControl\obj\Debug\net6.0\ConanExilesSeasonalControl.AssemblyInfoInputs.cache
+E:\ConanExilesSeasonalControl\obj\Debug\net6.0\ConanExilesSeasonalControl.AssemblyInfo.cs
+E:\ConanExilesSeasonalControl\obj\Debug\net6.0\ConanExilesSeasonalControl.csproj.CoreCompileInputs.cache
+E:\ConanExilesSeasonalControl\obj\Debug\net6.0\ConanExilesSeasonalControl.csproj.CopyComplete
+E:\ConanExilesSeasonalControl\obj\Debug\net6.0\ConanExilesSeasonalControl.dll
+E:\ConanExilesSeasonalControl\obj\Debug\net6.0\ref\ConanExilesSeasonalControl.dll
+E:\ConanExilesSeasonalControl\obj\Debug\net6.0\ConanExilesSeasonalControl.pdb
+E:\ConanExilesSeasonalControl\obj\Debug\net6.0\ConanExilesSeasonalControl.genruntimeconfig.cache
diff --git a/obj/Debug/net6.0/ConanExilesSeasonalControl.dll b/obj/Debug/net6.0/ConanExilesSeasonalControl.dll
new file mode 100644
index 0000000..624604c
Binary files /dev/null and b/obj/Debug/net6.0/ConanExilesSeasonalControl.dll differ
diff --git a/obj/Debug/net6.0/ConanExilesSeasonalControl.genruntimeconfig.cache b/obj/Debug/net6.0/ConanExilesSeasonalControl.genruntimeconfig.cache
new file mode 100644
index 0000000..3886c8a
--- /dev/null
+++ b/obj/Debug/net6.0/ConanExilesSeasonalControl.genruntimeconfig.cache
@@ -0,0 +1 @@
+947aecc57fa7317cd6b2c42dd9c4308c34e15851
diff --git a/obj/Debug/net6.0/ConanExilesSeasonalControl.pdb b/obj/Debug/net6.0/ConanExilesSeasonalControl.pdb
new file mode 100644
index 0000000..aeeaf5c
Binary files /dev/null and b/obj/Debug/net6.0/ConanExilesSeasonalControl.pdb differ
diff --git a/obj/Debug/net6.0/apphost.exe b/obj/Debug/net6.0/apphost.exe
new file mode 100644
index 0000000..c188b69
Binary files /dev/null and b/obj/Debug/net6.0/apphost.exe differ
diff --git a/obj/Debug/net6.0/ref/ConanExilesSeasonalControl.dll b/obj/Debug/net6.0/ref/ConanExilesSeasonalControl.dll
new file mode 100644
index 0000000..c1b042e
Binary files /dev/null and b/obj/Debug/net6.0/ref/ConanExilesSeasonalControl.dll differ
diff --git a/obj/project.assets.json b/obj/project.assets.json
new file mode 100644
index 0000000..c461de8
--- /dev/null
+++ b/obj/project.assets.json
@@ -0,0 +1,67 @@
+{
+ "version": 3,
+ "targets": {
+ "net6.0": {}
+ },
+ "libraries": {},
+ "projectFileDependencyGroups": {
+ "net6.0": []
+ },
+ "packageFolders": {
+ "C:\\Users\\35337\\.nuget\\packages\\": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "E:\\ConanExilesSeasonalControl\\ConanExilesSeasonalControl.csproj",
+ "projectName": "ConanExilesSeasonalControl",
+ "projectPath": "E:\\ConanExilesSeasonalControl\\ConanExilesSeasonalControl.csproj",
+ "packagesPath": "C:\\Users\\35337\\.nuget\\packages\\",
+ "outputPath": "E:\\ConanExilesSeasonalControl\\obj\\",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "C:\\Users\\35337\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "net6.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net6.0": {
+ "targetAlias": "net6.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "net6.0": {
+ "targetAlias": "net6.0",
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache
new file mode 100644
index 0000000..1361e88
--- /dev/null
+++ b/obj/project.nuget.cache
@@ -0,0 +1,8 @@
+{
+ "version": 2,
+ "dgSpecHash": "16VlztKrCvvY/ypb37iWiXK4hyGE+39ScAPeFTWos1KXLnh9UGL6gLvjGOxKIZCU9dYifpd8eTev4/hrCXofaA==",
+ "success": true,
+ "projectFilePath": "E:\\ConanExilesSeasonalControl\\ConanExilesSeasonalControl.csproj",
+ "expectedPackageFiles": [],
+ "logs": []
+}
\ No newline at end of file