1 write to FullName
Microsoft.Build (1)
Construction\Solution\ProjectConfigurationInSolution.cs (1)
21
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)
329
if (!globalPropertiesForProjectConfiguration.TryGetValue(projectConfiguration.
FullName
, out ImmutableDictionary<string, string> projectGlobalProperties))
335
globalPropertiesForProjectConfiguration.Add(projectConfiguration.
FullName
, projectGlobalProperties);
Microsoft.Build.Engine.OM.UnitTests (16)
Construction\SolutionFile_Tests.cs (16)
603
Assert.Equal("Debug|AnyCPU", csharpProject.ProjectConfigurations["Debug|Any CPU"].
FullName
);
606
Assert.Equal("Release|AnyCPU", csharpProject.ProjectConfigurations["Debug|Mixed Platforms"].
FullName
);
609
Assert.Equal("Debug|AnyCPU", csharpProject.ProjectConfigurations["Debug|Win32"].
FullName
);
612
Assert.Equal("Release|AnyCPU", csharpProject.ProjectConfigurations["Release|Any CPU"].
FullName
);
615
Assert.Equal("Release|AnyCPU", csharpProject.ProjectConfigurations["Release|Mixed Platforms"].
FullName
);
618
Assert.Equal("Release|AnyCPU", csharpProject.ProjectConfigurations["Release|Win32"].
FullName
);
623
Assert.Equal("Debug|Win32", vcProject.ProjectConfigurations["Debug|Any CPU"].
FullName
);
626
Assert.Equal("Debug|Win32", vcProject.ProjectConfigurations["Debug|Mixed Platforms"].
FullName
);
629
Assert.Equal("Debug|Win32", vcProject.ProjectConfigurations["Debug|Win32"].
FullName
);
632
Assert.Equal("Release|Win32", vcProject.ProjectConfigurations["Release|Any CPU"].
FullName
);
635
Assert.Equal("Release|Win32", vcProject.ProjectConfigurations["Release|Mixed Platforms"].
FullName
);
638
Assert.Equal("Release|Win32", vcProject.ProjectConfigurations["Release|Win32"].
FullName
);
689
Assert.Equal("Debug|x86", winFormsApp1.ProjectConfigurations["Debug|Win32"].
FullName
);
692
Assert.Equal("Release|x86", winFormsApp1.ProjectConfigurations["Release|Win32"].
FullName
);
697
Assert.Equal("Debug|AnyCPU", classLibrary1.ProjectConfigurations["Debug|Any CPU"].
FullName
);
700
Assert.Equal("Release|AnyCPU", classLibrary1.ProjectConfigurations["Release|Any CPU"].
FullName
);
Microsoft.Build.Engine.UnitTests (16)
Construction\SolutionFile_OldParser_Tests.cs (14)
1965
csProject.ProjectConfigurations["Debug|Any CPU"].
FullName
.ShouldBe("Debug|AnyCPU");
1968
csProject.ProjectConfigurations["Debug|Mixed Platforms"].
FullName
.ShouldBe("Release|AnyCPU");
1971
csProject.ProjectConfigurations["Debug|Win32"].
FullName
.ShouldBe("Debug|AnyCPU");
1974
csProject.ProjectConfigurations["Release|Any CPU"].
FullName
.ShouldBe("Release|AnyCPU");
1977
csProject.ProjectConfigurations["Release|Mixed Platforms"].
FullName
.ShouldBe("Release|AnyCPU");
1980
csProject.ProjectConfigurations["Release|Win32"].
FullName
.ShouldBe("Release|AnyCPU");
1985
vcProject.ProjectConfigurations["Debug|Any CPU"].
FullName
.ShouldBe("Debug|Win32");
1988
vcProject.ProjectConfigurations["Debug|Mixed Platforms"].
FullName
.ShouldBe("Debug|Win32");
1991
vcProject.ProjectConfigurations["Debug|Win32"].
FullName
.ShouldBe("Debug|Win32");
1994
vcProject.ProjectConfigurations["Release|Any CPU"].
FullName
.ShouldBe("Release|Win32");
1997
vcProject.ProjectConfigurations["Release|Mixed Platforms"].
FullName
.ShouldBe("Release|Win32");
2000
vcProject.ProjectConfigurations["Release|Win32"].
FullName
.ShouldBe("Release|Win32");
2051
webProject.ProjectConfigurations["Debug|.NET"].
FullName
.ShouldBe("Debug|.NET");
2056
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
);