Skip to content

Commit

Permalink
Prepare for 0.82.0 (#1168)
Browse files Browse the repository at this point in the history
* Build without sync/win32 for this release

* Remove the sync docs

* Remove win32 stashes from jenkinsfile

* Update LinqSupport with information about the Contains extension method.

* Update Readme and Changelog

* Update docfx and assembly info copyright years

* Update docfx src folder to avoid leaking sync stuff

* Update NuGetReleaseTests:
- remove PCL
- add Nito.Async nuget

* Update ThreeLayerRealmXFNuGet to 0.82.0

* Update Benchmarkr to 0.82.0

* Update QuickJournal to 0.82.0

* Reverse temporary changes
  • Loading branch information
nirinchev authored Jan 23, 2017
1 parent 504dc9a commit 2f63e7e
Show file tree
Hide file tree
Showing 26 changed files with 96 additions and 47 deletions.
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
0.82.0 (TBD)
0.82.0 (2017-01-23)
-------------------
### Breaking Changes
- Moved all exceptions under the `Realms.Exceptions` namespace. (#1075)
- Moved `RealmSchema` to `Realms.Schema` namespace. (#1075)
- Made the `ErrorEventArgs` constructor internal. (#1075)
- Made `ObjectSchema.Builder` and `RealmSchema.Builder` internal. (#1075)
- Passing an object that has `IList` properties to `Add(obj, update: true)` will no longer merge the lists. Instead, the `IList` property will contain only the items in the object. (#1040)

### Enhancements
- Added virtual `OnPropertyChanged` method in `RealmObject` that you can override to be notified of changes to the current object. (#1047)
- Added compile time checks that `[Required]` is applied on correct property types. (#1072)
- `Realm.Add(RealmObject obj)` will now return the passed in object, similarly to `Realm.Add<T>(T obj)`. (#1162)
- Added an extension method for `string.Contains` that accepts `StringComparison` argument and can be used in queries. When querying, only `StringComparison.Ordinal` and `StringComparison.OrdinalIgnoreCase` can be used. When not used in queries, all values for `StringComparison` are valid. (#1141)

### Bug fixes
- Adding a standalone object, that has an `IList<T>` property that has never been accessed, to the Realm will no longer throw a `NullReferenceException`. (#1040)
- `IList<T>` properties will now correctly return `IsReadOnly = true` when managed by a readonly Realm. (#1070)
- The weaver should now correctly resolve references in PCL and netstandard assemblies. (#1117)
- Add some missing methods to the PCL reference assembly. (#1093)
- Disposed realms will not throw `ObjectDisposedException` when trying to access their members. Additionally, disposing a realm will not invalidate other instances on the same thread. (#1063)

0.81.0 (2016-12-14)
-------------------
Expand Down
2 changes: 1 addition & 1 deletion Docs/docfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"_appTitle": "Realm",
"_appFaviconPath": "images/favicon.ico",
"_appLogoPath": "images/logo.svg",
"_appFooter": "Copyright © 2016 <a href=\"https://realm.io\">Realm</a><br>Generated by <strong>DocFX</strong>",
"_appFooter": "Copyright © 2017 <a href=\"https://realm.io\">Realm</a><br>Generated by <strong>DocFX</strong>",
"_gitContribute": {
"repo": "https://github.com/realm/realm-dotnet.git",
"branch": "master",
Expand Down
9 changes: 7 additions & 2 deletions Docs/linqsupport.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,14 +100,19 @@ Furthermore, the following can be used for numerical types: [<](https://msdn.mic

## String Operators
With strings, you can use:
[`Contains`](xref:System.String.Contains*), [`StartsWith`](xref:System.String.StartsWith*), and [`EndsWith`](xref:System.String.EndsWith*), and [`Equals`](xref:System.String.Equals*). By default, Realm will perform a case-sensitive comparison, but you can provide [`StringComparison.OrdinalIgnoreCase`](xref:System.StringComparison.OrdinalIgnoreCase) argument to overwrite that.
[`Contains`](xref:System.String.Contains*), [`StartsWith`](xref:System.String.StartsWith*), and [`EndsWith`](xref:System.String.EndsWith*), and [`Equals`](xref:System.String.Equals*).

Example:

```csharp
var peopleWhoseNameBeginsWithJ = realm.All<Person>.Where(person => person.FirstName.StartsWith("J"));
var peopleWhoseNameBeginsWithJ = realm.All<Person>.Where(p => p.FirstName.StartsWith("J"));
```

By default, Realm will perform a case-sensitive comparison, but you can provide [`StringComparison.OrdinalIgnoreCase`](xref:System.StringComparison.OrdinalIgnoreCase) argument to overwrite that. Since there is no overload for `Contains` that accepts `StringComparison`, we've provided a convenience [extension method](xref:Realms.StringExtensions.Contains*) that can be used when querying:

```csharp
var peopleWhoseNameContainsA = realm.All<Person>().Where(p => p.FirstName.Contains("a", StringComparison.OrdinalIgnoreCase));
```
## Composition
You can use parentheses and the [||](https://msdn.microsoft.com/en-us/library/6373h346.aspx) and [&&](https://msdn.microsoft.com/en-us/library/2a723cdk.aspx) operators to compose queries.

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ Prerequisites:

We support the current Xamarin _Stable_ update channel, at the time of release this corresponded to:

* Xamarin iOS version 10.2.1.5
* Xamarin Android version 7.0.2.37
* Xamarin Studio version 6.1.2
* Xamarin iOS version 10.3.1.8
* Xamarin Android version 7.0.2.42
* Xamarin Studio version 6.1.4

**Note for Debugging** that the following steps mention building for **Release.** If you are debugging, just substitute **Debug** and you probably also want to choose **Debug | iPhoneSimulator** as a platform.

Expand Down
2 changes: 1 addition & 1 deletion RealmAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
using System.Reflection;

[assembly: AssemblyDescription("Realm is a mobile database: a replacement for SQLite")]
[assembly: AssemblyCopyright("Copyright © 2016 Realm")]
[assembly: AssemblyCopyright("Copyright © 2017 Realm")]
[assembly: AssemblyCompany("Realm Inc.")]
[assembly: AssemblyProduct("Realm C#")]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<OutputType>Library</OutputType>
<RootNamespace>NuGetReleaseTests.XamarinAndroid</RootNamespace>
<AssemblyName>NuGetReleaseTests.XamarinAndroid</AssemblyName>
<TargetFrameworkVersion>v6.0</TargetFrameworkVersion>
<TargetFrameworkVersion>v7.0</TargetFrameworkVersion>
<AndroidApplication>True</AndroidApplication>
<AndroidResgenFile>Resources\Resource.designer.cs</AndroidResgenFile>
<AndroidResgenClass>Resource</AndroidResgenClass>
Expand Down Expand Up @@ -45,6 +45,15 @@
<Reference Include="Mono.Android" />
<Reference Include="Xamarin.Android.NUnitLite" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="Nito.Disposables">
<HintPath>..\packages\Nito.Disposables.1.0.0\lib\portable45-net45+win8+wp8+wpa81\Nito.Disposables.dll</HintPath>
</Reference>
<Reference Include="Nito.AsyncEx.Tasks">
<HintPath>..\packages\Nito.AsyncEx.Tasks.1.1.0\lib\netstandard1.3\Nito.AsyncEx.Tasks.dll</HintPath>
</Reference>
<Reference Include="Nito.AsyncEx.Context">
<HintPath>..\packages\Nito.AsyncEx.Context.1.1.0\lib\netstandard1.3\Nito.AsyncEx.Context.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="MainActivity.cs" />
Expand All @@ -55,6 +64,7 @@
<None Include="Resources\AboutResources.txt" />
<None Include="Assets\AboutAssets.txt" />
<None Include="Properties\AndroidManifest.xml" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<AndroidResource Include="Resources\drawable-hdpi\Icon.png" />
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Nito.AsyncEx.Context" version="1.1.0" targetFramework="monoandroid70" />
<package id="Nito.AsyncEx.Tasks" version="1.1.0" targetFramework="monoandroid70" />
<package id="Nito.Disposables" version="1.0.0" targetFramework="monoandroid70" />
<package id="System.Collections.Concurrent" version="4.0.12" targetFramework="monoandroid70" />
<package id="System.Diagnostics.Debug" version="4.0.11" targetFramework="monoandroid70" />
<package id="System.Threading" version="4.0.11" targetFramework="monoandroid70" />
<package id="System.Threading.Tasks" version="4.0.11" targetFramework="monoandroid70" />
</packages>
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,23 @@
<Reference Include="Xamarin.iOS" />
<Reference Include="MonoTouch.NUnitLite" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="Nito.Disposables">
<HintPath>..\packages\Nito.Disposables.1.0.0\lib\portable45-net45+win8+wp8+wpa81\Nito.Disposables.dll</HintPath>
</Reference>
<Reference Include="Nito.AsyncEx.Tasks">
<HintPath>..\packages\Nito.AsyncEx.Tasks.1.1.0\lib\netstandard1.3\Nito.AsyncEx.Tasks.dll</HintPath>
</Reference>
<Reference Include="Nito.AsyncEx.Context">
<HintPath>..\packages\Nito.AsyncEx.Context.1.1.0\lib\netstandard1.3\Nito.AsyncEx.Context.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<InterfaceDefinition Include="LaunchScreen.storyboard" />
</ItemGroup>
<ItemGroup>
<None Include="Info.plist" />
<None Include="Entitlements.plist" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<Compile Include="Main.cs" />
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Nito.AsyncEx.Context" version="1.1.0" targetFramework="xamarinios10" />
<package id="Nito.AsyncEx.Tasks" version="1.1.0" targetFramework="xamarinios10" />
<package id="Nito.Disposables" version="1.0.0" targetFramework="xamarinios10" />
<package id="System.Collections.Concurrent" version="4.0.12" targetFramework="xamarinios10" />
<package id="System.Diagnostics.Debug" version="4.0.11" targetFramework="xamarinios10" />
<package id="System.Threading" version="4.0.11" targetFramework="xamarinios10" />
<package id="System.Threading.Tasks" version="4.0.11" targetFramework="xamarinios10" />
</packages>
14 changes: 0 additions & 14 deletions Tests/NuGetReleaseTests/NuGetReleaseTests.sln
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NuGetReleaseTests.XamarinAn
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Tests.Shared", "..\..\Shared\Tests.Shared\Tests.Shared.shproj", "{06146619-D21C-414C-BFE3-2F59ACBA412E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PurePCLBuildableTest", "..\..\Platform.PCL\PurePCLBuildableTest\PurePCLBuildableTest.csproj", "{C33439AD-387D-4F86-9DB8-9D4B48EC6750}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|iPhoneSimulator = Debug|iPhoneSimulator
Expand All @@ -31,17 +29,5 @@ Global
{72BA4D29-0AAE-4A52-94D9-2E13E6427BDC}.Debug|ARM.Build.0 = Debug|ARM
{72BA4D29-0AAE-4A52-94D9-2E13E6427BDC}.Release|ARM.ActiveCfg = Release|ARM
{72BA4D29-0AAE-4A52-94D9-2E13E6427BDC}.Release|ARM.Build.0 = Release|ARM
{C33439AD-387D-4F86-9DB8-9D4B48EC6750}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{C33439AD-387D-4F86-9DB8-9D4B48EC6750}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{C33439AD-387D-4F86-9DB8-9D4B48EC6750}.Release|iPhone.ActiveCfg = Release|Any CPU
{C33439AD-387D-4F86-9DB8-9D4B48EC6750}.Release|iPhone.Build.0 = Release|Any CPU
{C33439AD-387D-4F86-9DB8-9D4B48EC6750}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{C33439AD-387D-4F86-9DB8-9D4B48EC6750}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{C33439AD-387D-4F86-9DB8-9D4B48EC6750}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{C33439AD-387D-4F86-9DB8-9D4B48EC6750}.Debug|iPhone.Build.0 = Debug|Any CPU
{C33439AD-387D-4F86-9DB8-9D4B48EC6750}.Debug|ARM.ActiveCfg = Debug|Any CPU
{C33439AD-387D-4F86-9DB8-9D4B48EC6750}.Debug|ARM.Build.0 = Debug|Any CPU
{C33439AD-387D-4F86-9DB8-9D4B48EC6750}.Release|ARM.ActiveCfg = Release|Any CPU
{C33439AD-387D-4F86-9DB8-9D4B48EC6750}.Release|ARM.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@
<HintPath>..\packages\Remotion.Linq.2.1.1\lib\portable-net45+win+wpa81+wp80\Remotion.Linq.dll</HintPath>
</Reference>
<Reference Include="Realm">
<HintPath>..\packages\Realm.0.81.0\lib\portable-net45+sl5+wp8+wpa81+win8+monoandroid+Xamarin.iOS10+monotouch+Xamarin.Mac\Realm.dll</HintPath>
<HintPath>..\packages\Realm.0.82.0\lib\portable-net45+sl5+wp8+wpa81+win8+monoandroid+Xamarin.iOS10+monotouch+Xamarin.Mac\Realm.dll</HintPath>
</Reference>
</ItemGroup>
<Import Project="..\packages\Realm.0.81.0\build\Realm.targets" Condition="Exists('..\packages\Realm.0.81.0\build\Realm.targets')" />
<Import Project="..\packages\Realm.0.82.0\build\Realm.targets" Condition="Exists('..\packages\Realm.0.82.0\build\Realm.targets')" />
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<packages>
<package id="DotNetCross.Memory.Unsafe" version="0.2.2" targetFramework="portable-net45+win+wpa81+wp80+MonoTouch10+MonoAndroid10+xamarinmac20+xamarintvos10+xamarinwatchos10+xamarinios10" />
<package id="Fody" version="1.29.4" targetFramework="portable-net45+win+wpa81+wp80+MonoTouch10+MonoAndroid10+xamarinmac20+xamarinios10" developmentDependency="true" />
<package id="Realm" version="0.81.0" targetFramework="portable45-net45+win8+wp8+wpa81" developmentDependency="true" />
<package id="Realm" version="0.82.0" targetFramework="portable45-net45+win8+wp8+wpa81" developmentDependency="true" />
<package id="Remotion.Linq" version="2.1.1" targetFramework="portable-net45+win+wpa81+wp80+MonoTouch10+MonoAndroid10+xamarinmac20+xamarintvos10+xamarinwatchos10+xamarinios10" />
<package id="System.Collections" version="4.0.11" targetFramework="portable-net45+win+wpa81+wp80+MonoTouch10+MonoAndroid10+xamarinmac20+xamarintvos10+xamarinwatchos10+xamarinios10" />
<package id="System.Diagnostics.Debug" version="4.0.11" targetFramework="portable-net45+win+wpa81+wp80+MonoTouch10+MonoAndroid10+xamarinmac20+xamarintvos10+xamarinwatchos10+xamarinios10" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
<HintPath>..\..\packages\Remotion.Linq.2.1.1\lib\portable-net45+win+wpa81+wp80\Remotion.Linq.dll</HintPath>
</Reference>
<Reference Include="Realm">
<HintPath>..\..\packages\Realm.0.81.0\lib\MonoAndroid44\Realm.dll</HintPath>
<HintPath>..\..\packages\Realm.0.82.0\lib\MonoAndroid44\Realm.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down Expand Up @@ -128,5 +128,5 @@
<ItemGroup>
<Folder Include="NativeLibs\" />
</ItemGroup>
<Import Project="..\..\packages\Realm.0.81.0\build\Realm.targets" Condition="Exists('..\..\packages\Realm.0.81.0\build\Realm.targets')" />
<Import Project="..\..\packages\Realm.0.82.0\build\Realm.targets" Condition="Exists('..\..\packages\Realm.0.82.0\build\Realm.targets')" />
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<packages>
<package id="DotNetCross.Memory.Unsafe" version="0.2.2" targetFramework="MonoAndroid60" />
<package id="Fody" version="1.29.4" targetFramework="MonoAndroid60" developmentDependency="true" />
<package id="Realm" version="0.81.0" targetFramework="monoandroid70" developmentDependency="true" />
<package id="Realm" version="0.82.0" targetFramework="monoandroid70" developmentDependency="true" />
<package id="Remotion.Linq" version="2.1.1" targetFramework="monoandroid70" />
<package id="System.Collections" version="4.0.11" targetFramework="monoandroid70" />
<package id="System.Diagnostics.Debug" version="4.0.11" targetFramework="monoandroid70" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,11 +142,11 @@
<HintPath>..\..\packages\Remotion.Linq.2.1.1\lib\portable-net45+win+wpa81+wp80\Remotion.Linq.dll</HintPath>
</Reference>
<Reference Include="Realm">
<HintPath>..\..\packages\Realm.0.81.0\lib\Xamarin.iOS10\Realm.dll</HintPath>
<HintPath>..\..\packages\Realm.0.82.0\lib\Xamarin.iOS10\Realm.dll</HintPath>
</Reference>
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
<Import Project="..\..\packages\Xamarin.Forms.2.0.1.6505\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.targets" Condition="Exists('..\..\packages\Xamarin.Forms.2.0.1.6505\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.targets')" />
<Import Project="..\..\packages\Fody.1.29.4\build\portable-net+sl+win+wpa+wp\Fody.targets" Condition="Exists('..\..\packages\Fody.1.29.4\build\portable-net+sl+win+wpa+wp\Fody.targets')" />
<Import Project="..\..\packages\Realm.0.81.0\build\Realm.targets" Condition="Exists('..\..\packages\Realm.0.81.0\build\Realm.targets')" />
<Import Project="..\..\packages\Realm.0.82.0\build\Realm.targets" Condition="Exists('..\..\packages\Realm.0.82.0\build\Realm.targets')" />
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<packages>
<package id="DotNetCross.Memory.Unsafe" version="0.2.2" targetFramework="xamarinios10" />
<package id="Fody" version="1.29.4" targetFramework="xamarinios10" developmentDependency="true" />
<package id="Realm" version="0.81.0" targetFramework="xamarinios10" developmentDependency="true" />
<package id="Realm" version="0.82.0" targetFramework="xamarinios10" developmentDependency="true" />
<package id="Remotion.Linq" version="2.1.1" targetFramework="xamarinios10" />
<package id="System.Collections" version="4.0.11" targetFramework="xamarinios10" />
<package id="System.Diagnostics.Debug" version="4.0.11" targetFramework="xamarinios10" />
Expand Down
4 changes: 2 additions & 2 deletions examples/Benchmarkr/Droid/Benchmarkr.Droid.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
<HintPath>..\packages\Stateless.2.5.84\lib\portable-net45+wp8+win8+wpa81+monotouch+monoandroid\Stateless.dll</HintPath>
</Reference>
<Reference Include="Realm">
<HintPath>..\packages\Realm.0.81.0\lib\MonoAndroid44\Realm.dll</HintPath>
<HintPath>..\packages\Realm.0.82.0\lib\MonoAndroid44\Realm.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down Expand Up @@ -156,5 +156,5 @@
<Import Project="..\packages\Realm.0.74.0\build\MonoAndroid44\Realm.targets" Condition="Exists('..\packages\Realm.0.74.0\build\MonoAndroid44\Realm.targets')" />
<Import Project="..\packages\Xamarin.Android.Support.Vector.Drawable.23.3.0\build\Xamarin.Android.Support.Vector.Drawable.targets" Condition="Exists('..\packages\Xamarin.Android.Support.Vector.Drawable.23.3.0\build\Xamarin.Android.Support.Vector.Drawable.targets')" />
<Import Project="..\packages\Xamarin.Forms.2.3.2.127\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.targets" Condition="Exists('..\packages\Xamarin.Forms.2.3.2.127\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.targets')" />
<Import Project="..\packages\Realm.0.81.0\build\Realm.targets" Condition="Exists('..\packages\Realm.0.81.0\build\Realm.targets')" />
<Import Project="..\packages\Realm.0.82.0\build\Realm.targets" Condition="Exists('..\packages\Realm.0.82.0\build\Realm.targets')" />
</Project>
2 changes: 1 addition & 1 deletion examples/Benchmarkr/Droid/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<package id="DotNetCross.Memory.Unsafe" version="0.2.2" targetFramework="MonoAndroid60" />
<package id="Fody" version="1.29.4" targetFramework="MonoAndroid60" developmentDependency="true" />
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="monoandroid70" />
<package id="Realm" version="0.81.0" targetFramework="monoandroid70" developmentDependency="true" />
<package id="Realm" version="0.82.0" targetFramework="monoandroid70" developmentDependency="true" />
<package id="Remotion.Linq" version="2.1.1" targetFramework="MonoAndroid60" />
<package id="SharpZipLib.Portable" version="0.86.0.0003" targetFramework="MonoAndroid60" />
<package id="sqlite-net" version="1.0.8" targetFramework="MonoAndroid60" />
Expand Down
4 changes: 2 additions & 2 deletions examples/Benchmarkr/iOS/Benchmarkr.iOS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
<HintPath>..\packages\Stateless.2.5.84\lib\portable-net45+wp8+win8+wpa81+monotouch+monoandroid\Stateless.dll</HintPath>
</Reference>
<Reference Include="Realm">
<HintPath>..\packages\Realm.0.81.0\lib\Xamarin.iOS10\Realm.dll</HintPath>
<HintPath>..\packages\Realm.0.82.0\lib\Xamarin.iOS10\Realm.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand All @@ -160,5 +160,5 @@
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
<Import Project="..\packages\Fody.1.29.4\build\portable-net+sl+win+wpa+wp\Fody.targets" Condition="Exists('..\packages\Fody.1.29.4\build\portable-net+sl+win+wpa+wp\Fody.targets')" />
<Import Project="..\packages\Xamarin.Forms.2.3.2.127\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.targets" Condition="Exists('..\packages\Xamarin.Forms.2.3.2.127\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.targets')" />
<Import Project="..\packages\Realm.0.81.0\build\Realm.targets" Condition="Exists('..\packages\Realm.0.81.0\build\Realm.targets')" />
<Import Project="..\packages\Realm.0.82.0\build\Realm.targets" Condition="Exists('..\packages\Realm.0.82.0\build\Realm.targets')" />
</Project>
Loading

0 comments on commit 2f63e7e

Please sign in to comment.