feat(mosstank): add VTank-style automation PoC

This commit is contained in:
Erik 2026-08-27 18:57:21 +02:00
parent f6fe0f2a4f
commit 4e6e9bc9d9
212 changed files with 49462 additions and 416 deletions

View file

@ -526,20 +526,29 @@ public sealed class ExternalRenderPackPackageLifecycleTests
private static string FixtureAssemblyPath()
{
const string projectName = "AcDream.Plugin.Tests.Fixtures.HostPlugin";
string colocated = Path.Combine(AppContext.BaseDirectory, projectName + ".dll");
if (File.Exists(colocated))
return colocated;
string configuration = new DirectoryInfo(AppContext.BaseDirectory)
.Parent!.Name;
return Path.Combine(
FindRepoRoot(),
"tests",
"AcDream.Plugin.Tests.Fixtures.HostPlugin",
projectName,
"bin",
configuration,
"net10.0",
"AcDream.Plugin.Tests.Fixtures.HostPlugin.dll");
projectName + ".dll");
}
private static string FixtureAssemblyPath(string projectName)
{
string colocated = Path.Combine(AppContext.BaseDirectory, projectName + ".dll");
if (File.Exists(colocated))
return colocated;
string configuration = new DirectoryInfo(AppContext.BaseDirectory)
.Parent!.Name;
return Path.Combine(