-
Notifications
You must be signed in to change notification settings - Fork 818
Expand file tree
/
Copy pathMUXControls-Nuget-FrameworkPackage.props
More file actions
43 lines (43 loc) · 2.65 KB
/
MUXControls-Nuget-FrameworkPackage.props
File metadata and controls
43 lines (43 loc) · 2.65 KB
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
39
40
41
42
43
<!-- Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See LICENSE in the project root for license information. -->
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildThisFileDirectory)\MicrosoftUIXamlVersion.props"/>
<Import Project="$(MSBuildThisFileDirectory)\Common.targets"/>
<ItemGroup>
<AppxPackageRegistration Include="$(MSBuildThisFileDirectory)..\tools\AppX\x86\Release\Microsoft.UI.Xaml.2.8.appx">
<Architecture>x86</Architecture>
<Version>$(MicrosoftUIXamlAppxVersion)</Version>
<Publisher>'CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US'</Publisher>
</AppxPackageRegistration>
<!-- Some C++/CX projects use Platform=Win32 instead of Platform=x86 -->
<AppxPackageRegistration Include="$(MSBuildThisFileDirectory)..\tools\AppX\x86\Release\Microsoft.UI.Xaml.2.8.appx">
<Architecture>Win32</Architecture>
<Version>$(MicrosoftUIXamlAppxVersion)</Version>
<Publisher>'CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US'</Publisher>
</AppxPackageRegistration>
</ItemGroup>
<ItemGroup>
<AppxPackageRegistration Include="$(MSBuildThisFileDirectory)..\tools\AppX\x64\Release\Microsoft.UI.Xaml.2.8.appx">
<Architecture>x64</Architecture>
<Version>$(MicrosoftUIXamlAppxVersion)</Version>
<Publisher>'CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US'</Publisher>
</AppxPackageRegistration>
</ItemGroup>
<ItemGroup>
<AppxPackageRegistration Include="$(MSBuildThisFileDirectory)..\tools\AppX\arm\Release\Microsoft.UI.Xaml.2.8.appx">
<Architecture>arm</Architecture>
<Version>$(MicrosoftUIXamlAppxVersion)</Version>
<Publisher>'CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US'</Publisher>
</AppxPackageRegistration>
</ItemGroup>
<ItemGroup>
<AppxPackageRegistration Include="$(MSBuildThisFileDirectory)..\tools\AppX\arm64\Release\Microsoft.UI.Xaml.2.8.appx">
<Architecture>arm64</Architecture>
<Version>$(MicrosoftUIXamlAppxVersion)</Version>
<Publisher>'CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US'</Publisher>
</AppxPackageRegistration>
</ItemGroup>
<!-- Add a dependency for the app against VCLibs since we need it but the consuming app might be .NET only. -->
<ItemGroup Condition="('$(OutputType)' == 'AppContainerExe' OR ('$(OutputType)' == 'WinExe' AND '$(UseUwpTools)' == 'true'))">
<SDKReference Include="Microsoft.VCLibs, Version=14.0" />
</ItemGroup>
</Project>