Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for VS2022 #113

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
<?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="d48e8f25-661b-4970-8b66-03f051ba5fc3" Version="4.1" Language="en-US" Publisher="Mads Kristensen" />
<Identity Id="d48e8f25-661b-4970-8b66-03f051ba5fc3" Version="4.2" Language="en-US" Publisher="Mads Kristensen" />
<DisplayName>Add New File (64-bit)</DisplayName>
<Description xml:space="preserve">The fastest and easiest way to add new files to any project - including files that start with a dot</Description>
<MoreInfo>https://github.com/madskristensen/AddAnyFile</MoreInfo>
<License>Resources\LICENSE</License>
<ReleaseNotes>Added support for Visual Studio 2022</ReleaseNotes>
<Icon>Resources\logo.png</Icon>
<PreviewImage>Resources\logo.png</PreviewImage>
<Tags>file, add, template</Tags>
</Metadata>
<Installation InstalledByMsi="false">
<InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="[17.0,18.0)">
<InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="[17.0,22.0)">
<ProductArchitecture>amd64</ProductArchitecture>
</InstallationTarget>
</Installation>
Expand Down