-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMADE.UI.Controls.FilePicker.csproj
More file actions
36 lines (30 loc) · 1.51 KB
/
MADE.UI.Controls.FilePicker.csproj
File metadata and controls
36 lines (30 loc) · 1.51 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
<Project Sdk="MSBuild.Sdk.Extras">
<PropertyGroup>
<TargetFrameworks>uap10.0.19041;MonoAndroid11.0;xamarinios10;netstandard2.0;xamarinmac20</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Product>MADE.NET UI FilePicker Control</Product>
<Description>
This package includes UI components for Windows and Uno Platform applications such as:
- FilePicker for providing an input control that allows a user to pick files similar to a web file input.
</Description>
<PackageTags>MADE UI Views Controls FilePicker Input File Windows Android iOS macOS Xamarin Uno</PackageTags>
<GenerateLibraryLayout>true</GenerateLibraryLayout>
<RootNamespace>MADE.UI.Controls.FilePickerControl</RootNamespace>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFrameworkIdentifier)' == 'MonoAndroid' or '$(TargetFrameworkIdentifier)' == 'Xamarin.iOS' or '$(TargetFrameworkIdentifier)' == '.NETStandard' or '$(TargetFrameworkIdentifier)' == 'Xamarin.Mac'">
<PackageReference Include="Uno.UI" Version="4.7.37" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MADE.Data.Validation" Version="1.6.0" />
</ItemGroup>
<ItemGroup>
<Page Include="**\*.xaml" Exclude="bin\**\*.xaml;obj\**\*.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Page>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MADE.UI\MADE.UI.csproj" />
</ItemGroup>
</Project>