4 overrides of TestProjectName
Microsoft.NET.Sdk.Razor.Tests (4)
MvcBuildIntegrationTest21.cs (1)
10public override string TestProjectName => "SimpleMvc21";
MvcBuildIntegrationTest22.cs (1)
10public override string TestProjectName => "SimpleMvc22";
MvcBuildIntegrationTest31.cs (1)
10public override string TestProjectName => "SimpleMvc31";
MvcBuildIntegrationTest50.cs (1)
12public override string TestProjectName => "SimpleMvc50";
17 references to TestProjectName
Microsoft.NET.Sdk.Razor.Tests (17)
MvcBuildIntegrationTestLegacy.cs (17)
16public virtual string OutputFileName => $"{TestProjectName}.dll"; 23var testAsset = $"Razor{TestProjectName}"; 34new FileInfo(Path.Combine(outputPath, $"{TestProjectName}.pdb")).Should().Exist(); 35new FileInfo(Path.Combine(outputPath, $"{TestProjectName}.Views.dll")).Should().Exist(); 36new FileInfo(Path.Combine(outputPath, $"{TestProjectName}.Views.pdb")).Should().Exist(); 39new FileInfo(Path.Combine(intermediateOutputPath, $"{TestProjectName}.TagHelpers.input.cache")).Should().Exist(); 40new FileInfo(Path.Combine(intermediateOutputPath, $"{TestProjectName}.TagHelpers.output.cache")).Should().Exist(); 42Path.Combine(intermediateOutputPath, $"{TestProjectName}.TagHelpers.output.cache")).Should().Contain( 49var testAsset = $"Razor{TestProjectName}"; 69var testAsset = $"Razor{TestProjectName}"; 78new FileInfo(Path.Combine(outputPath, $"{TestProjectName}.pdb")).Should().Exist(); 79new FileInfo(Path.Combine(outputPath, $"{TestProjectName}.Views.dll")).Should().Exist(); 80new FileInfo(Path.Combine(outputPath, $"{TestProjectName}.Views.pdb")).Should().Exist(); 91var testAsset = $"Razor{TestProjectName}"; 105var testAsset = $"Razor{TestProjectName}"; 114var depsFile = new FileInfo(Path.Combine(outputPath, $"{TestProjectName}.deps.json")); 122var projectReference = dependencyContext.CompileLibraries.First(l => l.Name == TestProjectName);