15 references to Attributes
Microsoft.CodeAnalysis.Features (2)
EditAndContinue\DebuggingSession.cs (1)
500
EditSession.Telemetry.LogRudeEditDiagnostics(analysis.RudeEdits, project.State.
Attributes
.TelemetryId);
EditAndContinue\EditSession.cs (1)
1027
Telemetry.LogRudeEditDiagnostics(analysis.RudeEdits, newProject.State.
Attributes
.TelemetryId);
Microsoft.CodeAnalysis.Workspaces (13)
Workspace\Solution\ProjectState.cs (12)
727
Debug.Assert(attributes.Version !=
Attributes
.Version);
733
=> (name == Name) ? this : WithNewerAttributes(
Attributes
.With(name: name, version: Version.GetNewerVersion()));
736
=> (filePath == FilePath) ? this : WithNewerAttributes(
Attributes
.With(filePath: filePath, version: Version.GetNewerVersion()));
739
=> (assemblyName == AssemblyName) ? this : WithNewerAttributes(
Attributes
.With(assemblyName: assemblyName, version: Version.GetNewerVersion()));
742
=> (outputFilePath == OutputFilePath) ? this : WithNewerAttributes(
Attributes
.With(outputPath: outputFilePath, version: Version.GetNewerVersion()));
745
=> (outputRefFilePath == OutputRefFilePath) ? this : WithNewerAttributes(
Attributes
.With(outputRefPath: outputRefFilePath, version: Version.GetNewerVersion()));
748
=> (info == CompilationOutputInfo) ? this : WithNewerAttributes(
Attributes
.With(compilationOutputInfo: info, version: Version.GetNewerVersion()));
751
=> (defaultNamespace == DefaultNamespace) ? this : WithNewerAttributes(
Attributes
.With(defaultNamespace: defaultNamespace, version: Version.GetNewerVersion()));
754
=> (hasAllInformation == HasAllInformation) ? this : WithNewerAttributes(
Attributes
.With(hasAllInformation: hasAllInformation, version: Version.GetNewerVersion()));
757
=> (runAnalyzers == RunAnalyzers) ? this : WithNewerAttributes(
Attributes
.With(runAnalyzers: runAnalyzers, version: Version.GetNewerVersion()));
760
=> (hasSdkCodeStyleAnalyzers == HasSdkCodeStyleAnalyzers) ? this : WithNewerAttributes(
Attributes
.With(hasSdkCodeStyleAnalyzers: hasSdkCodeStyleAnalyzers, version: Version.GetNewerVersion()));
770
projectInfo: ProjectInfo.With(attributes:
Attributes
.With(checksumAlgorithm: checksumAlgorithm, version: Version.GetNewerVersion())),
Workspace\Workspace.cs (1)
2059
project.State.
Attributes
.With(version: VersionStamp.Create()),