Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit2389f94

Browse files
committed
enable publishing VSIX packages from the vs2017-rtm->microbuild-dev15-rtm branch
1 parent9d7dba6 commit2389f94

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

‎setup/publish-assets.ps1‎

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,22 @@ $ErrorActionPreference = "Stop"
2424

2525
try {
2626
$branchName=$branchName-Replace"refs/heads/"# get rid of prefix
27+
$requestUrl=""
2728

2829
switch ($branchName) {
29-
"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+
}
3036
default {
3137
Write-Host"Branch [$branchName] is not supported for publishing."
3238
exit0# non-fatal
3339
}
3440
}
3541

3642
$branchName=$branchName.Replace("/","_")# can't have slashes in the branch name
37-
$requestUrl="https://dotnet.myget.org/F/fsharp/vsix/upload"
3843
$vsix=Join-Path$binariesPath"net40\bin\VisualFSharpFull.vsix"
3944

4045
Write-Host" Uploading '$vsix' to '$requestUrl'."

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp