-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathDotNetGraphQL.Mobile.csproj
More file actions
30 lines (30 loc) · 1.38 KB
/
DotNetGraphQL.Mobile.csproj
File metadata and controls
30 lines (30 loc) · 1.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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<BuildWithMSBuildOnMono>true</BuildWithMSBuildOnMono>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2622" />
<PackageReference Include="Xamarin.Essentials" Version="1.8.1" />
<PackageReference Include="AsyncAwaitBestPractices.MVVM" Version="6.0.6" />
<PackageReference Include="Xam.Plugins.Forms.ImageCircle" Version="3.1.1.1-beta" />
<PackageReference Include="modernhttpclient-updated" Version="3.4.3" />
<PackageReference Include="GraphQL.Client" Version="6.0.0" />
<PackageReference Include="Polly" Version="7.2.4" />
<PackageReference Include="GraphQL.Client.Serializer.Newtonsoft" Version="6.1.0" />
<PackageReference Include="Xamarin.CommunityToolkit.Markup" Version="2.0.6" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DotNetGraphQL.Common\DotNetGraphQL.Common.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Pages\" />
<Folder Include="ViewModels\" />
<Folder Include="Views\" />
<Folder Include="Views\ImageList\" />
<Folder Include="Services\" />
<Folder Include="Constants\" />
<Folder Include="Pages\Base\" />
</ItemGroup>
</Project>