27 references to Version
Microsoft.CodeAnalysis.Workspaces (27)
Workspace\Solution\Project.cs (1)
550
public VersionStamp Version => State.
Version
;
Workspace\Solution\ProjectState.cs (24)
612
return docVersion.GetNewerVersion(this.
Version
);
723
=> (name == Name) ? this : WithNewerAttributes(Attributes.With(name: name, version:
Version
.GetNewerVersion()));
726
=> (filePath == FilePath) ? this : WithNewerAttributes(Attributes.With(filePath: filePath, version:
Version
.GetNewerVersion()));
729
=> (assemblyName == AssemblyName) ? this : WithNewerAttributes(Attributes.With(assemblyName: assemblyName, version:
Version
.GetNewerVersion()));
732
=> (outputFilePath == OutputFilePath) ? this : WithNewerAttributes(Attributes.With(outputPath: outputFilePath, version:
Version
.GetNewerVersion()));
735
=> (outputRefFilePath == OutputRefFilePath) ? this : WithNewerAttributes(Attributes.With(outputRefPath: outputRefFilePath, version:
Version
.GetNewerVersion()));
738
=> (info == CompilationOutputInfo) ? this : WithNewerAttributes(Attributes.With(compilationOutputInfo: info, version:
Version
.GetNewerVersion()));
741
=> (defaultNamespace == DefaultNamespace) ? this : WithNewerAttributes(Attributes.With(defaultNamespace: defaultNamespace, version:
Version
.GetNewerVersion()));
744
=> (hasAllInformation == HasAllInformation) ? this : WithNewerAttributes(Attributes.With(hasAllInformation: hasAllInformation, version:
Version
.GetNewerVersion()));
747
=> (runAnalyzers == RunAnalyzers) ? this : WithNewerAttributes(Attributes.With(runAnalyzers: runAnalyzers, version:
Version
.GetNewerVersion()));
750
=> (hasSdkCodeStyleAnalyzers == HasSdkCodeStyleAnalyzers) ? this : WithNewerAttributes(Attributes.With(hasSdkCodeStyleAnalyzers: hasSdkCodeStyleAnalyzers, version:
Version
.GetNewerVersion()));
760
projectInfo: ProjectInfo.With(attributes: Attributes.With(checksumAlgorithm: checksumAlgorithm, version:
Version
.GetNewerVersion())),
782
.WithVersion(
Version
.GetNewerVersion()));
801
projectInfo: ProjectInfo.WithParseOptions(options).WithVersion(
Version
.GetNewerVersion()),
843
return With(projectInfo: ProjectInfo.With(projectReferences: projectReferences).WithVersion(
Version
.GetNewerVersion()));
853
return With(projectInfo: ProjectInfo.With(metadataReferences: metadataReferences).WithVersion(
Version
.GetNewerVersion()));
863
return With(projectInfo: ProjectInfo.WithAnalyzerReferences(analyzerReferences).WithVersion(
Version
.GetNewerVersion()));
874
projectInfo: ProjectInfo.WithVersion(
Version
.GetNewerVersion()),
886
projectInfo: ProjectInfo.WithVersion(
Version
.GetNewerVersion()),
905
var projectInfo = ProjectInfo.WithVersion(
Version
.GetNewerVersion());
929
projectInfo: ProjectInfo.WithVersion(
Version
.GetNewerVersion()),
940
projectInfo: ProjectInfo.WithVersion(
Version
.GetNewerVersion()),
962
projectInfo: ProjectInfo.WithVersion(
Version
.GetNewerVersion()),
1036
projectInfo: ProjectInfo.WithVersion(
Version
.GetNewerVersion()),
Workspace\Solution\SolutionCompilationState.RegularCompilationTracker.cs (1)
1042
var projVersion = projectState.
Version
;
Workspace\Solution\SolutionState.cs (1)
282
latestVersion = project.
Version
.GetNewerVersion(latestVersion);