resourcesBefore.ps1

<#
This file loads the strings documents from the respective language folders.
This allows localizing messages and errors.
Load psd1 language files for each language you wish to support.
Partial translations are acceptable - when missing a current language message,
it will fallback to English or another available language.
#>

Import-PSFLocalizedString -Path "$($ModuleRoot)\en-us\*.psd1" -Module 'ado.core' -Language 'en-US'

enum ProjectState {
    All            # All projects regardless of state except Deleted.
    CreatePending  # Project has been queued for creation, but the process has not yet started.
    Deleted        # Project has been deleted.
    Deleting       # Project is in the process of being deleted.
    New            # Project is in the process of being created.
    Unchanged      # Project has not been changed.
    WellFormed     # Project is completely created and ready to use.
}