Plugins can load assemblies from their dependent plugins (#6851)

This commit is contained in:
Nicolas Dorier
2025-07-17 22:38:40 +09:00
committed by GitHub
parent 86881ba5a3
commit e77d785358
18 changed files with 2012 additions and 91 deletions

View File

@@ -0,0 +1,13 @@
#nullable enable
// Copyright (c) Nate McMaster.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
namespace BTCPayServer.Plugins.Dotnet.Internal
{
internal class RuntimeOptions
{
public string? Tfm { get; set; }
public string[]? AdditionalProbingPaths { get; set; }
}
}