30 references to GetNewerVersion
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
Workspaces\WorkspaceTests_EditorFeatures.cs (1)
1464
var version4 = version1.
GetNewerVersion
();
Microsoft.CodeAnalysis.Workspaces (29)
Workspace\Solution\DocumentState.cs (2)
573
return textAndVersion!.Version.
GetNewerVersion
();
578
return treeAndVersion.Version.
GetNewerVersion
();
Workspace\Solution\ProjectState.cs (23)
742
=> (name == Name) ? this : WithNewerAttributes(Attributes.With(name: name, version: Version.
GetNewerVersion
()));
745
=> (filePath == FilePath) ? this : WithNewerAttributes(Attributes.With(filePath: filePath, version: Version.
GetNewerVersion
()));
748
=> (assemblyName == AssemblyName) ? this : WithNewerAttributes(Attributes.With(assemblyName: assemblyName, version: Version.
GetNewerVersion
()));
751
=> (outputFilePath == OutputFilePath) ? this : WithNewerAttributes(Attributes.With(outputPath: outputFilePath, version: Version.
GetNewerVersion
()));
754
=> (outputRefFilePath == OutputRefFilePath) ? this : WithNewerAttributes(Attributes.With(outputRefPath: outputRefFilePath, version: Version.
GetNewerVersion
()));
757
=> (info == CompilationOutputInfo) ? this : WithNewerAttributes(Attributes.With(compilationOutputInfo: info, version: Version.
GetNewerVersion
()));
760
=> (defaultNamespace == DefaultNamespace) ? this : WithNewerAttributes(Attributes.With(defaultNamespace: defaultNamespace, version: Version.
GetNewerVersion
()));
763
=> (hasAllInformation == HasAllInformation) ? this : WithNewerAttributes(Attributes.With(hasAllInformation: hasAllInformation, version: Version.
GetNewerVersion
()));
766
=> (runAnalyzers == RunAnalyzers) ? this : WithNewerAttributes(Attributes.With(runAnalyzers: runAnalyzers, version: Version.
GetNewerVersion
()));
769
=> (hasSdkCodeStyleAnalyzers == HasSdkCodeStyleAnalyzers) ? this : WithNewerAttributes(Attributes.With(hasSdkCodeStyleAnalyzers: hasSdkCodeStyleAnalyzers, version: Version.
GetNewerVersion
()));
779
projectInfo: ProjectInfo.With(attributes: Attributes.With(checksumAlgorithm: checksumAlgorithm, version: Version.
GetNewerVersion
())),
801
.WithVersion(Version.
GetNewerVersion
()));
820
projectInfo: ProjectInfo.WithParseOptions(options).WithVersion(Version.
GetNewerVersion
()),
862
return With(projectInfo: ProjectInfo.With(projectReferences: projectReferences).WithVersion(Version.
GetNewerVersion
()));
872
return With(projectInfo: ProjectInfo.With(metadataReferences: metadataReferences).WithVersion(Version.
GetNewerVersion
()));
882
return With(projectInfo: ProjectInfo.WithAnalyzerReferences(analyzerReferences).WithVersion(Version.
GetNewerVersion
()));
893
projectInfo: ProjectInfo.WithVersion(Version.
GetNewerVersion
()),
905
projectInfo: ProjectInfo.WithVersion(Version.
GetNewerVersion
()),
924
var projectInfo = ProjectInfo.WithVersion(Version.
GetNewerVersion
());
948
projectInfo: ProjectInfo.WithVersion(Version.
GetNewerVersion
()),
959
projectInfo: ProjectInfo.WithVersion(Version.
GetNewerVersion
()),
981
projectInfo: ProjectInfo.WithVersion(Version.
GetNewerVersion
()),
1055
projectInfo: ProjectInfo.WithVersion(Version.
GetNewerVersion
()),
Workspace\Solution\SolutionState.cs (2)
407
var newSolutionAttributes = SolutionAttributes.With(version: Version.
GetNewerVersion
());
473
var newSolutionAttributes = SolutionAttributes.With(version: this.Version.
GetNewerVersion
());
Workspace\Solution\TextDocumentState.cs (1)
211
return textAndVersion.Version.
GetNewerVersion
();
Workspace\Workspace_Editor.cs (1)
492
: TextAndVersion.Create(newText, version.
GetNewerVersion
(), filePath);