We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
2 parents9d7dba6 +2389f94 commitccc9c7bCopy full SHA for ccc9c7b
setup/publish-assets.ps1
@@ -24,17 +24,22 @@ $ErrorActionPreference = "Stop"
24
25
try {
26
$branchName=$branchName-Replace"refs/heads/"# get rid of prefix
27
+$requestUrl=""
28
29
switch ($branchName) {
-"microbuild" { }
30
+"microbuild" {
31
+$requestUrl="https://dotnet.myget.org/F/fsharp/vsix/upload"
32
+ }
33
+"microbuild-dev15-rtm" {
34
+$requestUrl="https://dotnet.myget.org/F/fsharp-preview/vsix/upload"
35
36
default {
37
Write-Host"Branch [$branchName] is not supported for publishing."
38
exit0# non-fatal
39
}
40
41
42
$branchName=$branchName.Replace("/","_")# can't have slashes in the branch name
-$requestUrl="https://dotnet.myget.org/F/fsharp/vsix/upload"
43
$vsix=Join-Path$binariesPath"net40\bin\VisualFSharpFull.vsix"
44
45
Write-Host" Uploading '$vsix' to '$requestUrl'."