-
Notifications
You must be signed in to change notification settings - Fork 0
/
nugetpack.ps1
46 lines (31 loc) · 2.29 KB
/
nugetpack.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Deprecated. Using Azure DevOps to pack NuGet packages instead.
# Execute this in a PowerShell command console
D:
$codeRootFolderPath="D:\Source\JJs Software\JJ"
$releaseFolderPath="$($codeRootFolderPath)\Releases"
cd "$($codeRootFolderPath)\Framework\Text"
nuget pack -build JJ.Framework.Text.csproj -Prop Configuration=Release -OutputDirectory "$releaseFolderPath"
cd "$($codeRootFolderPath)\Framework\PlatformCompatibility"
nuget pack -build JJ.Framework.PlatformCompatibility.csproj -Prop Configuration=Release -OutputDirectory "$releaseFolderPath"
cd "$($codeRootFolderPath)\Framework\Common"
nuget pack -build JJ.Framework.Common.csproj -Prop Configuration=Release -OutputDirectory "$releaseFolderPath"
cd "$($codeRootFolderPath)\Framework\Reflection"
nuget pack -build JJ.Framework.Reflection.csproj -Prop Configuration=Release -OutputDirectory "$releaseFolderPath"
cd "$($codeRootFolderPath)\Framework\Exceptions"
nuget pack -build JJ.Framework.Exceptions.csproj -Prop Configuration=Release -OutputDirectory "$releaseFolderPath"
cd "$($codeRootFolderPath)\Framework\Presentation"
nuget pack -build JJ.Framework.Presentation.csproj -Prop Configuration=Release -OutputDirectory "$releaseFolderPath"
cd "$($codeRootFolderPath)\Framework\Conversion"
nuget pack -build JJ.Framework.Conversion.csproj -Prop Configuration=Release -OutputDirectory "$releaseFolderPath"
cd "$($codeRootFolderPath)\Framework\Testing"
nuget pack -build JJ.Framework.Testing.csproj -Prop Configuration=Release -OutputDirectory "$releaseFolderPath"
cd "$($codeRootFolderPath)\Framework\IO"
nuget pack -build JJ.Framework.IO.csproj -Prop Configuration=Release -OutputDirectory "$releaseFolderPath"
cd "$($codeRootFolderPath)\Framework\Collections"
nuget pack -build JJ.Framework.Collections.csproj -Prop Configuration=Release -OutputDirectory "$releaseFolderPath"
cd "$($codeRootFolderPath)\Framework\Mathematics"
nuget pack -build JJ.Framework.Mathematics.csproj -Prop Configuration=Release -OutputDirectory "$releaseFolderPath"
cd "$($codeRootFolderPath)\Framework\Xml"
nuget pack -build JJ.Framework.Xml.csproj -Prop Configuration=Release -OutputDirectory "$releaseFolderPath"
cd "$($codeRootFolderPath)\Framework\Configuration"
nuget pack -build JJ.Framework.Configuration.csproj -Prop Configuration=Release -OutputDirectory "$releaseFolderPath"