terminal/src/cascadia/TerminalApp/LegacyProfileGeneratorNamespaces.h
Michael Niksa 402b7ff0e0
Create Telnet connection type and default loopback profile for… (#3858)
For our Universal terminal for development purposes, we will use telnet to escape the universal application container and empower developers to debug/diagnose issues with their own machine on loopback to the already-elevated telnet context.
2019-12-09 11:07:08 -08:00

23 lines
890 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 TelnetGeneratorNamespace{ L"Windows.Terminal.Telnet" };
static constexpr std::wstring_view PowershellCoreGeneratorNamespace{ L"Windows.Terminal.PowershellCore" };