My previous employer kindly allowed me to opensource my work. The time has come to put this work in the public domain. The core project consisted of PowerShell scripts to add NuGet functionality to Visual Studio SQL Server database projects. My implementation was over-complicated, so I will be simplifying things. That will be my first … Continue reading New Projects
Tag: NuGet
Prototyping with PowerShell
Requirements, specification, design and implementation Requirement We have two NuGet servers. The primary server is locally hosted for the developers. The second server is an Azure DevOps NuGet feed for contractors typically working outside the firewall. A scheduled task synchronizing the two servers runs hourly, copying any new packages from the local server to the … Continue reading Prototyping with PowerShell
A NuGet List item parser – Part 2: Including Pre-release packages
In Part 1 I reorganised my NuGet source synchronization tool's code to make it testable, with the specific aim of allowing pre-release packages to be synchronized. In particular, the affected code was isolated into this function: function Parse-PackageItem { param( [string]$Package ) $idVer = $Package.Split(' ') if ($idVer.Length -eq 2) { $id = $idVer[0] [string]$ver … Continue reading A NuGet List item parser – Part 2: Including Pre-release packages