2 instantiations of SolutionInfo
Microsoft.CodeAnalysis.Workspaces (2)
101 references to SolutionInfo
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (2)
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (42)
Microsoft.CodeAnalysis.Remote.ServiceHub (6)
Microsoft.CodeAnalysis.Remote.Workspaces (3)
Microsoft.CodeAnalysis.Workspaces (21)
Microsoft.CodeAnalysis.Workspaces.MSBuild (4)
Microsoft.CodeAnalysis.Workspaces.UnitTests (14)
SolutionTests\SolutionInfoTests.cs (12)
23Assert.Throws<ArgumentNullException>(() => SolutionInfo.Create(null, version));
24Assert.Throws<ArgumentNullException>(() => SolutionInfo.Create(solutionId, version, projects: new[] { projectInfo, null }));
34var info1 = SolutionInfo.Create(solutionId, version, projects: new[] { projectInfo });
37var info2 = SolutionInfo.Create(solutionId, version);
40var info3 = SolutionInfo.Create(solutionId, version, projects: new ProjectInfo[0]);
43var info4 = SolutionInfo.Create(solutionId, version, projects: ImmutableArray<ProjectInfo>.Empty);
53var info = SolutionInfo.Create(SolutionId.CreateNewId(), VersionStamp.Default, filePath: path);
Microsoft.VisualStudio.LanguageServices.CSharp.UnitTests (3)
Roslyn.VisualStudio.Next.UnitTests (6)