|
25 | 25 | <IsEscrowMode Condition="'$(IsEscrowMode)' == ''">false</IsEscrowMode> |
26 | 26 |
|
27 | 27 | <!-- Visual Studio Insertion Logic --> |
28 | | - <VsTargetMajorVersion Condition="'$(VsTargetMajorVersion)' == ''">$([MSBuild]::Add(11, $(MajorNuGetVersion)))</VsTargetMajorVersion> |
29 | 28 | <VsTargetBranch Condition="'$(VsTargetBranch)' == '' And '$(IsEscrowMode)' != 'true'">main</VsTargetBranch> |
30 | | - <VsTargetChannel Condition="'$(VsTargetChannel)' == '' And '$(IsEscrowMode)' != 'true'">int.$(VsTargetBranch)</VsTargetChannel> |
31 | | - <VsTargetChannelForTests Condition="'$(VsTargetChannelForTests)' == '' And '$(IsEscrowMode)' != 'true'">int.$(VsTargetBranch)</VsTargetChannelForTests> |
| 29 | + <VsTargetChannel Condition="'$(VsTargetChannel)' == '' And '$(IsEscrowMode)' != 'true'">int.main</VsTargetChannel> |
32 | 30 |
|
33 | 31 | <!-- NuGet SDK VS package Semantic Version --> |
| 32 | + <VsTargetMajorVersion Condition="'$(VsTargetMajorVersion)' == ''">$([MSBuild]::Add(11, $(MajorNuGetVersion)))</VsTargetMajorVersion> |
34 | 33 | <NuGetSdkVsSemanticVersion>$(VsTargetMajorVersion).$(MinorNuGetVersion).$(PatchNuGetVersion)</NuGetSdkVsSemanticVersion> |
35 | 34 |
|
36 | | - <!-- This branches are used for creating insertion PRs --> |
37 | | - <VsTargetBranch Condition="'$(VsTargetBranch)' == '' And '$(IsEscrowMode)' == 'true'">rel/d$(VsTargetMajorVersion).$(MinorNuGetVersion)</VsTargetBranch> |
38 | | - <VsTargetChannel Condition="'$(VsTargetChannel)' == '' And '$(IsEscrowMode)' == 'true'">int.d$(VsTargetMajorVersion).$(MinorNuGetVersion)</VsTargetChannel> |
39 | | - <!-- Run Apex/E2E tests on the target release branch --> |
40 | | - <VsTargetChannelForTests Condition="'$(VsTargetChannelForTests)' == '' And '$(IsEscrowMode)' == 'true'">$(VsTargetChannel)</VsTargetChannelForTests> |
| 35 | + <!-- These branches are used for creating insertion PRs --> |
| 36 | + <VsTargetBranch Condition="'$(VsTargetBranch)' == '' And '$(IsEscrowMode)' == 'true'">rel/insiders</VsTargetBranch> |
| 37 | + <VsTargetChannel Condition="'$(VsTargetChannel)' == '' And '$(IsEscrowMode)' == 'true'">insiders</VsTargetChannel> |
| 38 | + |
| 39 | + <!-- Run Apex/E2E tests on the target branch --> |
| 40 | + <VsTargetChannelForTests Condition="'$(VsTargetChannelForTests)' == ''">$(VsTargetChannel)</VsTargetChannelForTests> |
41 | 41 | </PropertyGroup> |
42 | 42 |
|
43 | 43 | <PropertyGroup Condition=" '$(PreReleaseVersion)' == '' "> |
|
0 commit comments