You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iot/projects/Demo/Demo.iOS/BaseUrl_iOS.cs

16 lines
274 B

using Demo.iOS;
using Foundation;
using Xamarin.Forms;
[assembly: Dependency(typeof(BaseUrl_iOS))]
namespace Demo.iOS
{
public class BaseUrl_iOS : IBaseUrl
{
public string Get()
{
return NSBundle.MainBundle.BundlePath;
}
}
}