-
Notifications
You must be signed in to change notification settings - Fork 145
Expand file tree
/
Copy pathCommunityToolkit.WinUI.Media.csproj
More file actions
28 lines (23 loc) · 1.16 KB
/
CommunityToolkit.WinUI.Media.csproj
File metadata and controls
28 lines (23 loc) · 1.16 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
<Project>
<Import Project="$([MSBuild]::GetPathOfFileAbove(Directory.Build.props))" Condition="Exists('$([MSBuild]::GetPathOfFileAbove(Directory.Build.props))')" />
<PropertyGroup>
<ToolkitComponentName>Media</ToolkitComponentName>
<Description>Create animated Media effects on UI elements. Saturation, Opacity, Color, CrossFade, Exposure, Sepia, HueRotation, and more.</Description>
<!-- Rns suffix is required for namespaces shared across projects. See https://github.com/CommunityToolkit/Labs-Windows/issues/152 -->
<RootNamespace>CommunityToolkit.WinUI.MediaRns</RootNamespace>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PackageReadmeFile>ReadMe.md</PackageReadmeFile>
</PropertyGroup>
<!-- Sets this up as a toolkit component's source project -->
<Import Project="$(ToolingDirectory)\ToolkitComponent.SourceProject.props" />
<ItemGroup>
<None Include="ReadMe.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(ToolkitAnimationsSourceProject)" />
<ProjectReference Include="$(ToolkitExtensionsSourceProject)" />
</ItemGroup>
</Project>