Skip to content

Commit c09ecde

Browse files
committed
Cleanup vsix
1 parent 043cef1 commit c09ecde

File tree

2 files changed

+9
-21
lines changed

2 files changed

+9
-21
lines changed

WpfAnalyzers.Vsix/WpfAnalyzers.Vsix.csproj

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,7 @@
1717
<CopyBuildOutputToOutputDirectory>false</CopyBuildOutputToOutputDirectory>
1818
<CopyOutputSymbolsToOutputDirectory>false</CopyOutputSymbolsToOutputDirectory>
1919
<VSSDKTargetPlatformRegRootSuffix>Roslyn</VSSDKTargetPlatformRegRootSuffix>
20-
</PropertyGroup>
21-
22-
<PropertyGroup Condition="'$(BuildingInsideVisualStudio)' != 'true'">
23-
<!-- This property disables extension deployment for command line builds; required for AppVeyor and the build script -->
24-
<DeployExtension>False</DeployExtension>
20+
<DeployExtension>$(BuildingInsideVisualStudio)</DeployExtension>
2521
</PropertyGroup>
2622

2723
<ItemGroup>
@@ -34,14 +30,12 @@
3430

3531
<ItemGroup>
3632
<ProjectReference Include="..\WpfAnalyzers\WpfAnalyzers.csproj" />
37-
</ItemGroup>
38-
39-
<ItemGroup>
4033
<!-- https://github.com/dotnet/sdk/issues/433 -->
41-
<ProjectReference Update="@(ProjectReference)" AdditionalProperties="TargetFramework=netstandard1.3" />
34+
<ProjectReference Update="@(ProjectReference)" AdditionalProperties="TargetFramework=netstandard2.0" />
4235
<!-- https://github.com/Microsoft/extendvs/issues/57 -->
4336
<ProjectReference Update="@(ProjectReference)" Name="%(Filename)" />
4437
</ItemGroup>
38+
4539

4640
<Import Sdk="Microsoft.NET.Sdk" Project="Sdk.targets" />
4741
<Import Project="$(VSToolsPath)\VSSDK\Microsoft.VsSDK.targets" Condition="Exists('$(VSToolsPath)\VSSDK\Microsoft.VsSDK.targets')" />
Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,19 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
33
<Metadata>
4-
<Identity Id="WpfAnalyzers.Vsix.A4A479E7-7FCE-4BA0-B1B5-3902F66DA75F" Version="1.0.0" Language="en-US" Publisher="Johan Larsson"/>
4+
<Identity Id="WpfAnalyzers.Vsix.A4A479E7-7FCE-4BA0-B1B5-3902F66DA75F" Version="3.5.3" Language="en-US" Publisher="Johan Larsson"/>
55
<DisplayName>WpfAnalyzers</DisplayName>
66
<Description xml:space="preserve">Analyzers &amp; codefixes.</Description>
77
</Metadata>
88

99
<Installation>
10-
<InstallationTarget Version="[14.0,]" Id="Microsoft.VisualStudio.Pro" />
11-
<InstallationTarget Version="[14.0,]" Id="Microsoft.VisualStudio.VSWinDesktopExpress" />
12-
<InstallationTarget Version="[14.0,]" Id="Microsoft.VisualStudio.VWDExpress" />
13-
<InstallationTarget Version="[14.0,]" Id="Microsoft.VisualStudio.VSWinExpress" />
10+
<InstallationTarget Version="[16.0,]" Id="Microsoft.VisualStudio.Community" />
1411
</Installation>
1512

16-
<Dependencies>
17-
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="4.5" />
18-
</Dependencies>
13+
<Prerequisites>
14+
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[16.0,)" DisplayName="Visual Studio core editor" />
15+
<Prerequisite Id="Microsoft.VisualStudio.Component.Roslyn.LanguageServices" Version="[16.0,)" DisplayName="Roslyn Language Services" />
16+
</Prerequisites>
1917

2018
<Assets>
2119
<Asset Type="Microsoft.VisualStudio.MefComponent" d:Source="Project" d:ProjectName="WpfAnalyzers" Path="|WpfAnalyzers|"/>
@@ -24,8 +22,4 @@
2422
<Asset Type="Microsoft.VisualStudio.Analyzer" d:Source="File" Path="Gu.Roslyn.Extensions.dll" />
2523
<Asset Type="Microsoft.VisualStudio.Assembly" d:Source="File" Path="Gu.Roslyn.Extensions.dll" />
2624
</Assets>
27-
28-
<Prerequisites>
29-
<Prerequisite Id="Microsoft.VisualStudio.Component.Roslyn.Compiler" Version="[15.0.26208.0,16.0)" DisplayName="C# and Visual Basic Roslyn compilers" />
30-
</Prerequisites>
3125
</PackageManifest>

0 commit comments

Comments
 (0)