-
-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathMonkeyCache.TestApp.AspNetCore.csproj
33 lines (27 loc) · 1.25 KB
/
MonkeyCache.TestApp.AspNetCore.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="LiteDB" Version="5.0.13" />
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.9" />
<PackageReference Include="Ooui" Version="0.10.222" />
<PackageReference Include="Ooui.AspNetCore" Version="0.10.222" />
<PackageReference Include="Ooui.Forms" Version="0.10.222" />
<PackageReference Include="sqlite-net-pcl" Version="1.8.116" />
<PackageReference Include="Xamarin.Forms" Version="2.5.0.122203" />
</ItemGroup>
<ItemGroup>
<DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="2.0.1" />
</ItemGroup>
<ItemGroup>
<Folder Include="Views\Home\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MonkeyCache.FileStore\MonkeyCache.FileStore.csproj" />
<ProjectReference Include="..\MonkeyCache.LiteDB\MonkeyCache.LiteDB.csproj" />
<ProjectReference Include="..\MonkeyCache.SQLite\MonkeyCache.SQLite.csproj" />
<ProjectReference Include="..\MonkeyCache.TestApp\MonkeyCache.TestApp.csproj" />
<ProjectReference Include="..\MonkeyCache\MonkeyCache.csproj" />
</ItemGroup>
</Project>