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)
606
Assert.Equal("Debug|AnyCPU", csharpProject.ProjectConfigurations["Debug|Any CPU"].
FullName
);
609
Assert.Equal("Release|AnyCPU", csharpProject.ProjectConfigurations["Debug|Mixed Platforms"].
FullName
);
612
Assert.Equal("Debug|AnyCPU", csharpProject.ProjectConfigurations["Debug|Win32"].
FullName
);
615
Assert.Equal("Release|AnyCPU", csharpProject.ProjectConfigurations["Release|Any CPU"].
FullName
);
618
Assert.Equal("Release|AnyCPU", csharpProject.ProjectConfigurations["Release|Mixed Platforms"].
FullName
);
621
Assert.Equal("Release|AnyCPU", csharpProject.ProjectConfigurations["Release|Win32"].
FullName
);
626
Assert.Equal("Debug|Win32", vcProject.ProjectConfigurations["Debug|Any CPU"].
FullName
);
629
Assert.Equal("Debug|Win32", vcProject.ProjectConfigurations["Debug|Mixed Platforms"].
FullName
);
632
Assert.Equal("Debug|Win32", vcProject.ProjectConfigurations["Debug|Win32"].
FullName
);
635
Assert.Equal("Release|Win32", vcProject.ProjectConfigurations["Release|Any CPU"].
FullName
);
638
Assert.Equal("Release|Win32", vcProject.ProjectConfigurations["Release|Mixed Platforms"].
FullName
);
641
Assert.Equal("Release|Win32", vcProject.ProjectConfigurations["Release|Win32"].
FullName
);
692
Assert.Equal("Debug|x86", winFormsApp1.ProjectConfigurations["Debug|Win32"].
FullName
);
695
Assert.Equal("Release|x86", winFormsApp1.ProjectConfigurations["Release|Win32"].
FullName
);
700
Assert.Equal("Debug|AnyCPU", classLibrary1.ProjectConfigurations["Debug|Any CPU"].
FullName
);
703
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
);