-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support VS2019 16.1 (AsyncPackage), drop support for VS2012 and VS2013
- Loading branch information
Tiemen Schreuder
committed
Mar 17, 2022
1 parent
23f3a6d
commit feade4a
Showing
4 changed files
with
73 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<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"> | ||
<Metadata> | ||
<Identity Id="FortranCodeNav.TS.55948bba-b407-4af9-99d4-eb4fb3cf1eec" Version="1.4" Language="en-US" Publisher="Tiemen Schreuder" /> | ||
<DisplayName>Fortran CodeNav</DisplayName> | ||
<Description xml:space="preserve">Fortran CodeNav helps you to easily jump and search through Fortran 90 code and also provides code completion (IntelliSense).</Description> | ||
<MoreInfo>https://www.youtube.com/watch?v=ApumbtDAqMM</MoreInfo> | ||
<Icon>fortran_codenav_32_nobg.png</Icon> | ||
<PreviewImage>fortran_codenav_200_nobg.png</PreviewImage> | ||
<Tags>Fortran; code completion; Intellisense; f90; f77; f70</Tags> | ||
</Metadata> | ||
<Installation> | ||
<InstallationTarget Version="[11.0,17.0]" Id="Microsoft.VisualStudio.Pro" /> | ||
<InstallationTarget Version="[11.0,17.0]" Id="Microsoft.VisualStudio.Ultimate" /> | ||
<InstallationTarget Version="[11.0,17.0]" Id="Microsoft.VisualStudio.Premium" /> | ||
<InstallationTarget Version="[11.0,17.0]" Id="Microsoft.VisualStudio.Community" /> | ||
<!--<InstallationTarget Version="[11.0,15.0)" Id="Microsoft.VisualStudio.VSWinExpress" />--> | ||
<!--<InstallationTarget Version="[11.0,15.0)" Id="Microsoft.VisualStudio.VSWinDesktopExpress" />--> | ||
</Installation> | ||
<Prerequisites> | ||
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[15.0.25904.2,17.0]" DisplayName="Visual Studio core editor" /> | ||
</Prerequisites> | ||
<Dependencies> | ||
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.5,)" /> | ||
<Dependency d:Source="Installed" Id="Microsoft.VisualStudio.MPF.11.0" DisplayName="Visual Studio MPF 11.0" Version="[11.0,12.0)" /> | ||
</Dependencies> | ||
<Assets> | ||
<Asset Type="Microsoft.VisualStudio.VsPackage" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%;PkgdefProjectOutputGroup|" /> | ||
<Asset Type="Microsoft.VisualStudio.MefComponent" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%|" /> | ||
</Assets> | ||
<Metadata> | ||
<Identity Id="FortranCodeNav.TS.55948bba-b407-4af9-99d4-eb4fb3cf1eec" Version="1.5" Language="en-US" Publisher="Tiemen Schreuder" /> | ||
<DisplayName>Fortran CodeNav</DisplayName> | ||
<Description xml:space="preserve">Fortran CodeNav helps you to easily jump and search through Fortran 90 code and also provides code completion (IntelliSense).</Description> | ||
<MoreInfo>https://www.youtube.com/watch?v=ApumbtDAqMM</MoreInfo> | ||
<Icon>fortran_codenav_32_nobg.png</Icon> | ||
<PreviewImage>fortran_codenav_200_nobg.png</PreviewImage> | ||
<Tags>Fortran; code completion; Intellisense; f90; f77; f70</Tags> | ||
</Metadata> | ||
<Installation> | ||
<InstallationTarget Version="[14.0,)" Id="Microsoft.VisualStudio.Pro" /> | ||
<InstallationTarget Version="[14.0,)" Id="Microsoft.VisualStudio.Ultimate" /> | ||
<InstallationTarget Version="[14.0,)" Id="Microsoft.VisualStudio.Premium" /> | ||
<InstallationTarget Version="[14.0,)" Id="Microsoft.VisualStudio.Community" /> | ||
<!--<InstallationTarget Version="[11.0,15.0)" Id="Microsoft.VisualStudio.VSWinExpress" />--> | ||
<!--<InstallationTarget Version="[11.0,15.0)" Id="Microsoft.VisualStudio.VSWinDesktopExpress" />--> | ||
</Installation> | ||
<Prerequisites> | ||
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[14.0,)" DisplayName="Visual Studio core editor" /> | ||
</Prerequisites> | ||
<Dependencies> | ||
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.5,)" /> | ||
<Dependency d:Source="Installed" Id="Microsoft.VisualStudio.MPF.14.0" DisplayName="Visual Studio MPF 14.0" Version="[14.0,)" /> | ||
</Dependencies> | ||
<Assets> | ||
<Asset Type="Microsoft.VisualStudio.VsPackage" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%;PkgdefProjectOutputGroup|" /> | ||
<Asset Type="Microsoft.VisualStudio.MefComponent" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%|" /> | ||
</Assets> | ||
</PackageManifest> |