Skip to content

Commit fbca8be

Browse files
authored
Disable building the VSIX in 2.2 by default (#508)
We don't release the UserSecrets VSIX from this branch
1 parent bda375e commit fbca8be

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build/VSIX.targets

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<Project>
22
<PropertyGroup>
3-
<BuildVSIX Condition="'$(BuildVSIX)' ==''">true</BuildVSIX>
3+
<!-- Don't build the VSIX by default in this branch anymore. You can still build the fix by adding /p:BuildVSIX=true. -->
4+
<BuildVSIX Condition="'$(BuildVSIX)' ==''">false</BuildVSIX>
45
<RestoreDependsOn Condition="'$(OS)'=='Windows_NT' AND '$(BuildVSIX)' == 'true'">$(RestoreDependsOn);RestoreVSIX</RestoreDependsOn>
56
<PackageDependsOn Condition="'$(OS)'=='Windows_NT' AND '$(BuildVSIX)' == 'true'">$(PackageDependsOn);PackageVSIX</PackageDependsOn>
67
<GetArtifactInfoDependsOn Condition="'$(OS)'=='Windows_NT' AND '$(BuildVSIX)' == 'true'">$(GetArtifactInfoDependsOn);GetVSIXArtifactInfo</GetArtifactInfoDependsOn>

0 commit comments

Comments
 (0)