Commit 01a84ab
committed
Split CompositionExpressions into a separate published NuGet package
The typed expression DSL (Microsoft.Toolkit.Uwp.UI.Animations.ExpressionsFork
nodes + ExpressionFunctions, the AnimatableNode wrappers,
BindableCompositionPropertySet, and AnimationConstants) was already
compiled directly into CompositionCollectionView.dll. To let other
consumers (e.g. Combobulate) take a NuGet dependency on just the
expression DSL without pulling in the collection-view types, ship it
as its own assembly + package.
Changes:
- src/CompositionExpressions/ : new UWP class library mirroring
src/CompositionExpressions.WinAppSdk/. Compiles the same source
files (still physically located under src/CompositionCollectionView/
to keep one canonical copy) but against the UAP target. Excludes
TrackedInteractionNodes.cs which uses Microsoft.UI.Composition.Interactions
APIs without a UWP counterpart we want to ship.
- src/CompositionCollectionView/CompositionCollectionView.csproj :
remove the ExpressionsFork/AnimatableNodes/BindableCompositionPropertySet/
AnimationConstants Compile entries and ProjectReference the new
CompositionExpressions project instead. Mirrors what CCV.WinAppSdk
has been doing already.
- CompositionExpressions.nuspec : new package id 'arcadiog.CompositionExpressions',
ships UWP + WinAppSdk lib folders.
- CompositionCollectionView.nuspec : declares a NuGet dependency on
arcadiog.CompositionExpressions \\$ in both targetFramework
groups.
- .github/workflows/release.yml : pack and push both nuspecs (the
WinAppSdk CompositionExpressions assembly is already produced
transitively via CCV.WinAppSdk's ProjectReference; the new UWP one
is produced transitively via CCV.csproj's ProjectReference).1 parent 8987999 commit 01a84ab
6 files changed
Lines changed: 278 additions & 45 deletions
File tree
- .github/workflows
- src
- CompositionCollectionView
- CompositionExpressions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
45 | 45 | | |
46 | 46 | | |
47 | 47 | | |
| 48 | + | |
48 | 49 | | |
49 | 50 | | |
50 | 51 | | |
| |||
87 | 88 | | |
88 | 89 | | |
89 | 90 | | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
90 | 94 | | |
91 | 95 | | |
92 | 96 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
14 | | - | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
15 | 17 | | |
16 | 18 | | |
| 19 | + | |
17 | 20 | | |
18 | 21 | | |
19 | 22 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 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 | + | |
Lines changed: 13 additions & 44 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
125 | 125 | | |
126 | 126 | | |
127 | 127 | | |
128 | | - | |
129 | | - | |
130 | | - | |
131 | | - | |
132 | | - | |
133 | | - | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
134 | 138 | | |
135 | 139 | | |
136 | 140 | | |
137 | 141 | | |
138 | 142 | | |
139 | | - | |
140 | 143 | | |
141 | 144 | | |
142 | 145 | | |
| |||
146 | 149 | | |
147 | 150 | | |
148 | 151 | | |
149 | | - | |
150 | | - | |
151 | | - | |
152 | | - | |
153 | | - | |
154 | | - | |
155 | | - | |
156 | | - | |
157 | | - | |
158 | | - | |
159 | | - | |
160 | | - | |
161 | | - | |
162 | | - | |
163 | | - | |
164 | | - | |
165 | | - | |
166 | | - | |
167 | | - | |
168 | | - | |
169 | | - | |
170 | | - | |
171 | | - | |
172 | | - | |
173 | | - | |
174 | | - | |
175 | | - | |
176 | | - | |
177 | | - | |
178 | | - | |
179 | | - | |
180 | | - | |
181 | | - | |
182 | | - | |
183 | | - | |
184 | | - | |
185 | | - | |
186 | 152 | | |
187 | 153 | | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
188 | 157 | | |
189 | 158 | | |
190 | 159 | | |
| |||
0 commit comments