6 references to ToTFMString
Aspire.Templates.Tests (6)
NewUpAndBuildStandaloneTemplateTests.cs (1)
17var id = GetNewProjectId(prefix: $"new_build_{templateName}_{tfm.ToTFMString()}");
TemplateAppFixture.cs (1)
31Id = TemplateTestsBase.GetNewProjectId(prefix: $"{templateName}_{tfm.ToTFMString()}");
TemplateTestsBase.cs (1)
58var tmfArg = tfm is not null ? $"-f {tfm.Value.ToTFMString()}" : "";
tests\Shared\TemplatesTesting\AspireProject.cs (3)
121cmdString = $"{cmdString} -f {tfmToUse.ToTFMString()}"; 144if (matches[0].Groups["tfm"].Value != tfmToUse.ToTFMString()) 146throw new XunitException($"Expected to find {tfmToUse.ToTFMString()} but found '{matches[0].Groups["tfm"].Value}' in {csprojPath}: {csprojContent}");