Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit aff24ca

Browse files
committed
Merge pull request #314 from sami1971/master
Android support + iOS changes
2 parents b060632 + b4fd9e7 commit aff24ca

14 files changed

Lines changed: 357 additions & 136 deletions
236 KB
Binary file not shown.
90.5 KB
Binary file not shown.
192 KB
Binary file not shown.
207 KB
Binary file not shown.
637 KB
Binary file not shown.
192 KB
Binary file not shown.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 11.00
3+
# Visual Studio 2010
4+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ServiceStack.OrmLite.Android", "ServiceStack.OrmLite\ServiceStack.OrmLite.Android.csproj", "{42BF9D4F-100D-4577-8538-5FD309D2CBEB}"
5+
EndProject
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ServiceStack.OrmLite.Sqlite.Android", "ServiceStack.OrmLite.Sqlite\ServiceStack.OrmLite.Sqlite.Android.csproj", "{85DC23CC-BB59-4775-AA9C-552FF2BBEB22}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{42BF9D4F-100D-4577-8538-5FD309D2CBEB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{42BF9D4F-100D-4577-8538-5FD309D2CBEB}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{42BF9D4F-100D-4577-8538-5FD309D2CBEB}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{42BF9D4F-100D-4577-8538-5FD309D2CBEB}.Release|Any CPU.Build.0 = Release|Any CPU
18+
{85DC23CC-BB59-4775-AA9C-552FF2BBEB22}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
19+
{85DC23CC-BB59-4775-AA9C-552FF2BBEB22}.Debug|Any CPU.Build.0 = Debug|Any CPU
20+
{85DC23CC-BB59-4775-AA9C-552FF2BBEB22}.Release|Any CPU.ActiveCfg = Release|Any CPU
21+
{85DC23CC-BB59-4775-AA9C-552FF2BBEB22}.Release|Any CPU.Build.0 = Release|Any CPU
22+
EndGlobalSection
23+
GlobalSection(MonoDevelopProperties) = preSolution
24+
StartupItem = ServiceStack.OrmLite\ServiceStack.OrmLite.Android.csproj
25+
EndGlobalSection
26+
EndGlobal
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6+
<ProductVersion>10.0.0</ProductVersion>
7+
<SchemaVersion>2.0</SchemaVersion>
8+
<ProjectGuid>{85DC23CC-BB59-4775-AA9C-552FF2BBEB22}</ProjectGuid>
9+
<ProjectTypeGuids>{EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{F278D4AB-4730-4720-B08E-FE5E31564D9E};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
10+
<OutputType>Library</OutputType>
11+
<RootNamespace>ServiceStack.OrmLite.Sqlite.Android</RootNamespace>
12+
<AndroidResgenFile>Resources\Resource.designer.cs</AndroidResgenFile>
13+
<AndroidResgenClass>Resource</AndroidResgenClass>
14+
<MonoAndroidResourcePrefix>Resources</MonoAndroidResourcePrefix>
15+
<MonoAndroidAssetsPrefix>Assets</MonoAndroidAssetsPrefix>
16+
<AssemblyName>ServiceStack.OrmLite.Sqlite.Android</AssemblyName>
17+
<TargetFrameworkVersion>v2.3</TargetFrameworkVersion>
18+
</PropertyGroup>
19+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
20+
<DebugSymbols>true</DebugSymbols>
21+
<DebugType>full</DebugType>
22+
<Optimize>false</Optimize>
23+
<OutputPath>bin\Debug</OutputPath>
24+
<DefineConstants>DEBUG;</DefineConstants>
25+
<ErrorReport>prompt</ErrorReport>
26+
<WarningLevel>4</WarningLevel>
27+
<AndroidLinkMode>None</AndroidLinkMode>
28+
<ConsolePause>false</ConsolePause>
29+
</PropertyGroup>
30+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
31+
<DebugType>full</DebugType>
32+
<Optimize>true</Optimize>
33+
<OutputPath>bin\Release</OutputPath>
34+
<ErrorReport>prompt</ErrorReport>
35+
<WarningLevel>4</WarningLevel>
36+
<AndroidUseSharedRuntime>false</AndroidUseSharedRuntime>
37+
<ConsolePause>false</ConsolePause>
38+
</PropertyGroup>
39+
<ItemGroup>
40+
<Reference Include="System" />
41+
<Reference Include="System.Xml" />
42+
<Reference Include="System.Core" />
43+
<Reference Include="Mono.Android" />
44+
<Reference Include="System.Data" />
45+
<Reference Include="Mono.Data.Sqlite" />
46+
<Reference Include="ServiceStack.Common">
47+
<HintPath>..\..\lib\MonoDroid\ServiceStack.Common.dll</HintPath>
48+
</Reference>
49+
<Reference Include="ServiceStack.Interfaces">
50+
<HintPath>..\..\lib\MonoDroid\ServiceStack.Interfaces.dll</HintPath>
51+
</Reference>
52+
<Reference Include="ServiceStack.Text">
53+
<HintPath>..\..\lib\MonoDroid\ServiceStack.Text.dll</HintPath>
54+
</Reference>
55+
</ItemGroup>
56+
<Import Project="$(MSBuildExtensionsPath)\Novell\Novell.MonoDroid.CSharp.targets" />
57+
<ItemGroup>
58+
<Compile Include="SqliteDialect.cs" />
59+
<Compile Include="SqliteExpressionVisitor.cs" />
60+
<Compile Include="SqliteOrmLiteDialectProvider.cs" />
61+
<Compile Include="SqliteOrmLiteDialectProviderBase.cs" />
62+
</ItemGroup>
63+
<ItemGroup>
64+
<ProjectReference Include="..\ServiceStack.OrmLite\ServiceStack.OrmLite.Android.csproj">
65+
<Project>{42BF9D4F-100D-4577-8538-5FD309D2CBEB}</Project>
66+
<Name>ServiceStack.OrmLite.Android</Name>
67+
</ProjectReference>
68+
</ItemGroup>
69+
</Project>

src/ServiceStack.OrmLite.Sqlite/ServiceStack.OrmLite.Sqlite.iOS.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5-
<Platform Condition=" '$(Platform)' == '' ">iPhoneSimulator</Platform>
5+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
66
<ProductVersion>8.0.30703</ProductVersion>
77
<SchemaVersion>2.0</SchemaVersion>
88
<ProjectGuid>{E6EA93E2-37BC-477F-8B87-BC30C3BBDB85}</ProjectGuid>
@@ -42,7 +42,7 @@
4242
</ItemGroup>
4343
<ItemGroup>
4444
<ProjectReference Include="..\ServiceStack.OrmLite\ServiceStack.OrmLite.iOS.csproj">
45-
<Project>{7e3fea8a-c770-4d50-8ad5-f56fcf0b7e07}</Project>
45+
<Project>{7E3FEA8A-C770-4D50-8AD5-F56FCF0B7E07}</Project>
4646
<Name>ServiceStack.OrmLite.iOS</Name>
4747
</ProjectReference>
4848
</ItemGroup>

0 commit comments

Comments
 (0)