File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -16,11 +16,13 @@ $OneBranchConfig = $env:ONEBRANCH_CONFIG
16
16
if ($OneBranchConfig -eq " Debug" -and $OneBranchArch -eq " x64" )
17
17
{
18
18
xcopy / y build\bin\x64_Debug .\x64\Debug
19
+ xcopy / y build\bin\x64_Debug\Install-Extension.ps1 .\scripts\
19
20
Get-ChildItem - Path .\build\bin\x64_Debug - Recurse | Remove-Item - Force - Recurse
20
21
}
21
22
elseif ($OneBranchConfig -eq " Release" -and $OneBranchArch -eq " x64" )
22
23
{
23
24
xcopy / y build\bin\x64_Release .\x64\Release
25
+ xcopy / y build\bin\x64_Release\Install-Extension.ps1 .\scripts\
24
26
Get-ChildItem - Path .\build\bin\x64_Release - Recurse | Remove-Item - Force - Recurse
25
27
}
26
28
else
Original file line number Diff line number Diff line change 114
114
<GenerateDebugInformation >true</GenerateDebugInformation >
115
115
</Link >
116
116
<PostBuildEvent >
117
- <Command >xcopy /yie $(OutDir) $(SolutionDir)build\bin\x64_Debug</Command >
117
+ <Command >
118
+ xcopy /yie $(OutDir) $(SolutionDir)build\bin\x64_Debug
119
+ xcopy /yie $(SolutionDir)scripts\Install-Extension.ps1 $(SolutionDir)build\bin\x64_Debug\
120
+ </Command >
118
121
</PostBuildEvent >
119
122
</ItemDefinitionGroup >
120
123
<ItemDefinitionGroup Condition =" '$(Configuration)|$(Platform)'=='Release|x64' And '$(BuildOneBranch)'=='True'" >
133
136
<GenerateDebugInformation >true</GenerateDebugInformation >
134
137
</Link >
135
138
<PostBuildEvent >
136
- <Command >xcopy /yie $(OutDir) $(SolutionDir)build\bin\x64_Release</Command >
139
+ <Command >
140
+ xcopy /yie $(OutDir) $(SolutionDir)build\bin\x64_Release
141
+ xcopy /yie $(SolutionDir)scripts\Install-Extension.ps1 $(SolutionDir)build\bin\x64_Release\
142
+ </Command >
137
143
</PostBuildEvent >
138
144
</ItemDefinitionGroup >
139
145
<ItemGroup >
You can’t perform that action at this time.
0 commit comments