-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMADE.UI.Views.Dialogs.csproj
More file actions
27 lines (23 loc) · 1.25 KB
/
MADE.UI.Views.Dialogs.csproj
File metadata and controls
27 lines (23 loc) · 1.25 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
<Project Sdk="MSBuild.Sdk.Extras">
<PropertyGroup>
<TargetFrameworks>uap10.0.19041;MonoAndroid11.0;xamarinios10;netstandard2.0;xamarinmac20</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Product>MADE.NET UI View Dialogs</Product>
<Description>
This package includes UI components for Windows and Uno Platform applications such as:
- AppDialog for providing a simple mechanism to displaying alert dialogs using the MVVM pattern by allowing registration with IoC.
</Description>
<PackageTags>MADE UI Views Dialogs Windows Android iOS macOS Xamarin Uno MVVM</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.37" />
</ItemGroup>
<ItemGroup>
<Page Include="**\*.xaml" Exclude="bin\**\*.xaml;obj\**\*.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Page>
</ItemGroup>
</Project>