10 references to OutOfSync
Microsoft.CodeAnalysis.Features (7)
EditAndContinue\CommittedSolution.cs (5)
95
/// that maches the PDB checksum are considered <see cref="DocumentState.
OutOfSync
"/>.
101
/// A document state can only change from <see cref="DocumentState.
OutOfSync
"/> to <see cref="DocumentState.MatchesBuildOutput"/>.
190
case DocumentState.
OutOfSync
:
257
documentState != DocumentState.
OutOfSync
&&
331
newState = DocumentState.
OutOfSync
;
EditAndContinue\DebuggingSession.cs (1)
474
if (oldDocumentState is CommittedSolution.DocumentState.
OutOfSync
or
EditAndContinue\EditSession.cs (1)
571
case CommittedSolution.DocumentState.
OutOfSync
:
Microsoft.CodeAnalysis.Features.UnitTests (3)
EditAndContinue\EditAndContinueWorkspaceServiceTests.cs (3)
2434
Assert.Equal(CommittedSolution.DocumentState.
OutOfSync
, state);
3967
isOutOfSync ? CommittedSolution.DocumentState.
OutOfSync
: CommittedSolution.DocumentState.MatchesBuildOutput);
4185
var debuggingSession = await StartDebuggingSessionAsync(service, solution, initialState: CommittedSolution.DocumentState.
OutOfSync
);