-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathChameleon.Core.csproj
54 lines (49 loc) · 2.44 KB
/
Chameleon.Core.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>pdbonly</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AppCenter" Version="3.2.2" />
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="3.2.2" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="3.2.2" />
<PackageReference Include="MvvmCross" Version="6.4.2" />
<PackageReference Include="MvvmCross.Forms" Version="6.4.2" />
<PackageReference Include="MvvmCross.Plugin.Json" Version="6.4.2" />
<PackageReference Include="MvvmCross.Plugin.JsonLocalization" Version="6.4.2" />
<PackageReference Include="MvvmCross.Plugin.Messenger" Version="6.4.2" />
<PackageReference Include="Plugin.MediaManager.Forms" Version="0.9.7" />
<PackageReference Include="Plugin.Permissions" Version="6.0.1" />
<PackageReference Include="Xam.Plugin.Media" Version="5.0.1" />
<PackageReference Include="Xamarin.FFImageLoading.Forms" Version="2.4.11.982" />
<PackageReference Include="Xamarin.Forms" Version="4.7.0.968" />
<PackageReference Include="Xamarin.Essentials" Version="1.5.3.2" />
<PackageReference Include="Acr.UserDialogs" Version="7.1.0.446" />
<PackageReference Include="MonkeyCache.LiteDB" Version="1.3.0" />
<PackageReference Include="Xamarin.Forms.PancakeView" Version="1.4.2" />
<PackageReference Include="Xamarin.Forms.DebugRainbows" Version="1.1.4" />
<PackageReference Include="Xamarin.Plugin.FilePicker" Version="2.1.41" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Chameleon.Services\Chameleon.Services.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Extensions\ThemeModeExtensionMethods.json" />
</ItemGroup>
<ItemGroup>
<Compile Update="**\*.xaml.cs" DependentUpon="%(Filename)" />
<None Remove="Resources\**\*.json" />
<EmbeddedResource Include="Resources\**\*.json" />
<Compile Condition=" '$(EnableDefaultCompileItems)' == 'true' " Update="Resources\Templates.xaml.cs">
<DependentUpon>Templates.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<Folder Include="Extensions\" />
</ItemGroup>
</Project>