1 write to FullName
Microsoft.Build (1)
Construction\Solution\ProjectConfigurationInSolution.cs (1)
23
FullName
= SolutionConfigurationInSolution.ComputeFullName(ConfigurationName, PlatformName);
35 references to FullName
Microsoft.Build (3)
Construction\Solution\SolutionProjectGenerator.cs (1)
279
xw.WriteString(projectConfiguration.
FullName
);
Graph\GraphBuilder.cs (2)
328
if (!globalPropertiesForProjectConfiguration.TryGetValue(projectConfiguration.
FullName
, out ImmutableDictionary<string, string> projectGlobalProperties))
334
globalPropertiesForProjectConfiguration.Add(projectConfiguration.
FullName
, projectGlobalProperties);
Microsoft.Build.Engine.OM.UnitTests (16)
Construction\SolutionFile_Tests.cs (16)
579
Assert.Equal("Debug|AnyCPU", csharpProject.ProjectConfigurations["Debug|Any CPU"].
FullName
);
582
Assert.Equal("Release|AnyCPU", csharpProject.ProjectConfigurations["Debug|Mixed Platforms"].
FullName
);
585
Assert.Equal("Debug|AnyCPU", csharpProject.ProjectConfigurations["Debug|Win32"].
FullName
);
588
Assert.Equal("Release|AnyCPU", csharpProject.ProjectConfigurations["Release|Any CPU"].
FullName
);
591
Assert.Equal("Release|AnyCPU", csharpProject.ProjectConfigurations["Release|Mixed Platforms"].
FullName
);
594
Assert.Equal("Release|AnyCPU", csharpProject.ProjectConfigurations["Release|Win32"].
FullName
);
599
Assert.Equal("Debug|Win32", vcProject.ProjectConfigurations["Debug|Any CPU"].
FullName
);
602
Assert.Equal("Debug|Win32", vcProject.ProjectConfigurations["Debug|Mixed Platforms"].
FullName
);
605
Assert.Equal("Debug|Win32", vcProject.ProjectConfigurations["Debug|Win32"].
FullName
);
608
Assert.Equal("Release|Win32", vcProject.ProjectConfigurations["Release|Any CPU"].
FullName
);
611
Assert.Equal("Release|Win32", vcProject.ProjectConfigurations["Release|Mixed Platforms"].
FullName
);
614
Assert.Equal("Release|Win32", vcProject.ProjectConfigurations["Release|Win32"].
FullName
);
664
Assert.Equal("Debug|x86", winFormsApp1.ProjectConfigurations["Debug|Win32"].
FullName
);
667
Assert.Equal("Release|x86", winFormsApp1.ProjectConfigurations["Release|Win32"].
FullName
);
672
Assert.Equal("Debug|AnyCPU", classLibrary1.ProjectConfigurations["Debug|Any CPU"].
FullName
);
675
Assert.Equal("Release|AnyCPU", classLibrary1.ProjectConfigurations["Release|Any CPU"].
FullName
);
Microsoft.Build.Engine.UnitTests (16)
Construction\SolutionFile_OldParser_Tests.cs (14)
1964
csProject.ProjectConfigurations["Debug|Any CPU"].
FullName
.ShouldBe("Debug|AnyCPU");
1967
csProject.ProjectConfigurations["Debug|Mixed Platforms"].
FullName
.ShouldBe("Release|AnyCPU");
1970
csProject.ProjectConfigurations["Debug|Win32"].
FullName
.ShouldBe("Debug|AnyCPU");
1973
csProject.ProjectConfigurations["Release|Any CPU"].
FullName
.ShouldBe("Release|AnyCPU");
1976
csProject.ProjectConfigurations["Release|Mixed Platforms"].
FullName
.ShouldBe("Release|AnyCPU");
1979
csProject.ProjectConfigurations["Release|Win32"].
FullName
.ShouldBe("Release|AnyCPU");
1984
vcProject.ProjectConfigurations["Debug|Any CPU"].
FullName
.ShouldBe("Debug|Win32");
1987
vcProject.ProjectConfigurations["Debug|Mixed Platforms"].
FullName
.ShouldBe("Debug|Win32");
1990
vcProject.ProjectConfigurations["Debug|Win32"].
FullName
.ShouldBe("Debug|Win32");
1993
vcProject.ProjectConfigurations["Release|Any CPU"].
FullName
.ShouldBe("Release|Win32");
1996
vcProject.ProjectConfigurations["Release|Mixed Platforms"].
FullName
.ShouldBe("Release|Win32");
1999
vcProject.ProjectConfigurations["Release|Win32"].
FullName
.ShouldBe("Release|Win32");
2050
webProject.ProjectConfigurations["Debug|.NET"].
FullName
.ShouldBe("Debug|.NET");
2055
exeProject.ProjectConfigurations["Debug|.NET"].
FullName
.ShouldBe("Debug");
SolutionFileBuilder.cs (2)
196
sb.Append("\t\t").Append(project.Value.Guid).Append('.').Append(solutionConfiguration.FullName).Append(".ActiveCfg = ").AppendLine(projectConfiguration.
FullName
);
197
sb.Append("\t\t").Append(project.Value.Guid).Append('.').Append(solutionConfiguration.FullName).Append(".Build.0 = ").AppendLine(projectConfiguration.
FullName
);