-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCombobulate.nuspec
More file actions
48 lines (44 loc) · 2.83 KB
/
Combobulate.nuspec
File metadata and controls
48 lines (44 loc) · 2.83 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
44
45
46
47
48
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>Combobulate</id>
<version>$version$</version>
<authors>Arcadio Garcia</authors>
<license type="expression">MIT</license>
<projectUrl>https://github.com/arcadiogarcia/Combobulate</projectUrl>
<repository type="git" url="https://github.com/arcadiogarcia/Combobulate" />
<description>A XAML controls library for UWP and WinUI 3 / Windows App SDK.</description>
<tags>uwp winui3 winappsdk xaml controls</tags>
<readme>docs\README.md</readme>
<dependencies>
<group targetFramework="UAP10.0.19041">
<dependency id="arcadiog.CompositionExpressions" version="0.1.5" />
</group>
<group targetFramework="net10.0-windows10.0.19041.0">
<dependency id="Microsoft.WindowsAppSDK" version="1.8.260317003" exclude="Build,Analyzers" />
<dependency id="arcadiog.CompositionExpressions" version="0.1.5" />
</group>
</dependencies>
</metadata>
<files>
<!-- README -->
<file src="README.md" target="docs\README.md" />
<!-- UWP (uap10.0.19041) -->
<file src="src\Combobulate\bin\Release\Combobulate.dll" target="lib\uap10.0.19041" />
<file src="src\Combobulate\bin\Release\Combobulate.pri" target="lib\uap10.0.19041" />
<file src="src\Combobulate\bin\Release\Combobulate\**" target="lib\uap10.0.19041\Combobulate" />
<!-- WinUI 3 / Windows App SDK – compile reference + resources (net10.0-windows10.0.19041.0)
Sourced from the AnyCPU (MSIL) build so consumers targeting any
processor architecture don't get MSB3270/CS8012 warnings. AnyCPU
builds collapse `bin\AnyCPU\` to plain `bin\` by SDK convention.
The per-arch runtime payloads below are still architecture-specific. -->
<file src="src\Combobulate.WinAppSdk\bin\Release\net10.0-windows10.0.19041.0\Combobulate.dll" target="lib\net10.0-windows10.0.19041.0" />
<file src="src\Combobulate.WinAppSdk\bin\Release\net10.0-windows10.0.19041.0\Combobulate.xml" target="lib\net10.0-windows10.0.19041.0" />
<file src="src\Combobulate.WinAppSdk\bin\Release\net10.0-windows10.0.19041.0\Combobulate.pri" target="lib\net10.0-windows10.0.19041.0" />
<file src="src\Combobulate.WinAppSdk\bin\Release\net10.0-windows10.0.19041.0\Combobulate\**" target="lib\net10.0-windows10.0.19041.0\Combobulate" />
<!-- WinUI 3 / Windows App SDK – x64 runtime -->
<file src="src\Combobulate.WinAppSdk\bin\x64\Release\net10.0-windows10.0.19041.0\Combobulate.dll" target="runtimes\win-x64\lib\net10.0-windows10.0.19041.0" />
<!-- WinUI 3 / Windows App SDK – ARM64 runtime -->
<file src="src\Combobulate.WinAppSdk\bin\ARM64\Release\net10.0-windows10.0.19041.0\Combobulate.dll" target="runtimes\win-arm64\lib\net10.0-windows10.0.19041.0" />
</files>
</package>