1 write to SomeProjectPath
Microsoft.AspNetCore.Razor.Test.Common.Tooling (1)
TestProjectData.cs (1)
22SomeProjectPath = Path.Combine(baseDirectory, "SomeProject");
16 references to SomeProjectPath
Microsoft.AspNetCore.Razor.Test.Common.Cohosting (1)
CohostTestBase.cs (1)
284=> Path.GetFullPath(Path.Combine(TestProjectData.SomeProjectPath, projectRelativeFileName));
Microsoft.AspNetCore.Razor.Test.Common.Tooling (14)
TestProjectData.cs (14)
23var someProjectObjPath = Path.Combine(SomeProjectPath, "obj"); 25SomeProject = new HostProject(Path.Combine(SomeProjectPath, "SomeProject.csproj"), someProjectObjPath, RazorConfiguration.Default, "SomeProject"); 26SomeProjectFile1 = new HostDocument(Path.Combine(SomeProjectPath, "File1.cshtml")); 27SomeProjectFile2 = new HostDocument(Path.Combine(SomeProjectPath, "File2.cshtml")); 28SomeProjectImportFile = new HostDocument(Path.Combine(SomeProjectPath, "_ViewImports.cshtml")); 29SomeProjectNestedFile3 = new HostDocument(Path.Combine(SomeProjectPath, "Nested", "File3.cshtml")); 30SomeProjectNestedFile4 = new HostDocument(Path.Combine(SomeProjectPath, "Nested", "File4.cshtml")); 31SomeProjectNestedImportFile = new HostDocument(Path.Combine(SomeProjectPath, "Nested", "_ViewImports.cshtml")); 32SomeProjectComponentFile1 = new HostDocument(Path.Combine(SomeProjectPath, "File1.razor")); 33SomeProjectComponentFile2 = new HostDocument(Path.Combine(SomeProjectPath, "File2.razor")); 34SomeProjectComponentImportFile1 = new HostDocument(Path.Combine(SomeProjectPath, "_Imports.razor")); 35SomeProjectNestedComponentFile3 = new HostDocument(Path.Combine(SomeProjectPath, "Nested", "File3.razor")); 36SomeProjectNestedComponentFile4 = new HostDocument(Path.Combine(SomeProjectPath, "Nested", "File4.razor")); 37SomeProjectCshtmlComponentFile5 = new HostDocument(Path.Combine(SomeProjectPath, "File5.cshtml"));
Microsoft.VisualStudio.LanguageServices.Razor.UnitTests (1)
Cohost\CohostRoslynRenameTest.cs (1)
211var razorDocument = CreateProjectAndRazorDocument(razorFile.Text, additionalFiles: [(Path.Combine(TestProjectData.SomeProjectPath, "File.cs"), csharpFile.Text)]);