From 2494a21b9d8be34356599be3fa16ada7d22263e2 Mon Sep 17 00:00:00 2001 From: zznty <94796179+zznty@users.noreply.github.com> Date: Fri, 1 Nov 2024 23:05:28 +0700 Subject: [PATCH] correct default nuget sources --- CringePlugins/Config/PackagesConfig.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CringePlugins/Config/PackagesConfig.cs b/CringePlugins/Config/PackagesConfig.cs index 3084539..1da804c 100644 --- a/CringePlugins/Config/PackagesConfig.cs +++ b/CringePlugins/Config/PackagesConfig.cs @@ -8,8 +8,9 @@ namespace CringePlugins.Config; public record PackagesConfig(ImmutableArray Sources, ImmutableArray Packages) { public static PackagesConfig Default { get; } = new([ - new("SpaceEngineersDedicated.ReferenceAssemblies", "https://nuget.storage.yandexcloud.net/index.json"), - new("ImGui.NET.DirectX", "https://nuget.storage.yandexcloud.net/index.json"), + new("SpaceEngineersDedicated.ReferenceAssemblies", "https://ng.zznty.ru/v3/index.json"), + new("ImGui.NET.DirectX", "https://ng.zznty.ru/v3/index.json"), + new("Plugin", "https://ng.zznty.ru/v3/index.json"), new(string.Empty, "https://api.nuget.org/v3/index.json") ], []); } \ No newline at end of file