Skip to content

Commit

Permalink
Fixed GetPlayerData() Method
Browse files Browse the repository at this point in the history
Fixed a bug that prevented the correct coordinates from being retrieved if the player name contained numbers or symbols.
  • Loading branch information
たくのろじぃ / Takunology committed Feb 15, 2022
1 parent 2c7e67e commit 80c9039
Show file tree
Hide file tree
Showing 47 changed files with 87 additions and 54 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
5 changes: 3 additions & 2 deletions MinecraftConnection/MinecraftConnection/Entity/PlayerData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,9 @@ private void GetPosition()
if (result.Contains("Not") || PlayerName == null)
throw new Exception("プレイヤーが見つかりません。");

string filterResult = Regex.Replace(result, @"[^0-9-,.]", "");
string[] splitResult = filterResult.Split(',');
result.Substring(result.IndexOf("data"));
result = Regex.Replace(result, @"[^0-9-,.]", "");
string[] splitResult = result.Split(',');
float[] value = new float[]
{
float.Parse(splitResult[0]),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<Authors>Takumi Okawa (Takunology)</Authors>
<Company>Minecraft_with_Code_Project</Company>
<Version>1.1.0</Version>
<Version>1.1.1</Version>
<PackageId>MinecraftConnection</PackageId>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
Expand All @@ -17,14 +17,9 @@
<Copyright>Copyright (c) 2021 Takumi Okawa (Takunology)</Copyright>
<PackageIconUrl />
<PackageTags>Minecraft</PackageTags>
<PackageReleaseNotes>Version 1.1.0 - Fireworks Update
<PackageReleaseNotes>Version 1.1.1 - Fixed GetplayerData().Position

- Modify the constructor of the Fireworks class
- Add a method to set the color of fireworks to random.

Some of the constructor arguments have been reduced because they are too many. Instead, an extension method is able to used to set the Flicker and Trail.

Setting the colors of the fireworks to random makes it easy to set off colorful fireworks.</PackageReleaseNotes>
Fixed a bug that prevented the correct coordinates from being retrieved if the player name contained numbers or symbols.</PackageReleaseNotes>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,7 @@
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
</Project>
<PropertyGroup>
<History>True|2022-02-15T12:50:15.1469967Z;</History>
</PropertyGroup>
</Project>
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"targets": {
".NETStandard,Version=v2.0": {},
".NETStandard,Version=v2.0/": {
"MinecraftConnection/1.1.0": {
"MinecraftConnection/1.1.1": {
"dependencies": {
"NETStandard.Library": "2.0.3"
},
Expand All @@ -24,7 +24,7 @@
}
},
"libraries": {
"MinecraftConnection/1.1.0": {
"MinecraftConnection/1.1.1": {
"type": "project",
"serviceable": false,
"sha512": ""
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
},
"projects": {
"D:\\GitHub\\MinecraftConnection\\MinecraftConnection\\MinecraftConnection\\MinecraftConnection.csproj": {
"version": "1.1.0",
"version": "1.1.1",
"restore": {
"projectUniqueName": "D:\\GitHub\\MinecraftConnection\\MinecraftConnection\\MinecraftConnection\\MinecraftConnection.csproj",
"projectName": "MinecraftConnection",
Expand All @@ -28,6 +28,7 @@
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"C:\\Program Files\\dotnet\\library-packs": {},
"D:\\GitHub\\MinecraftConnection\\MinecraftConnection\\MinecraftConnection\\bin\\Release": {},
"https://api.nuget.org/v3/index.json": {}
},
Expand Down Expand Up @@ -64,7 +65,7 @@
],
"assetTargetFallback": true,
"warn": true,
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,11 @@
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\takun\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files (x86)\Microsoft\Xamarin\NuGet\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.10.0</NuGetToolVersion>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.0.1</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\takun\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft\Xamarin\NuGet\" />
</ItemGroup>
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets" Condition="Exists('$(NuGetPackageRoot)netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets')" />
</ImportGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>MinecraftConnection</id>
<version>1.1.1</version>
<authors>Takumi Okawa (Takunology)</authors>
<license type="expression">MIT</license>
<licenseUrl>https://licenses.nuget.org/MIT</licenseUrl>
<icon>MCLogo.png</icon>
<projectUrl>https://www.mcwithcode.com/</projectUrl>
<description>MinecraftConnection is a library for sending commands via RCON using C# to support you learn and automate your programming. It can be run on a vanilla server as well as a Spigot server, including plugins. Before running the program, you need to start a Minecraft server that allows RCON connections.</description>
<releaseNotes>Version 1.1.1 - Fixed GetplayerData().Position

Fixed a bug that prevented the correct coordinates from being retrieved if the player name contained numbers or symbols.</releaseNotes>
<copyright>Copyright (c) 2021 Takumi Okawa (Takunology)</copyright>
<tags>Minecraft</tags>
<repository type="git" url="https://github.com/takunology/MinecraftConnection" />
<dependencies>
<group targetFramework=".NETStandard2.0" />
</dependencies>
</metadata>
<files>
<file src="D:\GitHub\MinecraftConnection\MinecraftConnection\MinecraftConnection\bin\Release\netstandard2.0\MinecraftConnection.dll" target="lib\netstandard2.0\MinecraftConnection.dll" />
<file src="D:\GitHub\MinecraftConnection\MinecraftConnection\MinecraftConnection\MCLogo.png" target="MCLogo.png" />
</files>
</package>
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright (c) 2021 Takumi Okawa (Takunology)")]
[assembly: System.Reflection.AssemblyDescriptionAttribute(@"MinecraftConnection is a library for sending commands via RCON using C# to support you learn and automate your programming. It can be run on a vanilla server as well as a Spigot server, including plugins. Before running the program, you need to start a Minecraft server that allows RCON connections.")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.1.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.1.0")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.1.1.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.1.1")]
[assembly: System.Reflection.AssemblyProductAttribute("MinecraftConnection")]
[assembly: System.Reflection.AssemblyTitleAttribute("MinecraftConnection")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.1.0.0")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.1.1.0")]
[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/takunology/MinecraftConnection")]

// MSBuild WriteCodeFragment クラスによって生成されました。
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
e9f184440c7113f7e428b39284dadd08792e28f2
326e557620cf457ed15ffc0e88bbbc544e2cce6d
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
is_global = true
build_property.RootNamespace = MinecraftConnection
build_property.ProjectDir = D:\GitHub\MinecraftConnection\MinecraftConnection\MinecraftConnection\
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ D:\GitHub\MinecraftConnection\MinecraftConnection\MinecraftConnection\obj\Releas
D:\GitHub\MinecraftConnection\MinecraftConnection\MinecraftConnection\obj\Release\netstandard2.0\MinecraftConnection.dll
D:\GitHub\MinecraftConnection\MinecraftConnection\MinecraftConnection\obj\Release\netstandard2.0\MinecraftConnection.pdb
D:\GitHub\MinecraftConnection\MinecraftConnection\MinecraftConnection\obj\Release\netstandard2.0\MinecraftConnection.csproj.AssemblyReference.cache
D:\GitHub\MinecraftConnection\MinecraftConnection\MinecraftConnection\obj\Release\netstandard2.0\MinecraftConnection.GeneratedMSBuildEditorConfig.editorconfig
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\": {}
},
"project": {
"version": "1.1.0",
"version": "1.1.1",
"restore": {
"projectUniqueName": "D:\\GitHub\\MinecraftConnection\\MinecraftConnection\\MinecraftConnection\\MinecraftConnection.csproj",
"projectName": "MinecraftConnection",
Expand All @@ -206,6 +206,7 @@
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"C:\\Program Files\\dotnet\\library-packs": {},
"D:\\GitHub\\MinecraftConnection\\MinecraftConnection\\MinecraftConnection\\bin\\Release": {},
"https://api.nuget.org/v3/index.json": {}
},
Expand Down Expand Up @@ -242,7 +243,7 @@
],
"assetTargetFallback": true,
"warn": true,
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"version": 2,
"dgSpecHash": "NN7fVjTFqrRTTJky/JxvN7n4zI6pjWw2TcS/qX0+YIQQY2xaA1fDK1H2kfbp4GNtqt+ZLDrkTNIqwBKbIk7pDQ==",
"dgSpecHash": "nSxpDUwbZwWdKErmRlPUodlUbhyJU+486f/cpheU+hyN6G1MIrOsFW6ArXe8OXB9wM1qPwmkAriBG//0wFAE9Q==",
"success": true,
"projectFilePath": "D:\\GitHub\\MinecraftConnection\\MinecraftConnection\\MinecraftConnection\\MinecraftConnection.csproj",
"expectedPackageFiles": [
Expand Down
12 changes: 9 additions & 3 deletions MinecraftConnection/TestProject/UnitTest1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class Sample
static string pass = "minecraft";
static MinecraftCommands commands = new MinecraftCommands(address, port, pass);

[TestMethod]
//[TestMethod]
public void CommandTest()
{
int x = -961 + 20;
Expand All @@ -29,8 +29,14 @@ public void CommandTest()
Console.WriteLine(fireworks.ToNBT());
commands.SetOffFireworks(x + rnd.Next(0, 20), y + rnd.Next(-5, 10), z + rnd.Next(-30, 30), fireworks);
commands.Wait(100);
}

}
}

[TestMethod]
public void GetPos()
{
var playerData = commands.GetPlayerData("takunology");
Console.WriteLine($"{playerData.PositionX} {playerData.PositionY} {playerData.PositionZ}");
}

//[TestMethod]
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"MSTest.TestAdapter": "2.2.3",
"MSTest.TestFramework": "2.2.3",
"Microsoft.NET.Test.Sdk": "16.9.4",
"MinecraftConnection": "1.0.1",
"MinecraftConnection": "1.1.0",
"coverlet.collector": "3.0.2"
},
"runtime": {
Expand Down Expand Up @@ -1077,7 +1077,7 @@
"System.Xml.ReaderWriter": "4.3.0"
}
},
"MinecraftConnection/1.0.1": {
"MinecraftConnection/1.1.0": {
"runtime": {
"MinecraftConnection.dll": {}
}
Expand Down Expand Up @@ -1706,7 +1706,7 @@
"path": "system.xml.xdocument/4.3.0",
"hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
},
"MinecraftConnection/1.0.1": {
"MinecraftConnection/1.1.0": {
"type": "project",
"serviceable": false,
"sha512": ""
Expand Down
Binary file modified MinecraftConnection/TestProject/bin/Release/net5.0/TestProject.dll
Binary file not shown.
Binary file modified MinecraftConnection/TestProject/bin/Release/net5.0/TestProject.pdb
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
"framework": {
"name": "Microsoft.NETCore.App",
"version": "5.0.0"
},
"configProperties": {
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false
}
}
}
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ build_property.TargetFramework = net5.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.PublishSingleFile =
build_property.IncludeAllContentForSelfExtract =
build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = TestProject
build_property.ProjectDir = D:\GitHub\MinecraftConnection\MinecraftConnection\TestProject\
Binary file not shown.
Binary file not shown.
Binary file modified MinecraftConnection/TestProject/obj/Release/net5.0/TestProject.dll
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
93ca14e4ad22833145d324e74ffe691efbebbac2
00e15f0a407d109f7ee4d97136faf723d65ce821
Binary file modified MinecraftConnection/TestProject/obj/Release/net5.0/TestProject.pdb
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
},
"projects": {
"D:\\GitHub\\MinecraftConnection\\MinecraftConnection\\MinecraftConnection\\MinecraftConnection.csproj": {
"version": "1.1.0",
"version": "1.1.1",
"restore": {
"projectUniqueName": "D:\\GitHub\\MinecraftConnection\\MinecraftConnection\\MinecraftConnection\\MinecraftConnection.csproj",
"projectName": "MinecraftConnection",
Expand All @@ -28,6 +28,7 @@
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"C:\\Program Files\\dotnet\\library-packs": {},
"D:\\GitHub\\MinecraftConnection\\MinecraftConnection\\MinecraftConnection\\bin\\Release": {},
"https://api.nuget.org/v3/index.json": {}
},
Expand Down Expand Up @@ -64,7 +65,7 @@
],
"assetTargetFallback": true,
"warn": true,
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json"
}
}
},
Expand Down Expand Up @@ -92,6 +93,7 @@
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"C:\\Program Files\\dotnet\\library-packs": {},
"D:\\GitHub\\MinecraftConnection\\MinecraftConnection\\MinecraftConnection\\bin\\Release": {},
"https://api.nuget.org/v3/index.json": {}
},
Expand Down Expand Up @@ -147,7 +149,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,13 @@
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\takun\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files (x86)\Microsoft\Xamarin\NuGet\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.10.0</NuGetToolVersion>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.0.1</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\takun\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft\Xamarin\NuGet\" />
</ItemGroup>
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)mstest.testadapter\2.2.3\build\netcoreapp1.0\MSTest.TestAdapter.props" Condition="Exists('$(NuGetPackageRoot)mstest.testadapter\2.2.3\build\netcoreapp1.0\MSTest.TestAdapter.props')" />
<Import Project="$(NuGetPackageRoot)microsoft.testplatform.testhost\16.9.4\build\netcoreapp2.1\Microsoft.TestPlatform.TestHost.props" Condition="Exists('$(NuGetPackageRoot)microsoft.testplatform.testhost\16.9.4\build\netcoreapp2.1\Microsoft.TestPlatform.TestHost.props')" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)microsoft.codecoverage\16.9.4\build\netstandard1.0\Microsoft.CodeCoverage.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.codecoverage\16.9.4\build\netstandard1.0\Microsoft.CodeCoverage.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.net.test.sdk\16.9.4\build\netcoreapp2.1\Microsoft.NET.Test.Sdk.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.net.test.sdk\16.9.4\build\netcoreapp2.1\Microsoft.NET.Test.Sdk.targets')" />
Expand Down
9 changes: 5 additions & 4 deletions MinecraftConnection/TestProject/obj/project.assets.json
Original file line number Diff line number Diff line change
Expand Up @@ -1661,7 +1661,7 @@
"lib/netstandard1.3/System.Xml.XDocument.dll": {}
}
},
"MinecraftConnection/1.1.0": {
"MinecraftConnection/1.1.1": {
"type": "project",
"framework": ".NETStandard,Version=v2.0",
"compile": {
Expand Down Expand Up @@ -6114,7 +6114,7 @@
"system.xml.xdocument.nuspec"
]
},
"MinecraftConnection/1.1.0": {
"MinecraftConnection/1.1.1": {
"type": "project",
"path": "../MinecraftConnection/MinecraftConnection.csproj",
"msbuildProject": "../MinecraftConnection/MinecraftConnection.csproj"
Expand All @@ -6125,7 +6125,7 @@
"MSTest.TestAdapter >= 2.2.3",
"MSTest.TestFramework >= 2.2.3",
"Microsoft.NET.Test.Sdk >= 16.9.4",
"MinecraftConnection >= 1.1.0",
"MinecraftConnection >= 1.1.1",
"coverlet.collector >= 3.0.2"
]
},
Expand Down Expand Up @@ -6158,6 +6158,7 @@
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"C:\\Program Files\\dotnet\\library-packs": {},
"D:\\GitHub\\MinecraftConnection\\MinecraftConnection\\MinecraftConnection\\bin\\Release": {},
"https://api.nuget.org/v3/index.json": {}
},
Expand Down Expand Up @@ -6213,7 +6214,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json"
}
}
}
Expand Down
Loading

0 comments on commit 80c9039

Please sign in to comment.