10 references to OutOfSync
Microsoft.CodeAnalysis.Features (7)
EditAndContinue\CommittedSolution.cs (5)
97/// that maches the PDB checksum are considered <see cref="DocumentState.OutOfSync"/>. 103/// A document state can only change from <see cref="DocumentState.OutOfSync"/> to <see cref="DocumentState.MatchesBuildOutput"/>. 187case DocumentState.OutOfSync: 254documentState != DocumentState.OutOfSync && 328newState = DocumentState.OutOfSync;
EditAndContinue\DebuggingSession.cs (1)
487if (oldDocumentState is CommittedSolution.DocumentState.OutOfSync or
EditAndContinue\EditSession.cs (1)
632case CommittedSolution.DocumentState.OutOfSync:
Microsoft.CodeAnalysis.Features.UnitTests (3)
EditAndContinue\EditAndContinueWorkspaceServiceTests.cs (3)
3079Assert.Equal(CommittedSolution.DocumentState.OutOfSync, state); 4606isOutOfSync ? CommittedSolution.DocumentState.OutOfSync : CommittedSolution.DocumentState.MatchesBuildOutput); 4824var debuggingSession = await StartDebuggingSessionAsync(service, solution, initialState: CommittedSolution.DocumentState.OutOfSync);