Skip to content
This repository has been archived by the owner on Feb 29, 2020. It is now read-only.

Commit

Permalink
Fix iOS classic compilation issues
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbatum committed Dec 24, 2014
1 parent da537b1 commit 316a57a
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@
using Newtonsoft.Json;
using System;
using System.Collections.Generic;

#if __UNIFIED__
using Foundation;
#else
using MonoTouch.Foundation;
#endif

namespace Microsoft.WindowsAzure.MobileServices
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,14 @@
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Globalization;
using Foundation;
using Newtonsoft.Json;

#if __UNIFIED__
using Foundation;
#else
using MonoTouch.Foundation;
#endif

namespace Microsoft.WindowsAzure.MobileServices
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@ namespace Microsoft.WindowsAzure.MobileServices
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;

#if __UNIFIED__
using Foundation;
#else
using MonoTouch.Foundation;
#endif

/// <summary>
/// Define a class help to create/update/delete notification registrations
Expand Down

0 comments on commit 316a57a

Please sign in to comment.