Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 8c02579

Browse files
committed
Fix packaging of startpage and inlinereviews vsix's
1 parent 7a64b1f commit 8c02579

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

src/GitHub.InlineReviews/GitHub.InlineReviews.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@
4141
<ErrorReport>prompt</ErrorReport>
4242
<WarningLevel>4</WarningLevel>
4343
<RunCodeAnalysis>false</RunCodeAnalysis>
44-
<CreateVsixContainer>True</CreateVsixContainer>
45-
<DeployExtension>True</DeployExtension>
44+
<CreateVsixContainer>False</CreateVsixContainer>
45+
<DeployExtension>False</DeployExtension>
4646
<IncludeDebugSymbolsInVSIXContainer>true</IncludeDebugSymbolsInVSIXContainer>
4747
<OutputPath>bin\Debug\</OutputPath>
4848
</PropertyGroup>
@@ -54,8 +54,8 @@
5454
<ErrorReport>prompt</ErrorReport>
5555
<WarningLevel>4</WarningLevel>
5656
<RunCodeAnalysis>true</RunCodeAnalysis>
57-
<CreateVsixContainer>True</CreateVsixContainer>
58-
<DeployExtension>True</DeployExtension>
57+
<CreateVsixContainer>False</CreateVsixContainer>
58+
<DeployExtension>False</DeployExtension>
5959
<OutputPath>bin\Debug\</OutputPath>
6060
</PropertyGroup>
6161
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DebugWithoutVsix|AnyCPU' ">
@@ -77,8 +77,8 @@
7777
<ErrorReport>prompt</ErrorReport>
7878
<WarningLevel>4</WarningLevel>
7979
<RunCodeAnalysis>true</RunCodeAnalysis>
80-
<CreateVsixContainer>True</CreateVsixContainer>
81-
<DeployExtension>True</DeployExtension>
80+
<CreateVsixContainer>False</CreateVsixContainer>
81+
<DeployExtension>False</DeployExtension>
8282
<OutputPath>bin\Release\</OutputPath>
8383
</PropertyGroup>
8484
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'ReleaseWithoutVsix|AnyCPU' ">

src/GitHub.StartPage/GitHub.StartPage.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939
<ErrorReport>prompt</ErrorReport>
4040
<WarningLevel>4</WarningLevel>
4141
<RunCodeAnalysis>false</RunCodeAnalysis>
42-
<CreateVsixContainer>True</CreateVsixContainer>
43-
<DeployExtension>True</DeployExtension>
42+
<CreateVsixContainer>False</CreateVsixContainer>
43+
<DeployExtension>False</DeployExtension>
4444
<IncludeDebugSymbolsInVSIXContainer>true</IncludeDebugSymbolsInVSIXContainer>
4545
<OutputPath>bin\Debug\</OutputPath>
4646
</PropertyGroup>
@@ -52,8 +52,8 @@
5252
<ErrorReport>prompt</ErrorReport>
5353
<WarningLevel>4</WarningLevel>
5454
<RunCodeAnalysis>true</RunCodeAnalysis>
55-
<CreateVsixContainer>True</CreateVsixContainer>
56-
<DeployExtension>True</DeployExtension>
55+
<CreateVsixContainer>False</CreateVsixContainer>
56+
<DeployExtension>False</DeployExtension>
5757
<OutputPath>bin\Debug\</OutputPath>
5858
</PropertyGroup>
5959
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DebugWithoutVsix|AnyCPU' ">
@@ -75,8 +75,8 @@
7575
<ErrorReport>prompt</ErrorReport>
7676
<WarningLevel>4</WarningLevel>
7777
<RunCodeAnalysis>true</RunCodeAnalysis>
78-
<CreateVsixContainer>True</CreateVsixContainer>
79-
<DeployExtension>True</DeployExtension>
78+
<CreateVsixContainer>False</CreateVsixContainer>
79+
<DeployExtension>False</DeployExtension>
8080
<OutputPath>bin\Release\</OutputPath>
8181
</PropertyGroup>
8282
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'ReleaseWithoutVsix|AnyCPU' ">

src/GitHub.VisualStudio/GitHub.VisualStudio.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -660,15 +660,15 @@
660660
<Project>{7f5ed78b-74a3-4406-a299-70cfb5885b8b}</Project>
661661
<Name>GitHub.InlineReviews</Name>
662662
<Private>True</Private>
663-
<IncludeOutputGroupsInVSIX>BuiltProjectOutputGroup;GetCopyToOutputDirectoryItems;DebugSymbolsProjectOutputGroup;</IncludeOutputGroupsInVSIX>
664-
<IncludeOutputGroupsInVSIXLocalOnly>DebugSymbolsProjectOutputGroup;</IncludeOutputGroupsInVSIXLocalOnly>
663+
<IncludeOutputGroupsInVSIX>BuiltProjectOutputGroup;GetCopyToOutputDirectoryItems;DebugSymbolsProjectOutputGroup;PkgdefProjectOutputGroup</IncludeOutputGroupsInVSIX>
664+
<IncludeOutputGroupsInVSIXLocalOnly>DebugSymbolsProjectOutputGroup;PkgdefProjectOutputGroup</IncludeOutputGroupsInVSIXLocalOnly>
665665
</ProjectReference>
666666
<ProjectReference Include="..\GitHub.StartPage\GitHub.StartPage.csproj">
667667
<Project>{50e277b8-8580-487a-8f8e-5c3b9fbf0f77}</Project>
668668
<Name>GitHub.StartPage</Name>
669669
<Private>True</Private>
670-
<IncludeOutputGroupsInVSIX>BuiltProjectOutputGroup;GetCopyToOutputDirectoryItems;DebugSymbolsProjectOutputGroup;</IncludeOutputGroupsInVSIX>
671-
<IncludeOutputGroupsInVSIXLocalOnly>DebugSymbolsProjectOutputGroup;</IncludeOutputGroupsInVSIXLocalOnly>
670+
<IncludeOutputGroupsInVSIX>BuiltProjectOutputGroup;GetCopyToOutputDirectoryItems;DebugSymbolsProjectOutputGroup;PkgdefProjectOutputGroup</IncludeOutputGroupsInVSIX>
671+
<IncludeOutputGroupsInVSIXLocalOnly>DebugSymbolsProjectOutputGroup;PkgdefProjectOutputGroup</IncludeOutputGroupsInVSIXLocalOnly>
672672
</ProjectReference>
673673
<ProjectReference Include="..\GitHub.TeamFoundation.14\GitHub.TeamFoundation.14.csproj">
674674
<Project>{161dbf01-1dbf-4b00-8551-c5c00f26720d}</Project>

0 commit comments

Comments
 (0)