Skip to content

Instantly share code, notes, and snippets.

View SaintSkeeta's full-sized avatar

Sean Holmesby SaintSkeeta

View GitHub Profile
@SaintSkeeta
SaintSkeeta / GenerateSitecoreNugetPackages.ps1
Last active December 29, 2017 20:08 — forked from asmagin/GenerateSitecoreNugetPackages.ps1
Powershell script to generate nuget packages with dependencies
param(
[string] $Major = "9",
[string] $Minor = "0",
[string] $Update = "0",
[string] $Date = "170622",
[string] $nugetPath = ".\tools\nuget.exe",
[string] $downloadsPath = "C:\\inetpub\\wwwroot\\sitecore9",
[string] $outputPath = "C:\\LocalNuGet\\Generated",
[string] $nuspecTemplate = ".\tools\package.nuspec.xml"
)