terminal/src/cascadia/TerminalApp
Dustin L. Howett (MSFT) 8da6737d64
Switch to v5 UUIDs as profile GUIDs for the default profiles (#913)
This commit switches the GUIDs for default profiles from being randomly generated to being version 5 UUIDs. More info in #870.

## PR Checklist
* [x] Closes #870
* [x] CLA signed
* [x] Tests added/passed
* [x] Requires documentation to be updated (#883)
* [x] I've discussed this with core contributors already.

## Detailed Description of the Pull Request / Additional comments
This commit has a number of changes that seem ancillary, but they're general goodness. Let me explain:

* I've added a whole new Types test library with only two tests in
* Since UUIDv5 generation requires SHA1, we needed to take a dependency on bcrypt
* I honestly don't think we should have to link bcrypt in conhost, but LTO should take care of that
  * I considered adding a new Terminal-specific Utils/Types library, but that seemed like a waste
* The best way to link bcrypt turned out to be in line with a discussion @miniksa and I had, where we decided we both love APISets and think that the console should link against them exclusively... so I've added `onecore_apiset.lib` to the front of the link line, where it will deflect the linker away from most of the other libs automagically.

```
StartGroup: UuidTests::TestV5UuidU8String
Verify: AreEqual(uuidExpected, uuidActual)
EndGroup: UuidTests::TestV5UuidU8String [Passed]

StartGroup: UuidTests::TestV5UuidU16String
Verify: AreEqual(uuidExpected, uuidActual)
EndGroup: UuidTests::TestV5UuidU16String [Passed]
```
2019-05-21 13:29:16 -07:00
..
App.cpp Support remapping keybindings (#748) 2019-05-21 09:26:04 -05:00
App.h Added Keybindings for go up and go down page (#747) 2019-05-15 08:21:14 -05:00
App.idl Changes to be able to quit the application via exit inside a CLI prompt. (#746) 2019-05-15 07:22:16 -05:00
App.xaml Initial release of the Windows Terminal source code 2019-05-02 15:29:04 -07:00
AppKeyBindings.cpp Support remapping keybindings (#748) 2019-05-21 09:26:04 -05:00
AppKeyBindings.h Support remapping keybindings (#748) 2019-05-21 09:26:04 -05:00
AppKeyBindings.idl Support remapping keybindings (#748) 2019-05-21 09:26:04 -05:00
CascadiaSettings.cpp Switch to v5 UUIDs as profile GUIDs for the default profiles (#913) 2019-05-21 13:29:16 -07:00
CascadiaSettings.h Switch to v5 UUIDs as profile GUIDs for the default profiles (#913) 2019-05-21 13:29:16 -07:00
CascadiaSettingsSerialization.cpp Support remapping keybindings (#748) 2019-05-21 09:26:04 -05:00
ColorScheme.cpp Amend Color array to typed values (#742) 2019-05-15 11:12:00 -07:00
ColorScheme.h Initial release of the Windows Terminal source code 2019-05-02 15:29:04 -07:00
GlobalAppSettings.cpp Support remapping keybindings (#748) 2019-05-21 09:26:04 -05:00
GlobalAppSettings.h Support remapping keybindings (#748) 2019-05-21 09:26:04 -05:00
KeyChordSerialization.cpp Support remapping keybindings (#748) 2019-05-21 09:26:04 -05:00
KeyChordSerialization.h Support remapping keybindings (#748) 2019-05-21 09:26:04 -05:00
packages.config Initial release of the Windows Terminal source code 2019-05-02 15:29:04 -07:00
pch.cpp Initial release of the Windows Terminal source code 2019-05-02 15:29:04 -07:00
pch.h Initial release of the Windows Terminal source code 2019-05-02 15:29:04 -07:00
Profile.cpp Switch to v5 UUIDs as profile GUIDs for the default profiles (#913) 2019-05-21 13:29:16 -07:00
Profile.h Switch to v5 UUIDs as profile GUIDs for the default profiles (#913) 2019-05-21 13:29:16 -07:00
Tab.cpp Fix it's versus its typo. (#911) 2019-05-21 06:15:44 +00:00
Tab.h Initial release of the Windows Terminal source code 2019-05-02 15:29:04 -07:00
TerminalApp.def Initial release of the Windows Terminal source code 2019-05-02 15:29:04 -07:00
TerminalApp.vcxproj Support remapping keybindings (#748) 2019-05-21 09:26:04 -05:00