-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSharedMauiCoreLibrary.Licensing.csproj
More file actions
56 lines (49 loc) · 2.38 KB
/
SharedMauiCoreLibrary.Licensing.csproj
File metadata and controls
56 lines (49 loc) · 2.38 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\common.props" />
<Import Project="..\..\framework.maui.props" />
<PropertyGroup>
<PackageTags>MAUI, Utilites, Core, Library, Helper, C#, dotnet, Licensing, Handler</PackageTags>
<RootNamespace>AndreasReitberger.Shared.Core.Licensing</RootNamespace>
<Title>MAUI-Core Shared Licensing Library</Title>
<Authors>Andreas Reitberger</Authors>
<Description>A libray used for .NET MAUI projects to manage licenses.</Description>
<PackageReadmeFile>README_Licensing.md</PackageReadmeFile>
<OutputType>Library</OutputType>
<UseMaui>True</UseMaui>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Platforms\Android\Utilities\**" />
<Compile Remove="Services\**" />
<EmbeddedResource Remove="Platforms\Android\Utilities\**" />
<EmbeddedResource Remove="Services\**" />
<MauiCss Remove="Platforms\Android\Utilities\**" />
<MauiCss Remove="Services\**" />
<MauiXaml Remove="Platforms\Android\Utilities\**" />
<MauiXaml Remove="Services\**" />
<None Remove="Platforms\Android\Utilities\**" />
<None Remove="Services\**" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\licenses\CommunityToolkit.Maui.txt" Link="Licenses\CommunityToolkit.Maui.txt" />
<None Include="..\..\licenses\CommunityToolkit.Mvvm.txt" Link="Licenses\CommunityToolkit.Mvvm.txt" />
<None Include="..\..\licenses\Microsoft.Maui.Controls.Compatibility.txt" Link="Licenses\Microsoft.Maui.Controls.Compatibility.txt" />
<None Include="..\..\licenses\Microsoft.Maui.Controls.txt" Link="Licenses\Microsoft.Maui.Controls.txt" />
<None Include="..\..\licenses\Microsoft.SourceLink.GitHub.txt" Link="Licenses\Microsoft.SourceLink.GitHub.txt" />
<None Include="..\..\licenses\Newtonsoft.Json.txt" Link="Licenses\Newtonsoft.Json.txt" />
<None Include="..\..\licenses\RestSharp.txt" Link="Licenses\RestSharp.txt" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\README_Licensing.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Maui.Controls" Version="[10.0.30,)" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.2" />
<PackageReference Include="RestSharp" Version="113.1.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="Licenses\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SharedNetCoreLibrary\SharedNetCoreLibrary.csproj" />
</ItemGroup>
</Project>