You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update version of dotnet.exe used to build. This required minor tweaks to BuildProfile as the behavior for which file end up in the published output has changed (the content directory and nuspec files were no longer included in the published output)
Add a BuildDrop.ps1 file that will do a build and local publish of clurun for osx, linux/ubuntu and win7 along with any command packages in the repo.
$buildProfileScriptPath="`"$thisScriptDirectory\BuildProfile.ps1`""# Guard against spaces in the path
13
+
$sourcesRoot="$workspaceDirectory\src\clu"
14
+
15
+
if (!($dropLocation))
16
+
{
17
+
$dropLocation="$workspaceDirectory\drop"
18
+
}
19
+
20
+
if (!(Test-Path-Path $dropLocation-PathType Container))
21
+
{
22
+
mkdir "$dropLocation"
23
+
mkdir "$dropLocation\CommandRepo"
24
+
mkdir "$dropLocation\clurun"
25
+
}
26
+
27
+
28
+
29
+
if (!($excludeCommandPackages.IsPresent))
30
+
{
31
+
# Grap all command packages to build.
32
+
# We'll assume that all directories that contain a *.nuspec.template file is a command package and that the name of the package is everything leading up to .nuspec.template
0 commit comments