diff options
| author | 1992414357@qq.com <1992414357@qq.com> | 2025-05-29 07:55:41 +0800 |
|---|---|---|
| committer | 1992414357@qq.com <1992414357@qq.com> | 2025-05-29 07:55:41 +0800 |
| commit | 9d3d6d4195e58c51166811d8357a331d53c4cdd4 (patch) | |
| tree | 2e1d8abfee06a05b3ded9c6d5cd99574412af665 /core_csharp | |
| parent | 7bf8e1f24f95d87e1a30765b1904473cf75b435b (diff) | |
正在编写 C# 绑定部分
Diffstat (limited to 'core_csharp')
23 files changed, 241 insertions, 7 deletions
diff --git a/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Core/Data/HsvColor.cs b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Core/Data/HsvColor.cs new file mode 100644 index 0000000..a534be6 --- /dev/null +++ b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Core/Data/HsvColor.cs @@ -0,0 +1,158 @@ +namespace NoGamepadsSharp_Data.Data; + +public struct HsvColor +{ + private int _h; + private float _s; + private float _v; + + public HsvColor(int h, float s, float v) + { + _h = h; + _s = s; + _v = v; + } + + public HsvColor(float r, float g, float b) + { + Converter.ToHsv(r, g, b, out int h, out float s, out float v); + _h = h; + _s = s; + _v = v; + } + + public int hue + { + get => _h; + set => _h = int.Clamp(value, 0, 360); + } + + public float saturation + { + get => _s; + set => _s = float.Clamp(value, 0, 1); + } + + public float value + { + get => _v; + set => _v = float.Clamp(value, 0, 1); + } + + public float red + { + get + { + Converter.ToRgb(_h, _s, _v, out float f, out _, out _); + return f; + } + set + { + Converter.ToRgb(_h, _s, _v, out float r, out float g, out float b); + r = float.Clamp(value, 0, 1); + Converter.ToHsv(r, g, b, out int h, out float s, out float v); + _h = h; + _s = s; + _v = v; + } + } + + public float green + { + get + { + Converter.ToRgb(_h, _s, _v, out _, out float f, out _); + return f; + } + set + { + Converter.ToRgb(_h, _s, _v, out float r, out float g, out float b); + g = float.Clamp(value, 0, 1); + Converter.ToHsv(r, g, b, out int h, out float s, out float v); + _h = h; + _s = s; + _v = v; + } + } + + public float blue + { + get + { + Converter.ToRgb(_h, _s, _v, out _, out _, out float f); + return f; + } + set + { + Converter.ToRgb(_h, _s, _v, out float r, out float g, out float b); + b = float.Clamp(value, 0, 1); + Converter.ToHsv(r, g, b, out int h, out float s, out float v); + _h = h; + _s = s; + _v = v; + } + } + + public class Converter + { + public static void ToRgb(int h, float s, float v, out float r, out float g, out float b) + { + h = (h % 360 + 360) % 360; + + if (s <= 0.0f) + { + r = g = b = v; + return; + } + + float hh = h / 60.0f; + int i = (int)hh; + float ff = hh - i; + float p = v * (1.0f - s); + float q = v * (1.0f - s * ff); + float t = v * (1.0f - s * (1.0f - ff)); + + switch (i) + { + case 0: r = v; g = t; b = p; break; + case 1: r = q; g = v; b = p; break; + case 2: r = p; g = v; b = t; break; + case 3: r = p; g = q; b = v; break; + case 4: r = t; g = p; b = v; break; + default: r = v; g = p; b = q; break; + } + } + + public static void ToHsv(float r, float g, float b, out int h, out float s, out float v) + { + float min = Math.Min(Math.Min(r, g), b); + float max = Math.Max(Math.Max(r, g), b); + float delta = max - min; + + v = max; + + if (delta <= 1e-6f) + { + h = 0; + s = 0.0f; + return; + } + + s = delta / max; + float hh; + + if (Math.Abs(r - max) < 0.001f) + hh = (g - b) / delta; + else if (Math.Abs(g - max) < 0.001f) + hh = (b - r) / delta + 2.0f; + else + hh = (r - g) / delta + 4.0f; + + hh *= 60.0f; + if (hh < 0.0f) hh += 360.0f; + + h = (int)Math.Round(hh); + h = (h % 360 + 360) % 360; + } + } +}
\ No newline at end of file diff --git a/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Core/Data/PlayerInfo.cs b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Core/Data/PlayerInfo.cs index 4b7030c..44ab51b 100644 --- a/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Core/Data/PlayerInfo.cs +++ b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Core/Data/PlayerInfo.cs @@ -1,6 +1,19 @@ namespace NoGamepadsSharp_Data.Data; -public class PlayerInfo +public struct PlayerInfo { + public PlayerAccount Account; + public PlayerCustomize Customize; + public struct PlayerCustomize + { + public String Nickname; + public HsvColor Color; + } + + public struct PlayerAccount + { + public String Id; + public String Hash; + } }
\ No newline at end of file diff --git a/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Core/obj/Debug/net8.0/NoGamepadsSharp_Core.AssemblyInfo.cs b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Core/obj/Debug/net8.0/NoGamepadsSharp_Core.AssemblyInfo.cs index e280404..9a403d4 100644 --- a/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Core/obj/Debug/net8.0/NoGamepadsSharp_Core.AssemblyInfo.cs +++ b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Core/obj/Debug/net8.0/NoGamepadsSharp_Core.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("NoGamepadsSharp_Core")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5a244311d5c9c42b33a49f3cafa7f20017d10305")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7bf8e1f24f95d87e1a30765b1904473cf75b435b")] [assembly: System.Reflection.AssemblyProductAttribute("NoGamepadsSharp_Core")] [assembly: System.Reflection.AssemblyTitleAttribute("NoGamepadsSharp_Core")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Core/obj/Debug/net8.0/NoGamepadsSharp_Core.AssemblyInfoInputs.cache b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Core/obj/Debug/net8.0/NoGamepadsSharp_Core.AssemblyInfoInputs.cache index fcd212a..b65f543 100644 --- a/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Core/obj/Debug/net8.0/NoGamepadsSharp_Core.AssemblyInfoInputs.cache +++ b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Core/obj/Debug/net8.0/NoGamepadsSharp_Core.AssemblyInfoInputs.cache @@ -1 +1 @@ -bc71f64338ad3af16c57c59d81f837b950bdf63c0e441a498b072048977de1c7 +a6b869bd9da6a1765cbae4ac831af005406c2755ca688e375f929ab2317f8c28 diff --git a/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/Program.cs b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/Program.cs index e5dff12..4f9a31c 100644 --- a/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/Program.cs +++ b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/Program.cs @@ -1,3 +1,12 @@ -// See https://aka.ms/new-console-template for more information +using System.Runtime.InteropServices; -Console.WriteLine("Hello, World!");
\ No newline at end of file +namespace NoGamepadsSharp_Execute +{ + public class Program + { + public static void Main(string[] args) + { + + } + } +}
\ No newline at end of file diff --git a/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/bin/Debug/net8.0/NoGamepadsSharp_Execute.deps.json b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/bin/Debug/net8.0/NoGamepadsSharp_Execute.deps.json new file mode 100644 index 0000000..7ec60d1 --- /dev/null +++ b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/bin/Debug/net8.0/NoGamepadsSharp_Execute.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "NoGamepadsSharp_Execute/1.0.0": { + "runtime": { + "NoGamepadsSharp_Execute.dll": {} + } + } + } + }, + "libraries": { + "NoGamepadsSharp_Execute/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +}
\ No newline at end of file diff --git a/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/bin/Debug/net8.0/NoGamepadsSharp_Execute.dll b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/bin/Debug/net8.0/NoGamepadsSharp_Execute.dll Binary files differnew file mode 100644 index 0000000..7304713 --- /dev/null +++ b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/bin/Debug/net8.0/NoGamepadsSharp_Execute.dll diff --git a/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/bin/Debug/net8.0/NoGamepadsSharp_Execute.exe b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/bin/Debug/net8.0/NoGamepadsSharp_Execute.exe Binary files differnew file mode 100644 index 0000000..1aed8a6 --- /dev/null +++ b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/bin/Debug/net8.0/NoGamepadsSharp_Execute.exe diff --git a/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/bin/Debug/net8.0/NoGamepadsSharp_Execute.pdb b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/bin/Debug/net8.0/NoGamepadsSharp_Execute.pdb Binary files differnew file mode 100644 index 0000000..f0bffa1 --- /dev/null +++ b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/bin/Debug/net8.0/NoGamepadsSharp_Execute.pdb diff --git a/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/bin/Debug/net8.0/NoGamepadsSharp_Execute.runtimeconfig.json b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/bin/Debug/net8.0/NoGamepadsSharp_Execute.runtimeconfig.json new file mode 100644 index 0000000..becfaea --- /dev/null +++ b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/bin/Debug/net8.0/NoGamepadsSharp_Execute.runtimeconfig.json @@ -0,0 +1,12 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + "configProperties": { + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +}
\ No newline at end of file diff --git a/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/bin/Debug/net8.0/nogamepads_lib_c.dll b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/bin/Debug/net8.0/nogamepads_lib_c.dll Binary files differnew file mode 100644 index 0000000..1dcd807 --- /dev/null +++ b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/bin/Debug/net8.0/nogamepads_lib_c.dll diff --git a/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/NoGamepadsSharp_Execute.AssemblyInfo.cs b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/NoGamepadsSharp_Execute.AssemblyInfo.cs index 7d24d7e..1cd6707 100644 --- a/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/NoGamepadsSharp_Execute.AssemblyInfo.cs +++ b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/NoGamepadsSharp_Execute.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("NoGamepadsSharp_Execute")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5a244311d5c9c42b33a49f3cafa7f20017d10305")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7bf8e1f24f95d87e1a30765b1904473cf75b435b")] [assembly: System.Reflection.AssemblyProductAttribute("NoGamepadsSharp_Execute")] [assembly: System.Reflection.AssemblyTitleAttribute("NoGamepadsSharp_Execute")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/NoGamepadsSharp_Execute.AssemblyInfoInputs.cache b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/NoGamepadsSharp_Execute.AssemblyInfoInputs.cache index 41b15d2..9d55bff 100644 --- a/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/NoGamepadsSharp_Execute.AssemblyInfoInputs.cache +++ b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/NoGamepadsSharp_Execute.AssemblyInfoInputs.cache @@ -1 +1 @@ -8708e46ad6cb9888fb34fdbff384cd1402172cc10485179fa8fd4fcc3810f7ef +04ec6d515d7009e3fadb88848dbf20ac4996198345493ab6f51b427aa75bafe7 diff --git a/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/NoGamepadsSharp_Execute.csproj.CoreCompileInputs.cache b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/NoGamepadsSharp_Execute.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..b8d2bb6 --- /dev/null +++ b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/NoGamepadsSharp_Execute.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +08b6a6e0c0f5c70b73eb166c3425ecd1b8254db5cb3da53ddf331a4e9ececa64 diff --git a/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/NoGamepadsSharp_Execute.csproj.FileListAbsolute.txt b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/NoGamepadsSharp_Execute.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..60ba01a --- /dev/null +++ b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/NoGamepadsSharp_Execute.csproj.FileListAbsolute.txt @@ -0,0 +1,15 @@ +D:\TINP\NoGamepads\core_csharp\NoGamepadsSharp\NoGamepadsSharp_Execute\bin\Debug\net8.0\NoGamepadsSharp_Execute.exe +D:\TINP\NoGamepads\core_csharp\NoGamepadsSharp\NoGamepadsSharp_Execute\bin\Debug\net8.0\NoGamepadsSharp_Execute.deps.json +D:\TINP\NoGamepads\core_csharp\NoGamepadsSharp\NoGamepadsSharp_Execute\bin\Debug\net8.0\NoGamepadsSharp_Execute.runtimeconfig.json +D:\TINP\NoGamepads\core_csharp\NoGamepadsSharp\NoGamepadsSharp_Execute\bin\Debug\net8.0\NoGamepadsSharp_Execute.dll +D:\TINP\NoGamepads\core_csharp\NoGamepadsSharp\NoGamepadsSharp_Execute\bin\Debug\net8.0\NoGamepadsSharp_Execute.pdb +D:\TINP\NoGamepads\core_csharp\NoGamepadsSharp\NoGamepadsSharp_Execute\obj\Debug\net8.0\NoGamepadsSharp_Execute.GeneratedMSBuildEditorConfig.editorconfig +D:\TINP\NoGamepads\core_csharp\NoGamepadsSharp\NoGamepadsSharp_Execute\obj\Debug\net8.0\NoGamepadsSharp_Execute.AssemblyInfoInputs.cache +D:\TINP\NoGamepads\core_csharp\NoGamepadsSharp\NoGamepadsSharp_Execute\obj\Debug\net8.0\NoGamepadsSharp_Execute.AssemblyInfo.cs +D:\TINP\NoGamepads\core_csharp\NoGamepadsSharp\NoGamepadsSharp_Execute\obj\Debug\net8.0\NoGamepadsSharp_Execute.csproj.CoreCompileInputs.cache +D:\TINP\NoGamepads\core_csharp\NoGamepadsSharp\NoGamepadsSharp_Execute\obj\Debug\net8.0\NoGamepadsSharp_Execute.sourcelink.json +D:\TINP\NoGamepads\core_csharp\NoGamepadsSharp\NoGamepadsSharp_Execute\obj\Debug\net8.0\NoGamepadsSharp_Execute.dll +D:\TINP\NoGamepads\core_csharp\NoGamepadsSharp\NoGamepadsSharp_Execute\obj\Debug\net8.0\refint\NoGamepadsSharp_Execute.dll +D:\TINP\NoGamepads\core_csharp\NoGamepadsSharp\NoGamepadsSharp_Execute\obj\Debug\net8.0\NoGamepadsSharp_Execute.pdb +D:\TINP\NoGamepads\core_csharp\NoGamepadsSharp\NoGamepadsSharp_Execute\obj\Debug\net8.0\NoGamepadsSharp_Execute.genruntimeconfig.cache +D:\TINP\NoGamepads\core_csharp\NoGamepadsSharp\NoGamepadsSharp_Execute\obj\Debug\net8.0\ref\NoGamepadsSharp_Execute.dll diff --git a/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/NoGamepadsSharp_Execute.dll b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/NoGamepadsSharp_Execute.dll Binary files differnew file mode 100644 index 0000000..7304713 --- /dev/null +++ b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/NoGamepadsSharp_Execute.dll diff --git a/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/NoGamepadsSharp_Execute.genruntimeconfig.cache b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/NoGamepadsSharp_Execute.genruntimeconfig.cache new file mode 100644 index 0000000..d1d6363 --- /dev/null +++ b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/NoGamepadsSharp_Execute.genruntimeconfig.cache @@ -0,0 +1 @@ +747af723e27e441c874613b2ee11f095ebffaa1343df438ff5c28c1abeefb1b1 diff --git a/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/NoGamepadsSharp_Execute.pdb b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/NoGamepadsSharp_Execute.pdb Binary files differnew file mode 100644 index 0000000..f0bffa1 --- /dev/null +++ b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/NoGamepadsSharp_Execute.pdb diff --git a/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/NoGamepadsSharp_Execute.sourcelink.json b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/NoGamepadsSharp_Execute.sourcelink.json new file mode 100644 index 0000000..9ab27c4 --- /dev/null +++ b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/NoGamepadsSharp_Execute.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"D:\\TINP\\NoGamepads\\*":"https://raw.githubusercontent.com/CatilGrass/NoGamepads/7bf8e1f24f95d87e1a30765b1904473cf75b435b/*"}}
\ No newline at end of file diff --git a/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/apphost.exe b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/apphost.exe Binary files differnew file mode 100644 index 0000000..1aed8a6 --- /dev/null +++ b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/apphost.exe diff --git a/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/ref/NoGamepadsSharp_Execute.dll b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/ref/NoGamepadsSharp_Execute.dll Binary files differnew file mode 100644 index 0000000..1a99951 --- /dev/null +++ b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/ref/NoGamepadsSharp_Execute.dll diff --git a/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/refint/NoGamepadsSharp_Execute.dll b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/refint/NoGamepadsSharp_Execute.dll Binary files differnew file mode 100644 index 0000000..1a99951 --- /dev/null +++ b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/Debug/net8.0/refint/NoGamepadsSharp_Execute.dll diff --git a/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/rider.project.model.nuget.info b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/rider.project.model.nuget.info new file mode 100644 index 0000000..91b84e6 --- /dev/null +++ b/core_csharp/NoGamepadsSharp/NoGamepadsSharp_Execute/obj/rider.project.model.nuget.info @@ -0,0 +1 @@ +17483964212879694
\ No newline at end of file |
