-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathPublishAll.ps1
22 lines (17 loc) · 1.08 KB
/
PublishAll.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Set Working Directory
Split-Path $MyInvocation.MyCommand.Path | Push-Location
[Environment]::CurrentDirectory = $PWD
./Publish.ps1 -ProjectPath "Riders.Tweakbox/Riders.Tweakbox.csproj" `
-PackageName "Riders.Tweakbox" `
-PublishOutputDir "Publish/ToUpload/Tweakbox" `
-MetadataFileName "Riders.Tweakbox.ReleaseMetadata.json" `
-IgnoreRegexes ".*\.json .*\.nuspec Riders\.Tweakbox\.ReleaseMetadata\.json Configurations\*" `
./Publish.ps1 -ProjectPath "Riders.Tweakbox.CharacterPack.DX/Riders.Tweakbox.CharacterPack.DX.csproj" `
-PackageName "Riders.Tweakbox.CharacterPack.DX" `
-PublishOutputDir "Publish/ToUpload/CharactersDX" `
-MetadataFileName "Riders.Tweakbox.CharacterPack.DX.ReleaseMetadata.json" `
./Publish.ps1 -ProjectPath "Riders.Tweakbox.Gearpack/Riders.Tweakbox.Gearpack.csproj" `
-PackageName "Riders.Tweakbox.Gearpack" `
-PublishOutputDir "Publish/ToUpload/GearPack" `
-MetadataFileName "Riders.Tweakbox.Gearpack.ReleaseMetadata.json" `
Pop-Location