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
| param($StorageAccount, $StorageKey) | |
| Start-Sleep -Milliseconds 1 | |
| function Mount-DataDisks { | |
| $disks = Get-Disk | Where-Object partitionstyle -eq 'raw' | Sort-Object number | |
| $letters = 73..89 | ForEach-Object { [char]$_ } | |
| $count = 0 |
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
| AddReferencesSettings: | |
| RecentPaths: Dictionary<String,Boolean> | |
| SolutionWatchdogSettingsKey: | |
| IsEnabled: Boolean | |
| EnableOverride: SolutionWatchdogEnableOverride | |
| RunConfigsSettings: | |
| Active: GuidIndex | |
| SkipBuildByPrimary: Boolean | |
| AutoAttach: Boolean | |
| EnvironmentSettings: |
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
| var path = @""; | |
| var allVersions = new Dictionary<string, HashSet<string>>(); | |
| foreach (var file in Directory.EnumerateFiles(path, "*.*proj", SearchOption.AllDirectories)) | |
| { | |
| var doc = XDocument.Load(file); | |
| bool hasChanges = false; | |
| foreach (var reference in doc.XPathSelectElements("//PackageReference")) | |
| { | |
| hasChanges = true; | |
| var package = reference.Attribute("Include").Value; |
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
| var path = @""; | |
| var allVersions = new Dictionary<string, HashSet<string>>(); | |
| foreach (var file in Directory.EnumerateFiles(path, "*.*proj", SearchOption.AllDirectories)) | |
| { | |
| var doc = XDocument.Load(file); | |
| bool hasChanges = false; | |
| foreach (var reference in doc.XPathSelectElements("//PackageReference")) | |
| { | |
| hasChanges = true; | |
| var package = reference.Attribute("Include").Value; |