14 references to WellKnownPaths
Microsoft.Agents.AI.Templates.Tests (14)
test\ProjectTemplates\Infrastructure\DotNetCommand.cs (1)
12FileName = WellKnownPaths.RepoDotNetExePath;
test\ProjectTemplates\Infrastructure\TemplateExecutionTestClassFixtureBase.cs (7)
37_templateTestOutputPath = Path.Combine(WellKnownPaths.TemplateSandboxOutputRoot, outputFolderName); 56File.Copy(WellKnownPaths.TemplateInstallNuGetConfigPath, installNuGetConfigPath); 60.WithEnvironmentVariable("LOCAL_SHIPPING_PATH", WellKnownPaths.LocalShippingPackagesPath) 61.WithEnvironmentVariable("NUGET_PACKAGES", WellKnownPaths.NuGetPackagesPath) 88File.Copy(WellKnownPaths.TemplateTestNuGetConfigPath, templateNuGetConfigPath); 97.WithEnvironmentVariable("LOCAL_SHIPPING_PATH", WellKnownPaths.LocalShippingPackagesPath) 98.WithEnvironmentVariable("NUGET_PACKAGES", WellKnownPaths.NuGetPackagesPath)
test\ProjectTemplates\Infrastructure\TemplateExecutionTestCollectionFixture.cs (5)
24if (Directory.Exists(WellKnownPaths.TemplateSandboxOutputRoot)) 26Directory.Delete(WellKnownPaths.TemplateSandboxOutputRoot, recursive: true); 30Directory.CreateDirectory(WellKnownPaths.TemplateSandboxOutputRoot); 32foreach (var filePath in Directory.EnumerateFiles(WellKnownPaths.TemplateSandboxSource)) 35var destFilePath = Path.Combine(WellKnownPaths.TemplateSandboxOutputRoot, fileName);
WebApiAgentTemplateSnapshotTests.cs (1)
82string templateLocation = Path.Combine(WellKnownPaths.TemplateFeedLocation, "Microsoft.Agents.AI.Templates", "src", "WebApiAgent");