| File: EditAndContinue\EditAndContinueErrorCode.cs | Web Access |
| Project: src\roslyn\src\Features\Core\Portable\Microsoft.CodeAnalysis.Features.csproj (Microsoft.CodeAnalysis.Features) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. namespace Microsoft.CodeAnalysis.EditAndContinue; internal enum EditAndContinueErrorCode { ErrorReadingFile = 1, CannotApplyChangesUnexpectedError = 2, // ChangesNotAppliedWhileRunning = 3, // obsolete ChangesDisallowedWhileStoppedAtException = 4, DocumentIsOutOfSyncWithDebuggee = 5, UnableToReadSourceFileOrPdb = 6, AddingTypeRuntimeCapabilityRequired = 7, UpdatingDocumentInStaleProject = 8, UpdatingUnsupportedProject = 9, ChangingMultiVersionReferences = 98, ChangingReference = 99, /// <summary> /// Base code for project setting rude edits. /// <see cref="ProjectSettingKind"/> is added to this value. /// </summary> ChangingProjectSettingBase = 100, }