-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMADE.UI.csproj
More file actions
29 lines (25 loc) · 1.37 KB
/
MADE.UI.csproj
File metadata and controls
29 lines (25 loc) · 1.37 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
<Project Sdk="MSBuild.Sdk.Extras">
<PropertyGroup>
<TargetFrameworks>uap10.0.19041;MonoAndroid11.0;xamarinios10;netstandard2.0;xamarinmac20</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Product>MADE.NET UI</Product>
<Description>
This package includes UI components for Windows and Uno Platform applications such as:
- ContentControl for simplifying visibility and retrieving child elements.
- Control for simplifying visibility and retrieving child elements.
- ViewExtensions for extending UIElement objects with helper methods, such as updating the visiblity based on a boolean including child elements.
</Description>
<PackageTags>MADE UI Views Controls UWP Uno</PackageTags>
<GenerateLibraryLayout>true</GenerateLibraryLayout>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFrameworkIdentifier)' == 'MonoAndroid' or '$(TargetFrameworkIdentifier)' == 'Xamarin.iOS' or '$(TargetFrameworkIdentifier)' == '.NETStandard' or '$(TargetFrameworkIdentifier)' == 'Xamarin.Mac'">
<PackageReference Include="Uno.UI" Version="4.7.30" />
</ItemGroup>
<ItemGroup>
<Page Include="**\*.xaml" Exclude="bin\**\*.xaml;obj\**\*.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Page>
</ItemGroup>
</Project>