Skip to content

Commit 877d2e4

Browse files
author
Paul Schaeflein
committed
Update README
1 parent 2865d99 commit 877d2e4

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

README.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ To make the module auto-load, add the Import-Module line to your [PowerShell pro
3939

4040
MagicTooltips is configured by setting a global variables in your [PowerShell profile](#powershell-profile). Below is a sample showing all of the possible settings and their default values.
4141

42+
> **NOTE:** v2 Breaking change
43+
>
44+
> The Azure provider has been separated into AzCLI and AzPwsh.
4245
4346
```pwsh
4447
$global:MagicTooltipsSettings = @{
@@ -59,12 +62,18 @@ $global:MagicTooltipsSettings = @{
5962
BgColor = ""
6063
Template = "\uf8c5 {value}"
6164
}
62-
Azure = @{
65+
AzCLI = @{
6366
Commands = "az,terraform,pulumi,terragrunt"
6467
FgColor = "#3A96DD"
6568
BgColor = ""
6669
Template = "\ufd03 {value}"
6770
}
71+
AzPwsh = @{
72+
NounPrefixes = "az"
73+
FgColor = "#3A96DD"
74+
BgColor = ""
75+
Template = "\ufd03 {value}"
76+
}
6877
Kubernetes = @{
6978
Commands = "kubectl,helm,kubens,kubectx,oc,istioctl,kogito,k9s,helmfile"
7079
FgColor = "#AE5FD6"

src/Directory.Build.props

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
2-
<Sdk Name="DotNet.ReproducibleBuilds.Isolated" Version="0.1.64" />
2+
<Sdk Name="DotNet.ReproducibleBuilds.Isolated" Version="1.1.1" />
33
<ItemGroup>
4-
<PackageReference Include="DotNet.ReproducibleBuilds" Version="0.1.64" PrivateAssets="All"/>
4+
<PackageReference Include="DotNet.ReproducibleBuilds" Version="1.1.1" PrivateAssets="All"/>
55
</ItemGroup>
66
</Project>

0 commit comments

Comments
 (0)