terminal/src/cascadia/TerminalSettingsModel/LegacyProfileGeneratorNamespaces.h
Dustin L. Howett d33ca7e8eb
From orbit, nuke the Telnet connection and all supporting infra. (#7840)
This is not going to be our plan of record for Universal going forward.

This updates the Universal configuration to 1) match non-universal and 2) switch to local applications
2020-10-09 18:59:58 +00:00

22 lines
798 B
C++

/*++
Copyright (c) Microsoft Corporation
Licensed under the MIT license.
Abstract:
- This header simply contains all the namespaces of the "legacy" dynamic profile
generators. These generators were built-in to the code before we had a proper
concept of a dynamic profile source. As such, these profiles will exist in
user's settings without a `source` attribute, and we'll need to make sure to
handle layering them specially.
Author(s):
- Mike Griese - August 2019
--*/
#pragma once
static constexpr std::wstring_view WslGeneratorNamespace{ L"Windows.Terminal.Wsl" };
static constexpr std::wstring_view AzureGeneratorNamespace{ L"Windows.Terminal.Azure" };
static constexpr std::wstring_view PowershellCoreGeneratorNamespace{ L"Windows.Terminal.PowershellCore" };