UTC: 2025-12-05 21:27
BlythMeister/chocolatey-packages
This file is automatically generated by the update_all.ps1 script using the AU module.
Update report | USING AU NEXT VERSION
| void Main() | |
| { | |
| var rootDir = @"F:\GIT\Repo"; | |
| var classicAssert = true; | |
| foreach (var projFile in Directory.GetFiles(rootDir, "*.*proj", SearchOption.AllDirectories)) | |
| { | |
| var projContent = File.ReadAllLines(projFile); | |
| if (projContent.Any(line => line.Contains("NUnit", StringComparison.InvariantCultureIgnoreCase))) | |
| { |
UTC: 2025-12-05 21:27
BlythMeister/chocolatey-packages
This file is automatically generated by the update_all.ps1 script using the AU module.
Update report | USING AU NEXT VERSION
UTC: 2025-12-06 13:15
BlythMeister/chocolatey-packages
This file is automatically generated by the update_all.ps1 script using the AU module.
| <Query Kind="Program"> | |
| <NuGetReference Prerelease="true">Octokit.GraphQL</NuGetReference> | |
| <Namespace>Octokit.GraphQL</Namespace> | |
| <Namespace>Octokit.GraphQL.Model</Namespace> | |
| <Namespace>Newtonsoft.Json</Namespace> | |
| <Namespace>System.Threading.Tasks</Namespace> | |
| </Query> | |
| async Task Main() | |
| { |
| void Main() | |
| { | |
| var teams = File.ReadAllLines(@"C:\users\chris.blyth\Desktop\Teams.txt").ToList(); | |
| var people = File.ReadAllLines(@"C:\users\chris.blyth\Desktop\People.txt").ToList(); | |
| if (teams.Count > people.Count) | |
| { | |
| var missingPeople = teams.Count - people.Count; | |
| for (int i = 0; i < missingPeople; i++) | |
| { |
| <Query Kind="Program"> | |
| <NuGetReference>Octokit</NuGetReference> | |
| <Namespace>Octokit</Namespace> | |
| <Namespace>System.Threading.Tasks</Namespace> | |
| </Query> | |
| GitHubClient githubClient; | |
| /* START SETTINGS */ | |
| string githubToken = "[TOKEN]"; |
| void Main() | |
| { | |
| var originalRepo = "[email protected]:_**_/_**_.git"; | |
| var originalRepoBranch = "master"; | |
| var newRepo = "[email protected]:_**_/_**_.git"; | |
| var newRepoBranch = "master"; | |
| var workInProgressDir = @"C:\Temp\RepoCopy"; | |
| var relativeFolderToMigrate = "src/path"; | |
| MigrateRepo(originalRepo, originalRepoBranch, newRepo, newRepoBranch, workInProgressDir, relativeFolderToMigrate); | |
| } |
| <Query Kind="Program"> | |
| <NuGetReference>NetOfficeFw.Outlook</NuGetReference> | |
| <NuGetReference>Newtonsoft.Json</NuGetReference> | |
| <Namespace>NetOffice</Namespace> | |
| <Namespace>NetOffice.OutlookApi</Namespace> | |
| <Namespace>Newtonsoft.Json</Namespace> | |
| <Namespace>System.Net</Namespace> | |
| <Namespace>NetOffice.OutlookApi.Enums</Namespace> | |
| </Query> |
| { | |
| "Id": "dfbf8776-b178-46f4-9bd2-f242c74d2551", | |
| "Name": "Reboot Machine", | |
| "Description": "Will reboot a tentacle without it noticing in a deploy", | |
| "ActionType": "Octopus.Script", | |
| "Version": 1, | |
| "CommunityActionTemplateId": null, | |
| "Packages": [], | |
| "Properties": { | |
| "Octopus.Action.Script.ScriptSource": "Inline", |
| void Main() | |
| { | |
| Run(@"C:\My\Repo\Root"); | |
| } | |
| void Run(string rootDir) | |
| { | |
| Console.WriteLine($"Starting at {DateTime.UtcNow.ToString("u")}"); | |
| Console.WriteLine($"Running against: {rootDir}"); | |
| RunPaketCommand(rootDir, "update"); |