..
This commit is contained in:
parent
192bbf7cba
commit
63e66c5734
BIN
.vs/ConanExilesSeasonalControl/DesignTimeBuild/.dtbcache.v2
Normal file
BIN
.vs/ConanExilesSeasonalControl/DesignTimeBuild/.dtbcache.v2
Normal file
Binary file not shown.
11
.vs/ConanExilesSeasonalControl/project-colors.json
Normal file
11
.vs/ConanExilesSeasonalControl/project-colors.json
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"Version": 1,
|
||||||
|
"ProjectMap": {
|
||||||
|
"de6a64b1-8c9d-46c3-b9d1-a58c11c16824": {
|
||||||
|
"ProjectGuid": "de6a64b1-8c9d-46c3-b9d1-a58c11c16824",
|
||||||
|
"DisplayName": "ConanExilesSeasonalControl",
|
||||||
|
"ColorIndex": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"NextColorIndex": 1
|
||||||
|
}
|
BIN
.vs/ConanExilesSeasonalControl/v17/.futdcache.v1
Normal file
BIN
.vs/ConanExilesSeasonalControl/v17/.futdcache.v1
Normal file
Binary file not shown.
BIN
.vs/ConanExilesSeasonalControl/v17/.suo
Normal file
BIN
.vs/ConanExilesSeasonalControl/v17/.suo
Normal file
Binary file not shown.
16
ConanExilesSeasonalControl.csproj
Normal file
16
ConanExilesSeasonalControl.csproj
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<TargetFramework>net6.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="MinecraftServerRCON">
|
||||||
|
<HintPath>bin\MinecraftServerRCON.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
25
ConanExilesSeasonalControl.sln
Normal file
25
ConanExilesSeasonalControl.sln
Normal file
@ -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
|
236
Program.cs
Normal file
236
Program.cs
Normal file
@ -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\" \"皓月原创 - 季 节 系 统<br>当前季节 -> 【",
|
||||||
|
seasondeNow,
|
||||||
|
"】<br>下一季节 -> 【",
|
||||||
|
seasondeNext,
|
||||||
|
"】<br>到来时间->",
|
||||||
|
t0.ToString("HH:mm"),
|
||||||
|
"<br>掌握季节特性,使您更得心应手,是本服原创乐趣。<br>季节说明:(也可以在群相册看图表)<br>【温暖繁殖期】 推荐进行抓动物奴隶,训练速度较快,动物数量上升,但繁殖期动物比较凶猛。<br>(昼长↑/夜长↓/耐力消耗↓/口渴↑/仆役训练速度↑↑/野狗交·配/繁殖量↑↑/宠物伤害↑↑/爪牙类伤害↑↑/仇恨追逐范围↑↑)<br><br>【炎热富饶期】 推荐采集物资,物产丰富,不过要做好充分准备,炎热的夏天体能会差一些的。<br>(昼长↑↑/夜长↓↓/资源产出↑↑/资源刷新↑/冲刺速度↓/耐力耗费↑/口渴↑↑/饥饿↑/负重能力↓↓/宠物伤害↑/爪牙类伤害↑)<br><br>【寒冷保守期】 推荐在家建设,建造获得经验上升,建造速度微升,容易饿,进入严冬之前尽量先做好储备。<br>(昼长↓↓/夜长↑↑/耐力耗费↑↑/制造速度↑/制造经验↑/资源产出↓/资源刷新↓/燃料持久↓↓/冲刺速度↓↓/饥饿↑↑/负重能力↓↓/宠物伤害↓/爪牙类伤害↓)\""
|
||||||
|
});
|
||||||
|
string messageboxmsg = string.Concat(new string[]
|
||||||
|
{
|
||||||
|
"broadcast 皓月原创 - 季 节 系 统♡当前季节 -> 【",
|
||||||
|
seasondeNow,
|
||||||
|
"】下一季节 -> 【",
|
||||||
|
seasondeNext,
|
||||||
|
"】♡到来时间->",
|
||||||
|
t0.ToString("HH:mm"),
|
||||||
|
"♡掌握季节特性,使您更得心应手,是本服原创乐趣。♡季节说明:(也可以在群相册看图表)♡【温暖繁殖期】 推荐进行抓动物奴隶,训练速度较快,动物数量上升,但繁殖期动物比较凶猛。♡(昼长↑/夜长↓/耐力消耗↓/口渴↑/仆役训练速度↑↑/野狗交·配/繁殖量↑↑/宠物伤害↑↑/爪牙类伤害↑↑/仇恨追逐范围↑↑)♡【炎热富饶期】 推荐采集物资,物产丰富,不过要做好充分准备,炎热的夏天体能会差一些的。♡(昼长↑↑/夜长↓↓/资源产出↑↑/资源刷新↑/冲刺速度↓/耐力耗费↑/口渴↑↑/饥饿↑/负重能力↓↓/宠物伤害↑/爪牙类伤害↑)♡【寒冷保守期】 推荐在家建设,建造获得经验上升,建造速度微升,容易饿,进入严冬之前尽量先做好储备。♡(昼长↓↓/夜长↑↑/耐力耗费↑↑/制造速度↑/制造经验↑/资源产出↓/资源刷新↓/燃料持久↓↓/冲刺速度↓↓/饥饿↑↑/负重能力↓↓/宠物伤害↓/爪牙类伤害↓)♡"
|
||||||
|
});
|
||||||
|
List<string> msglist = new List<string>();
|
||||||
|
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"
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
39
bin/Debug/net6.0/ConanExilesSeasonalControl.deps.json
Normal file
39
bin/Debug/net6.0/ConanExilesSeasonalControl.deps.json
Normal file
@ -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": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
BIN
bin/Debug/net6.0/ConanExilesSeasonalControl.dll
Normal file
BIN
bin/Debug/net6.0/ConanExilesSeasonalControl.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net6.0/ConanExilesSeasonalControl.exe
Normal file
BIN
bin/Debug/net6.0/ConanExilesSeasonalControl.exe
Normal file
Binary file not shown.
BIN
bin/Debug/net6.0/ConanExilesSeasonalControl.pdb
Normal file
BIN
bin/Debug/net6.0/ConanExilesSeasonalControl.pdb
Normal file
Binary file not shown.
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"tfm": "net6.0",
|
||||||
|
"framework": {
|
||||||
|
"name": "Microsoft.NETCore.App",
|
||||||
|
"version": "6.0.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
BIN
bin/Debug/net6.0/MinecraftServerRCON.dll
Normal file
BIN
bin/Debug/net6.0/MinecraftServerRCON.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net6.0/ref/ConanExilesSeasonalControl.dll
Normal file
BIN
bin/Debug/net6.0/ref/ConanExilesSeasonalControl.dll
Normal file
Binary file not shown.
BIN
bin/MinecraftServerRCON.dll
Normal file
BIN
bin/MinecraftServerRCON.dll
Normal file
Binary file not shown.
62
obj/ConanExilesSeasonalControl.csproj.nuget.dgspec.json
Normal file
62
obj/ConanExilesSeasonalControl.csproj.nuget.dgspec.json
Normal file
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
15
obj/ConanExilesSeasonalControl.csproj.nuget.g.props
Normal file
15
obj/ConanExilesSeasonalControl.csproj.nuget.g.props
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<?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\35337\.nuget\packages\</NuGetPackageFolders>
|
||||||
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.0.0</NuGetToolVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<SourceRoot Include="C:\Users\35337\.nuget\packages\" />
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
2
obj/ConanExilesSeasonalControl.csproj.nuget.g.targets
Normal file
2
obj/ConanExilesSeasonalControl.csproj.nuget.g.targets
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
|
@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]
|
23
obj/Debug/net6.0/ConanExilesSeasonalControl.AssemblyInfo.cs
Normal file
23
obj/Debug/net6.0/ConanExilesSeasonalControl.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("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 类生成。
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
10626ebef6a81f8089dbf84c1421fdfcbbb4e1bd
|
@ -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\
|
@ -0,0 +1,8 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
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;
|
BIN
obj/Debug/net6.0/ConanExilesSeasonalControl.assets.cache
Normal file
BIN
obj/Debug/net6.0/ConanExilesSeasonalControl.assets.cache
Normal file
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
52a2a5e2da2a9b20dcfe177a511908c7801068b8
|
@ -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
|
BIN
obj/Debug/net6.0/ConanExilesSeasonalControl.dll
Normal file
BIN
obj/Debug/net6.0/ConanExilesSeasonalControl.dll
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
947aecc57fa7317cd6b2c42dd9c4308c34e15851
|
BIN
obj/Debug/net6.0/ConanExilesSeasonalControl.pdb
Normal file
BIN
obj/Debug/net6.0/ConanExilesSeasonalControl.pdb
Normal file
Binary file not shown.
BIN
obj/Debug/net6.0/apphost.exe
Normal file
BIN
obj/Debug/net6.0/apphost.exe
Normal file
Binary file not shown.
BIN
obj/Debug/net6.0/ref/ConanExilesSeasonalControl.dll
Normal file
BIN
obj/Debug/net6.0/ref/ConanExilesSeasonalControl.dll
Normal file
Binary file not shown.
67
obj/project.assets.json
Normal file
67
obj/project.assets.json
Normal file
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
8
obj/project.nuget.cache
Normal file
8
obj/project.nuget.cache
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"version": 2,
|
||||||
|
"dgSpecHash": "16VlztKrCvvY/ypb37iWiXK4hyGE+39ScAPeFTWos1KXLnh9UGL6gLvjGOxKIZCU9dYifpd8eTev4/hrCXofaA==",
|
||||||
|
"success": true,
|
||||||
|
"projectFilePath": "E:\\ConanExilesSeasonalControl\\ConanExilesSeasonalControl.csproj",
|
||||||
|
"expectedPackageFiles": [],
|
||||||
|
"logs": []
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user