-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSharedMauiCoreLibrary.csproj
More file actions
48 lines (41 loc) · 1.97 KB
/
SharedMauiCoreLibrary.csproj
File metadata and controls
48 lines (41 loc) · 1.97 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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\common.props" />
<Import Project="..\..\framework.maui.props" />
<PropertyGroup>
<PackageTags>MAUI, Utilites, Core, Library, Helper, C#, dotnet</PackageTags>
<RootNamespace>AndreasReitberger.Shared.Core</RootNamespace>
<Title>MAUI-Core Shared Library</Title>
<Description>A core libray used for our .NET MAUI libraries.</Description>
<OutputType>Library</OutputType>
<UseMaui>True</UseMaui>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Platforms\Android\Utilities\**" />
<EmbeddedResource Remove="Platforms\Android\Utilities\**" />
<MauiCss Remove="Platforms\Android\Utilities\**" />
<MauiXaml Remove="Platforms\Android\Utilities\**" />
<None Remove="Platforms\Android\Utilities\**" />
</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" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Maui.Controls" Version="10.0.41" />
<PackageReference Include="CommunityToolkit.Maui" Version="14.0.1" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SharedNetCoreLibrary\SharedNetCoreLibrary.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Licenses\" />
</ItemGroup>
</Project>