Skip to content

Commit 4053724

Browse files
kythantDefaultRyan
andauthored
merge (#1197)
Co-authored-by: Ryan Shepherd <[email protected]>
1 parent 01fbb3a commit 4053724

28 files changed

Lines changed: 166 additions & 127 deletions

dev/VSIX/Directory.Build.targets

Lines changed: 28 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
<OriginalNugetRepositoryId>$(_tempVsTemplateNugetRepositoryId)</OriginalNugetRepositoryId>
7878
<!-- 'ExperimentalNugetRepositoryId' needs to match the value set by the XmlPoke query for
7979
"/ns:PackageManifest/ns:Metadata/ns:Identity/@Id" in Extension\WindowsAppSDK.Extension.csproj -->
80-
<ExperimentalNugetRepositoryId>$(_tempVsTemplateNugetRepositoryId).Experimental</ExperimentalNugetRepositoryId>
80+
<ExperimentalNugetRepositoryId>$(_tempVsTemplateNugetRepositoryId).Preview</ExperimentalNugetRepositoryId>
8181
</AllVSTemplates>
8282
</ItemGroup>
8383

@@ -108,6 +108,9 @@
108108
<XmlPoke XmlInputPath="%(AllVSTemplates.Identity)"
109109
Query="/ns:VSTemplate/ns:WizardData/ns:packages/ns:package[@id='Microsoft.WindowsAppSDK.WinUI']/@version"
110110
Value="$(WindowsAppSDKVersion)" Namespaces="&lt;Namespace Prefix='ns' Uri='http://schemas.microsoft.com/developer/vstemplate/2005' /&gt;" />
111+
<XmlPoke XmlInputPath="%(AllVSTemplates.Identity)"
112+
Query="/ns:VSTemplate/ns:WizardData/ns:packages/ns:package[@id='Microsoft.WindowsAppSDK.InteractiveExperiences']/@version"
113+
Value="$(WindowsAppSDKVersion)" Namespaces="&lt;Namespace Prefix='ns' Uri='http://schemas.microsoft.com/developer/vstemplate/2005' /&gt;" />
111114

112115
<!-- Update Assets manifest with actual Nuget package filenames -->
113116
<XmlPoke XmlInputPath="%(AllVSTemplates.Identity)"
@@ -125,22 +128,28 @@
125128
<XmlPoke XmlInputPath="%(AllVSTemplates.Identity)"
126129
Query="/ns:VSTemplate/ns:WizardData/ns:Assets/ns:Asset[@Type='Microsoft.WindowsAppSDK.WinUI.nupkg']/@Path"
127130
Value="Microsoft.WindowsAppSDK.WinUI.$(WindowsAppSDKVersion).nupkg" Namespaces="&lt;Namespace Prefix='ns' Uri='http://schemas.microsoft.com/developer/vstemplate/2005' /&gt;" />
131+
<XmlPoke XmlInputPath="%(AllVSTemplates.Identity)"
132+
Query="/ns:VSTemplate/ns:WizardData/ns:Assets/ns:Asset[@Type='Microsoft.WindowsAppSDK.InteractiveExperiences.nupkg']/@Path"
133+
Value="Microsoft.WindowsAppSDK.InteractiveExperiences.$(WindowsAppSDKVersion).nupkg" Namespaces="&lt;Namespace Prefix='ns' Uri='http://schemas.microsoft.com/developer/vstemplate/2005' /&gt;" />
128134

129135
<!-- Update custom parameters passed into subtemplates -->
130136
<XmlPoke XmlInputPath="%(AllVSTemplates.Identity)"
131137
Query="/ns:VSTemplate/ns:TemplateContent/ns:CustomParameters/ns:CustomParameter[@Name='$CppWinRTVersion$']/@Value"
132138
Value="$(CppWinRTVersion)" Namespaces="&lt;Namespace Prefix='ns' Uri='http://schemas.microsoft.com/developer/vstemplate/2005' /&gt;" />
133139
<XmlPoke XmlInputPath="%(AllVSTemplates.Identity)"
134-
Query="/ns:VSTemplate/ns:TemplateContent/ns:CustomParameters/ns:CustomParameter[@Name='$WindowsAppSdkNupkgVersion$']/@Value"
140+
Query="/ns:VSTemplate/ns:TemplateContent/ns:CustomParameters/ns:CustomParameter[@Name='$WindowsAppSDKNupkgVersion$']/@Value"
141+
Value="$(WindowsAppSDKVersion)" Namespaces="&lt;Namespace Prefix='ns' Uri='http://schemas.microsoft.com/developer/vstemplate/2005' /&gt;" />
142+
<XmlPoke XmlInputPath="%(AllVSTemplates.Identity)"
143+
Query="/ns:VSTemplate/ns:TemplateContent/ns:CustomParameters/ns:CustomParameter[@Name='$WindowsAppSDKFoundationNupkgVersion$']/@Value"
135144
Value="$(WindowsAppSDKVersion)" Namespaces="&lt;Namespace Prefix='ns' Uri='http://schemas.microsoft.com/developer/vstemplate/2005' /&gt;" />
136145
<XmlPoke XmlInputPath="%(AllVSTemplates.Identity)"
137-
Query="/ns:VSTemplate/ns:TemplateContent/ns:CustomParameters/ns:CustomParameter[@Name='$WindowsAppSdkFoundationNupkgVersion$']/@Value"
146+
Query="/ns:VSTemplate/ns:TemplateContent/ns:CustomParameters/ns:CustomParameter[@Name='$WindowsAppSDKDWriteNupkgVersion$']/@Value"
138147
Value="$(WindowsAppSDKVersion)" Namespaces="&lt;Namespace Prefix='ns' Uri='http://schemas.microsoft.com/developer/vstemplate/2005' /&gt;" />
139148
<XmlPoke XmlInputPath="%(AllVSTemplates.Identity)"
140-
Query="/ns:VSTemplate/ns:TemplateContent/ns:CustomParameters/ns:CustomParameter[@Name='$WindowsAppSdkDWriteNupkgVersion$']/@Value"
149+
Query="/ns:VSTemplate/ns:TemplateContent/ns:CustomParameters/ns:CustomParameter[@Name='$WindowsAppSDKWinUINupkgVersion$']/@Value"
141150
Value="$(WindowsAppSDKVersion)" Namespaces="&lt;Namespace Prefix='ns' Uri='http://schemas.microsoft.com/developer/vstemplate/2005' /&gt;" />
142151
<XmlPoke XmlInputPath="%(AllVSTemplates.Identity)"
143-
Query="/ns:VSTemplate/ns:TemplateContent/ns:CustomParameters/ns:CustomParameter[@Name='$WindowsAppSdkWinUINupkgVersion$']/@Value"
152+
Query="/ns:VSTemplate/ns:TemplateContent/ns:CustomParameters/ns:CustomParameter[@Name='$WindowsAppSDKInteractiveExperiencesNupkgVersion$']/@Value"
144153
Value="$(WindowsAppSDKVersion)" Namespaces="&lt;Namespace Prefix='ns' Uri='http://schemas.microsoft.com/developer/vstemplate/2005' /&gt;" />
145154

146155
<!-- Update .vstemplate with Experimental display name if necessary -->
@@ -176,7 +185,7 @@
176185
DependsOnTargets="PrepareForVsTemplateUpdates"
177186
Condition="'@(AllVSTemplates)' != ''">
178187
<PropertyGroup>
179-
<DefaultVersion>1.0.0</DefaultVersion>
188+
<DefaultVersion>FIXME-Verify-Directory.Build.Targets-XmlPoke-Queries</DefaultVersion>
180189
</PropertyGroup>
181190

182191
<XmlPoke XmlInputPath="%(AllVSTemplates.Identity)"
@@ -194,6 +203,9 @@
194203
<XmlPoke XmlInputPath="%(AllVSTemplates.Identity)"
195204
Query="/ns:VSTemplate/ns:WizardData/ns:packages/ns:package[@id='Microsoft.WindowsAppSDK.WinUI']/@version"
196205
Value="$(DefaultVersion)" Namespaces="&lt;Namespace Prefix='ns' Uri='http://schemas.microsoft.com/developer/vstemplate/2005' /&gt;" />
206+
<XmlPoke XmlInputPath="%(AllVSTemplates.Identity)"
207+
Query="/ns:VSTemplate/ns:WizardData/ns:packages/ns:package[@id='Microsoft.WindowsAppSDK.InteractiveExperiences']/@version"
208+
Value="$(DefaultVersion)" Namespaces="&lt;Namespace Prefix='ns' Uri='http://schemas.microsoft.com/developer/vstemplate/2005' /&gt;" />
197209

198210
<XmlPoke XmlInputPath="%(AllVSTemplates.Identity)"
199211
Query="/ns:VSTemplate/ns:WizardData/ns:Assets/ns:Asset[@Type='Microsoft.Windows.CppWinRT.nupkg']/@Path"
@@ -210,21 +222,27 @@
210222
<XmlPoke XmlInputPath="%(AllVSTemplates.Identity)"
211223
Query="/ns:VSTemplate/ns:WizardData/ns:Assets/ns:Asset[@Type='Microsoft.WindowsAppSDK.WinUI.nupkg']/@Path"
212224
Value="Microsoft.WindowsAppSDK.WinUI.$(DefaultVersion).nupkg" Namespaces="&lt;Namespace Prefix='ns' Uri='http://schemas.microsoft.com/developer/vstemplate/2005' /&gt;" />
225+
<XmlPoke XmlInputPath="%(AllVSTemplates.Identity)"
226+
Query="/ns:VSTemplate/ns:WizardData/ns:Assets/ns:Asset[@Type='Microsoft.WindowsAppSDK.InteractiveExperiences.nupkg']/@Path"
227+
Value="Microsoft.WindowsAppSDK.InteractiveExperiences.$(DefaultVersion).nupkg" Namespaces="&lt;Namespace Prefix='ns' Uri='http://schemas.microsoft.com/developer/vstemplate/2005' /&gt;" />
213228

214229
<XmlPoke XmlInputPath="%(AllVSTemplates.Identity)"
215230
Query="/ns:VSTemplate/ns:TemplateContent/ns:CustomParameters/ns:CustomParameter[@Name='$CppWinRTVersion$']/@Value"
216231
Value="$(DefaultVersion)" Namespaces="&lt;Namespace Prefix='ns' Uri='http://schemas.microsoft.com/developer/vstemplate/2005' /&gt;" />
217232
<XmlPoke XmlInputPath="%(AllVSTemplates.Identity)"
218-
Query="/ns:VSTemplate/ns:TemplateContent/ns:CustomParameters/ns:CustomParameter[@Name='$WindowsAppSdkNupkgVersion$']/@Value"
233+
Query="/ns:VSTemplate/ns:TemplateContent/ns:CustomParameters/ns:CustomParameter[@Name='$WindowsAppSDKNupkgVersion$']/@Value"
234+
Value="$(DefaultVersion)" Namespaces="&lt;Namespace Prefix='ns' Uri='http://schemas.microsoft.com/developer/vstemplate/2005' /&gt;" />
235+
<XmlPoke XmlInputPath="%(AllVSTemplates.Identity)"
236+
Query="/ns:VSTemplate/ns:TemplateContent/ns:CustomParameters/ns:CustomParameter[@Name='$WindowsAppSDKFoundationNupkgVersion$']/@Value"
219237
Value="$(DefaultVersion)" Namespaces="&lt;Namespace Prefix='ns' Uri='http://schemas.microsoft.com/developer/vstemplate/2005' /&gt;" />
220238
<XmlPoke XmlInputPath="%(AllVSTemplates.Identity)"
221-
Query="/ns:VSTemplate/ns:TemplateContent/ns:CustomParameters/ns:CustomParameter[@Name='$WindowsAppSdkFoundationNupkgVersion$']/@Value"
239+
Query="/ns:VSTemplate/ns:TemplateContent/ns:CustomParameters/ns:CustomParameter[@Name='$WindowsAppSDKDWriteNupkgVersion$']/@Value"
222240
Value="$(DefaultVersion)" Namespaces="&lt;Namespace Prefix='ns' Uri='http://schemas.microsoft.com/developer/vstemplate/2005' /&gt;" />
223241
<XmlPoke XmlInputPath="%(AllVSTemplates.Identity)"
224-
Query="/ns:VSTemplate/ns:TemplateContent/ns:CustomParameters/ns:CustomParameter[@Name='$WindowsAppSdkDWriteNupkgVersion$']/@Value"
242+
Query="/ns:VSTemplate/ns:TemplateContent/ns:CustomParameters/ns:CustomParameter[@Name='$WindowsAppSDKWinUINupkgVersion$']/@Value"
225243
Value="$(DefaultVersion)" Namespaces="&lt;Namespace Prefix='ns' Uri='http://schemas.microsoft.com/developer/vstemplate/2005' /&gt;" />
226244
<XmlPoke XmlInputPath="%(AllVSTemplates.Identity)"
227-
Query="/ns:VSTemplate/ns:TemplateContent/ns:CustomParameters/ns:CustomParameter[@Name='$WindowsAppSdkWinUINupkgVersion$']/@Value"
245+
Query="/ns:VSTemplate/ns:TemplateContent/ns:CustomParameters/ns:CustomParameter[@Name='$WindowsAppSDKInteractiveExperiencesNupkgVersion$']/@Value"
228246
Value="$(DefaultVersion)" Namespaces="&lt;Namespace Prefix='ns' Uri='http://schemas.microsoft.com/developer/vstemplate/2005' /&gt;" />
229247

230248
<XmlPoke

dev/VSIX/Extension/WindowsAppSDK.Extension.csproj

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
<ContentNugetPackages Include="$(PkgMicrosoft_WindowsAppSDK_Foundation)\*.nupkg" />
3838
<ContentNugetPackages Include="$(PkgMicrosoft_WindowsAppSDK_DWrite)\*.nupkg" />
3939
<ContentNugetPackages Include="$(PkgMicrosoft_WindowsAppSDK_WinUI)\*.nupkg" />
40+
<ContentNugetPackages Include="$(PkgMicrosoft_WindowsAppSDK_InteractiveExperiences)\*.nupkg" />
4041
<Content Include="@(ContentNugetPackages)">
4142
<IncludeInVSIX>true</IncludeInVSIX>
4243
<VSIXSubPath>Packages</VSIXSubPath>
@@ -79,6 +80,9 @@
7980
<PackageReference Include="Microsoft.WindowsAppSDK.WinUI" Version="[$(WindowsAppSDKVersion)]" GeneratePathProperty="true">
8081
<ExcludeAssets>All</ExcludeAssets>
8182
</PackageReference>
83+
<PackageReference Include="Microsoft.WindowsAppSDK.InteractiveExperiences" Version="[$(WindowsAppSDKVersion)]" GeneratePathProperty="true">
84+
<ExcludeAssets>All</ExcludeAssets>
85+
</PackageReference>
8286
</ItemGroup>
8387
<ItemGroup>
8488
<ProjectReference Include="..\ItemTemplates\Desktop\CSharp\BlankWindow\WinUI.Desktop.Cs.BlankWindow.csproj">
@@ -223,7 +227,7 @@
223227
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
224228
<IncludeOutputGroupsInVSIX>TemplateProjectOutputGroup%3b</IncludeOutputGroupsInVSIX>
225229
</ProjectReference>
226-
<ProjectReference Include="..\ProjectTemplates\Desktop\CppWinRT\SingleProjectPackagedApp\WinUI.Desktop.CppWinRT.SingleProjectPackagedApp.csproj">
230+
<!-- <ProjectReference Include="..\ProjectTemplates\Desktop\CppWinRT\SingleProjectPackagedApp\WinUI.Desktop.CppWinRT.SingleProjectPackagedApp.csproj">
227231
<Project>{E54D1AD4-E935-479D-8A69-FC073E4DB33D}</Project>
228232
<Name>WinUI.Desktop.CppWinRT.SingleProjectPackagedApp</Name>
229233
<VSIXSubPath>ProjectTemplates</VSIXSubPath>
@@ -236,7 +240,7 @@
236240
<VSIXSubPath>ProjectTemplates</VSIXSubPath>
237241
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
238242
<IncludeOutputGroupsInVSIX>TemplateProjectOutputGroup%3b</IncludeOutputGroupsInVSIX>
239-
</ProjectReference>
243+
</ProjectReference> -->
240244
</ItemGroup>
241245
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
242246
<Import Project="$(VSToolsPath)\VSSDK\Microsoft.VsSDK.targets" Condition="Exists('$(VSToolsPath)\VSSDK\Microsoft.VsSDK.targets')" />

dev/VSIX/Extension/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@
6363
<Asset Type="Microsoft.VisualStudio.ProjectTemplate" d:Source="Project" d:ProjectName="WinUI.Neutral.CppWinRT.RuntimeComponent" d:TargetPath="|WinUI.Neutral.CppWinRT.RuntimeComponent;TemplateProjectOutputGroup|" Path="ProjectTemplates" d:VsixSubPath="ProjectTemplates" />
6464
<Asset Type="Microsoft.VisualStudio.ProjectTemplate" d:Source="Project" d:ProjectName="WinUI.Neutral.Cs.ResourceDictionary" d:TargetPath="|WinUI.Neutral.Cs.ResourceDictionary;TemplateProjectOutputGroup|" Path="ProjectTemplates" d:VsixSubPath="ProjectTemplates" />
6565
</Assets>
66-
</PackageManifest>
66+
</PackageManifest>

dev/VSIX/ItemTemplates/Desktop/CppWinRT/BlankWindow/WinUI.Desktop.CppWinRT.BlankWindow.vstemplate

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626
<FullClassName>NuGet.VisualStudio.TemplateWizard</FullClassName>
2727
</WizardExtension>
2828
<WizardData>
29-
<packages repository="extension" repositoryId="Microsoft.WindowsAppSDK">
30-
<package id="Microsoft.Windows.CppWinRT" version="1.0.0" />
31-
<package id="Microsoft.WindowsAppSDK" version="1.0.0" />
32-
<package id="Microsoft.WindowsAppSDK.Foundation" version="1.0.0" />
33-
<package id="Microsoft.WindowsAppSDK.WinUI" version="1.0.0" />
29+
<packages repository="extension" repositoryId="Microsoft.ProjectReunion">
30+
<package id="Microsoft.Windows.CppWinRT" version="FIXME-Verify-Directory.Build.Targets-XmlPoke-Queries" />
31+
<package id="Microsoft.WindowsAppSDK" version="FIXME-Verify-Directory.Build.Targets-XmlPoke-Queries" />
32+
<package id="Microsoft.WindowsAppSDK.Foundation" version="FIXME-Verify-Directory.Build.Targets-XmlPoke-Queries" />
33+
<package id="Microsoft.WindowsAppSDK.WinUI" version="FIXME-Verify-Directory.Build.Targets-XmlPoke-Queries" />
3434
</packages>
3535
</WizardData>
36-
</VSTemplate>
36+
</VSTemplate>

dev/VSIX/ItemTemplates/Neutral/CppWinRT/BlankPage/WinUI.Neutral.CppWinRT.BlankPage.vstemplate

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727
<FullClassName>NuGet.VisualStudio.TemplateWizard</FullClassName>
2828
</WizardExtension>
2929
<WizardData>
30-
<packages repository="extension" repositoryId="Microsoft.WindowsAppSDK">
31-
<package id="Microsoft.Windows.CppWinRT" version="1.0.0" />
32-
<package id="Microsoft.WindowsAppSDK" version="1.0.0" />
33-
<package id="Microsoft.WindowsAppSDK.Foundation" version="1.0.0" />
34-
<package id="Microsoft.WindowsAppSDK.WinUI" version="1.0.0" />
30+
<packages repository="extension" repositoryId="Microsoft.ProjectReunion">
31+
<package id="Microsoft.Windows.CppWinRT" version="FIXME-Verify-Directory.Build.Targets-XmlPoke-Queries" />
32+
<package id="Microsoft.WindowsAppSDK" version="FIXME-Verify-Directory.Build.Targets-XmlPoke-Queries" />
33+
<package id="Microsoft.WindowsAppSDK.Foundation" version="FIXME-Verify-Directory.Build.Targets-XmlPoke-Queries" />
34+
<package id="Microsoft.WindowsAppSDK.WinUI" version="FIXME-Verify-Directory.Build.Targets-XmlPoke-Queries" />
3535
</packages>
3636
</WizardData>
37-
</VSTemplate>
37+
</VSTemplate>

dev/VSIX/ItemTemplates/Neutral/CppWinRT/TemplatedControl/WinUI.Neutral.CppWinRT.TemplatedControl.vstemplate

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@
3030
<FullClassName>Microsoft.VisualStudio.WinRT.TemplateWizards.TemplatedControl.Wizard</FullClassName>
3131
</WizardExtension>
3232
<WizardData>
33-
<packages repository="extension" repositoryId="Microsoft.WindowsAppSDK">
34-
<package id="Microsoft.Windows.CppWinRT" version="1.0.0" />
35-
<package id="Microsoft.WindowsAppSDK" version="1.0.0" />
36-
<package id="Microsoft.WindowsAppSDK.Foundation" version="1.0.0" />
37-
<package id="Microsoft.WindowsAppSDK.WinUI" version="1.0.0" />
33+
<packages repository="extension" repositoryId="Microsoft.ProjectReunion">
34+
<package id="Microsoft.Windows.CppWinRT" version="FIXME-Verify-Directory.Build.Targets-XmlPoke-Queries" />
35+
<package id="Microsoft.WindowsAppSDK" version="FIXME-Verify-Directory.Build.Targets-XmlPoke-Queries" />
36+
<package id="Microsoft.WindowsAppSDK.Foundation" version="FIXME-Verify-Directory.Build.Targets-XmlPoke-Queries" />
37+
<package id="Microsoft.WindowsAppSDK.WinUI" version="FIXME-Verify-Directory.Build.Targets-XmlPoke-Queries" />
3838
</packages>
3939
</WizardData>
40-
</VSTemplate>
40+
</VSTemplate>

dev/VSIX/ItemTemplates/Neutral/CppWinRT/UserControl/WinUI.Neutral.CppWinRT.UserControl.vstemplate

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727
<FullClassName>NuGet.VisualStudio.TemplateWizard</FullClassName>
2828
</WizardExtension>
2929
<WizardData>
30-
<packages repository="extension" repositoryId="Microsoft.WindowsAppSDK">
31-
<package id="Microsoft.Windows.CppWinRT" version="1.0.0" />
32-
<package id="Microsoft.WindowsAppSDK" version="1.0.0" />
33-
<package id="Microsoft.WindowsAppSDK.Foundation" version="1.0.0" />
34-
<package id="Microsoft.WindowsAppSDK.WinUI" version="1.0.0" />
30+
<packages repository="extension" repositoryId="Microsoft.ProjectReunion">
31+
<package id="Microsoft.Windows.CppWinRT" version="FIXME-Verify-Directory.Build.Targets-XmlPoke-Queries" />
32+
<package id="Microsoft.WindowsAppSDK" version="FIXME-Verify-Directory.Build.Targets-XmlPoke-Queries" />
33+
<package id="Microsoft.WindowsAppSDK.Foundation" version="FIXME-Verify-Directory.Build.Targets-XmlPoke-Queries" />
34+
<package id="Microsoft.WindowsAppSDK.WinUI" version="FIXME-Verify-Directory.Build.Targets-XmlPoke-Queries" />
3535
</packages>
3636
</WizardData>
37-
</VSTemplate>
37+
</VSTemplate>

dev/VSIX/ProjectTemplates/Desktop/CSharp/ClassLibrary/ProjectTemplate.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@
1111
<PackageReference Include="Microsoft.WindowsAppSDK" Version="$WindowsAppSDKNupkgVersion$" />
1212
<PackageReference Include="Microsoft.WindowsAppSDK.Foundation" Version="$WindowsAppSDKFoundationNupkgVersion$" />
1313
<PackageReference Include="Microsoft.WindowsAppSDK.WinUI" Version="$WindowsAppSDKWinUINupkgVersion$" />
14+
<PackageReference Include="Microsoft.WindowsAppSDK.InteractiveExperiences" Version="$WindowsAppSDKInteractiveExperiencesNupkgVersion$" />
1415
</ItemGroup>
1516
</Project>

dev/VSIX/ProjectTemplates/Desktop/CSharp/ClassLibrary/WinUI.Desktop.Cs.ClassLibrary.vstemplate

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,13 @@
2727
</TemplateData>
2828
<TemplateContent PreferedSolutionConfiguration="Debug|AnyCPU">
2929
<CustomParameters>
30-
<CustomParameter Name="$WindowsAppSDKNupkgVersion$" Value="1.0.0" />
31-
<CustomParameter Name="$WindowsAppSDKFoundationNupkgVersion$" Value="1.0.0" />
32-
<CustomParameter Name="$WindowsAppSDKWinUINupkgVersion$" Value="1.0.0" />
30+
<CustomParameter Name="$WindowsAppSDKNupkgVersion$" Value="FIXME-Verify-Directory.Build.Targets-XmlPoke-Queries" />
31+
<CustomParameter Name="$WindowsAppSDKFoundationNupkgVersion$" Value="FIXME-Verify-Directory.Build.Targets-XmlPoke-Queries" />
32+
<CustomParameter Name="$WindowsAppSDKWinUINupkgVersion$" Value="FIXME-Verify-Directory.Build.Targets-XmlPoke-Queries" />
33+
<CustomParameter Name="$WindowsAppSDKInteractiveExperiencesNupkgVersion$" Value="FIXME-Verify-Directory.Build.Targets-XmlPoke-Queries" />
3334
</CustomParameters>
3435
<Project File="ProjectTemplate.csproj" ReplaceParameters="true">
3536
<ProjectItem ReplaceParameters="true" OpenInEditor="true">Class1.cs</ProjectItem>
3637
</Project>
3738
</TemplateContent>
38-
</VSTemplate>
39+
</VSTemplate>

dev/VSIX/ProjectTemplates/Desktop/CSharp/PackagedApp/BlankApp/ProjectTemplate.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
<PackageReference Include="Microsoft.WindowsAppSDK" Version="$ext_WindowsAppSDKNupkgVersion$" />
1515
<PackageReference Include="Microsoft.WindowsAppSDK.Foundation" Version="$ext_WindowsAppSDKFoundationNupkgVersion$" />
1616
<PackageReference Include="Microsoft.WindowsAppSDK.WinUI" Version="$ext_WindowsAppSDKWinUINupkgVersion$" />
17+
<PackageReference Include="Microsoft.WindowsAppSDK.InteractiveExperiences" Version="$ext_WindowsAppSDKInteractiveExperiencesNupkgVersion$" />
1718
<Manifest Include="$(ApplicationManifest)" />
1819
</ItemGroup>
1920
</Project>

0 commit comments

Comments
 (0)