correct default nuget sources
All checks were successful
Build / Compute Version (push) Successful in 5s
Build / Build Nuget package (CringeBootstrap.Abstractions) (push) Successful in 8m30s
Build / Build Nuget package (CringePlugins) (push) Successful in 8m49s
Build / Build Nuget package (NuGet) (push) Successful in 8m13s
Build / Build Nuget package (SharedCringe) (push) Successful in 8m13s
Build / Build Launcher (push) Successful in 11m59s

This commit is contained in:
zznty
2024-11-01 23:05:28 +07:00
parent 8e959a3423
commit 2494a21b9d

View File

@@ -8,8 +8,9 @@ namespace CringePlugins.Config;
public record PackagesConfig(ImmutableArray<PackageSource> Sources, ImmutableArray<PackageReference> 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")
], []);
}