Skip to content

Instantly share code, notes, and snippets.

View RobertWaite's full-sized avatar

Robert Waite RobertWaite

  • NetAtWork
  • Colorado
View GitHub Profile
@RobertWaite
RobertWaite / gist:0a1cbc8408a1b3a30017fbf3f80094e6
Created January 10, 2023 03:08
Save Time Everyday PowerShell Series Part 2 - XML manipulation to automate builds with MSBuild Command Line.
function Initialize-LibFolder
{
param(
[System.IO.FileInfo]$ProjectFolder,
[System.IO.FileInfo]$SourceAcumaticaFolder
)
$sourcePath = "$SourceAcumaticaFolder\bin"
$libFiles = dir "$ProjectFolder\lib\"
foreach($libFile in $libFiles)
{