-
Notifications
You must be signed in to change notification settings - Fork 255
/
Copy pathsource.extension.vsixmanifest
38 lines (38 loc) · 2.91 KB
/
source.extension.vsixmanifest
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?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="Microsoft.WindowsAppSDKTemplate" Version="1.0.0.0" Language="en-US" Publisher="Microsoft Corporation" />
<DisplayName>Windows App SDK Sample Templates</DisplayName>
<Description xml:space="preserve">Windows App SDK Sample Template VSIX</Description>
<MoreInfo>https://github.com/microsoft/WindowsAppSDK-Samples/</MoreInfo>
<Preview>true</Preview>
</Metadata>
<Installation AllUsers="true" >
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[17.0, 18.0)" >
<ProductArchitecture>amd64</ProductArchitecture>
</InstallationTarget>
<InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="[17.0, 18.0)" >
<ProductArchitecture>amd64</ProductArchitecture>
</InstallationTarget>
<InstallationTarget Id="Microsoft.VisualStudio.Enterprise" Version="[17.0, 18.0)" >
<ProductArchitecture>amd64</ProductArchitecture>
</InstallationTarget>
</Installation>
<Dependencies>
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.5,)" />
</Dependencies>
<Prerequisites>
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[16.0,18.0)" DisplayName="Visual Studio core editor" />
<Prerequisite Id="Microsoft.VisualStudio.ComponentGroup.UWP.Support" Version="[16.2.29003.222,18.0)" DisplayName="Universal Windows Platform tools" />
</Prerequisites>
<Reference Id="NuPackToolsVsix.Microsoft.67e54e40-0ae3-42c5-a949-fddf5739e7a5" MinVersion="1.7.30402.9028">
<Name>NuGet Package Manager</Name>
<MoreInfoUrl>http://docs.microsoft.com/nuget/</MoreInfoUrl>
</Reference>
<Assets>
<Asset Type="Microsoft.VisualStudio.ProjectTemplate" d:Source="Project" d:ProjectName="WinUI3TemplateCppVSIX" d:TargetPath="|WinUI3TemplateCppVSIX;TemplateProjectOutputGroup|" Path="ProjectTemplates" d:VsixSubPath="ProjectTemplates" />
<Asset Type="Microsoft.VisualStudio.ProjectTemplate" d:Source="Project" d:ProjectName="WinUI3TemplateCsVSIX" d:TargetPath="|WinUI3TemplateCsVSIX;TemplateProjectOutputGroup|" Path="ProjectTemplates" d:VsixSubPath="ProjectTemplates" />
<Asset Type="Microsoft.VisualStudio.ItemTemplate" d:Source="Project" d:ProjectName="WinUI3ScenarioPageCpp" d:TargetPath="|WinUI3ScenarioPageCpp;TemplateProjectOutputGroup|" Path="ItemTemplates" d:VsixSubPath="ItemTemplates" />
<Asset Type="Microsoft.VisualStudio.ItemTemplate" d:Source="Project" d:ProjectName="WinUI3ScenarioPageCs" d:TargetPath="|WinUI3ScenarioPageCs;TemplateProjectOutputGroup|" Path="ItemTemplates" d:VsixSubPath="ItemTemplates" />
</Assets>
</PackageManifest>