-
Chocolatey https://chocolatey.org/install
iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) -
Hub https://github.com/github/hub
choco install hub -
posh-git https://github.com/dahlbyk/posh-git
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "requirements": [ | |
| { | |
| "name": "Windows 10 Fall Creators Update", | |
| "additionalInformation": "build 16299 or later", | |
| "checks": [ | |
| { | |
| "checkType": "MinimumRegistryValue", | |
| "registryHive": "LocalMachine", | |
| "registryKey": "SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <ControlTemplate x:Key="InAppNotificationDropShadowControlTemplate"> | |
| <Grid> | |
| <VisualStateManager.VisualStateGroups> | |
| <VisualStateGroup x:Name="State"> | |
| <VisualState x:Name="Collapsed"> | |
| <Storyboard> | |
| <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.RenderTransform).(CompositeTransform.TranslateY)" Storyboard.TargetName="RootGrid"> | |
| <EasingDoubleKeyFrame KeyTime="0" Value="0"/> | |
| <EasingDoubleKeyFrame KeyTime="0:0:0.1" Value="100"/> | |
| </DoubleAnimationUsingKeyFrames> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Style x:Key="ListViewItemStyle1" TargetType="ListViewItem"> | |
| <Setter Property="Foreground" Value="{ThemeResource SystemControlForegroundBaseHighBrush}" /> | |
| <Setter Property="Background" Value="Transparent" /> | |
| <Setter Property="Padding" Value="0" /> | |
| <Setter Property="MinHeight" Value="0" /> | |
| <Setter Property="MinWidth" Value="0" /> | |
| <Setter Property="Margin" Value="0,1" /> | |
| <Setter Property="UseSystemFocusVisuals" Value="True" /> | |
| <Setter Property="HorizontalContentAlignment" Value="Stretch" /> | |
| <Setter Property="VerticalContentAlignment" Value="Stretch" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Page | |
| x:Class="App3.MainPage" | |
| xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
| xmlns:local="using:App3" | |
| xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | |
| xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | |
| xmlns:controls="using:Microsoft.Toolkit.Uwp.UI.Controls" | |
| xmlns:animations="using:Microsoft.Toolkit.Uwp.UI.Animations" | |
| mc:Ignorable="d"> |