From c405db685fc52e740ec95515d4531bf82f604a05 Mon Sep 17 00:00:00 2001 From: chenqiyang <1406175257@qq.com> Date: 星期一, 09 八月 2021 17:13:02 +0800 Subject: [PATCH] 2021-8-9 增加linphone .a库及resurces文件 --- Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK.sln | 25 ++++++++++++ Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/ApiDefinition.cs | 76 +++++++++++++++++++++++++++++++++++-- Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Resources/ic_esvideo_on_back.png | 0 Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/arm64-apple-ios.swiftmodule | 0 Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/Project/armv7.swiftsourceinfo | 0 Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK.csproj | 19 +++++++++ Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/Project/arm64.swiftsourceinfo | 0 Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/arm64.swiftmodule | 0 Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/armv7-apple-ios.swiftdoc | 0 Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Resources/ic_esvideo_on_takephoto_select.png | 0 Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo | 0 Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/arm64-apple-ios.swiftdoc | 0 Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/armv7.swiftmodule | 0 Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Resources/ic_esvideo_on_unlock_select.png | 0 Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Resources/ic_esvideo_on_takephoto_unselect.png | 0 Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/armv7.swiftdoc | 0 Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/arm.swiftdoc | 0 Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/arm.swiftmodule | 0 Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/libHDLLinPhoneSDK.a | 0 Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/Project/armv7-apple-ios.swiftsourceinfo | 0 Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Resources/ic_esvideo_on_answer.png | 0 Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/armv7-apple-ios.swiftmodule | 0 Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Resources/ic_esvideo_on_hangup.png | 0 Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/arm64.swiftdoc | 0 Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Resources/ic_esvideo_on_unlock_unselect.png | 0 Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/Project/arm.swiftsourceinfo | 0 26 files changed, 115 insertions(+), 5 deletions(-) diff --git a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/ApiDefinition.cs b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/ApiDefinition.cs index 5e85132..f78ffac 100644 --- a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/ApiDefinition.cs +++ b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/ApiDefinition.cs @@ -1,11 +1,77 @@ -锘縰sing System; - +锘縰sing Foundation; using ObjCRuntime; -using Foundation; using UIKit; namespace Shared.IOS.HDLLinphoneSDK { - -} + //[Static] + //[Verify(ConstantsInterfaceAssociation)] + //partial interface Constants + //{ + // // extern NSString *const _Nonnull LCCallDelegateOpenDoorSuccess; + // [Field("LCCallDelegateOpenDoorSuccess", "__Internal")] + // NSString LCCallDelegateOpenDoorSuccess { get; } + //} + // @protocol HDLLinphoneCallDelegate <NSObject> + [Protocol, Model(AutoGeneratedName = true)] + [BaseType(typeof(NSObject))] + interface HDLLinphoneCallDelegate + { + // @required -(void)onAnswerAction; + [Abstract] + [Export("onAnswerAction")] + void OnAnswerAction(); + + // @required -(void)onRejectCallAction; + [Abstract] + [Export("onRejectCallAction")] + void OnRejectCallAction(); + + // @required -(void)onUnlockAction; + [Abstract] + [Export("onUnlockAction")] + void OnUnlockAction(); + + // @required -(void)onHangUpAction:(int)callDuration; + [Abstract] + [Export("onHangUpAction:")] + void OnHangUpAction(int callDuration); + + // @required -(void)onScreenshotSuccessfulAction:(UIImage * _Nonnull)image; + [Abstract] + [Export("onScreenshotSuccessfulAction:")] + void OnScreenshotSuccessfulAction(UIImage image); + } + + //// @interface HDLLinphoneCallDelegate : NSObject + //[BaseType(typeof(NSObject))] + //interface HDLLinphoneCallDelegate + //{ + //} + + // @interface HDLLinPhoneSDK : NSObject + [BaseType(typeof(NSObject))] + interface HDLLinPhoneSDK + { + [Wrap("WeakHdlLinphoneCallDelegate")] + HDLLinphoneCallDelegate HdlLinphoneCallDelegate { get; set; } + + // @property (nonatomic, weak) id<HDLLinphoneCallDelegate> hdlLinphoneCallDelegate; + [NullAllowed, Export("hdlLinphoneCallDelegate", ArgumentSemantic.Weak)] + NSObject WeakHdlLinphoneCallDelegate { get; set; } + + // +(instancetype)instance; + [Static] + [Export("instance")] + HDLLinPhoneSDK Instance(); + + // -(void)login:(NSString *)username password:(NSString *)pwd domain:(NSString *)domain; + [Export("login:password:domain:")] + void Login(string username, string pwd, string domain); + + // -(void)initalLinPhone; + [Export("initalLinPhone")] + void InitalLinPhone(); + } +} diff --git a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/Project/arm.swiftsourceinfo b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/Project/arm.swiftsourceinfo new file mode 100644 index 0000000..dd96f8e --- /dev/null +++ b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/Project/arm.swiftsourceinfo Binary files differ diff --git a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo new file mode 100644 index 0000000..c608b45 --- /dev/null +++ b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo Binary files differ diff --git a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/Project/arm64.swiftsourceinfo b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/Project/arm64.swiftsourceinfo new file mode 100644 index 0000000..c608b45 --- /dev/null +++ b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/Project/arm64.swiftsourceinfo Binary files differ diff --git a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/Project/armv7-apple-ios.swiftsourceinfo b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/Project/armv7-apple-ios.swiftsourceinfo new file mode 100644 index 0000000..dd96f8e --- /dev/null +++ b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/Project/armv7-apple-ios.swiftsourceinfo Binary files differ diff --git a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/Project/armv7.swiftsourceinfo b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/Project/armv7.swiftsourceinfo new file mode 100644 index 0000000..dd96f8e --- /dev/null +++ b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/Project/armv7.swiftsourceinfo Binary files differ diff --git a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/arm.swiftdoc b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/arm.swiftdoc new file mode 100644 index 0000000..ae22340 --- /dev/null +++ b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/arm.swiftdoc Binary files differ diff --git a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/arm.swiftmodule b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/arm.swiftmodule new file mode 100644 index 0000000..cb8f8be --- /dev/null +++ b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/arm.swiftmodule Binary files differ diff --git a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/arm64-apple-ios.swiftdoc b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/arm64-apple-ios.swiftdoc new file mode 100644 index 0000000..6eec8e6 --- /dev/null +++ b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/arm64-apple-ios.swiftdoc Binary files differ diff --git a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/arm64-apple-ios.swiftmodule b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/arm64-apple-ios.swiftmodule new file mode 100644 index 0000000..6ba9892 --- /dev/null +++ b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/arm64-apple-ios.swiftmodule Binary files differ diff --git a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/arm64.swiftdoc b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/arm64.swiftdoc new file mode 100644 index 0000000..6eec8e6 --- /dev/null +++ b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/arm64.swiftdoc Binary files differ diff --git a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/arm64.swiftmodule b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/arm64.swiftmodule new file mode 100644 index 0000000..6ba9892 --- /dev/null +++ b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/arm64.swiftmodule Binary files differ diff --git a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/armv7-apple-ios.swiftdoc b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/armv7-apple-ios.swiftdoc new file mode 100644 index 0000000..ae22340 --- /dev/null +++ b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/armv7-apple-ios.swiftdoc Binary files differ diff --git a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/armv7-apple-ios.swiftmodule b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/armv7-apple-ios.swiftmodule new file mode 100644 index 0000000..cb8f8be --- /dev/null +++ b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/armv7-apple-ios.swiftmodule Binary files differ diff --git a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/armv7.swiftdoc b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/armv7.swiftdoc new file mode 100644 index 0000000..ae22340 --- /dev/null +++ b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/armv7.swiftdoc Binary files differ diff --git a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/armv7.swiftmodule b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/armv7.swiftmodule new file mode 100644 index 0000000..cb8f8be --- /dev/null +++ b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/HDLLinPhoneSDK.swiftmodule/armv7.swiftmodule Binary files differ diff --git a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/libHDLLinPhoneSDK.a b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/libHDLLinPhoneSDK.a new file mode 100644 index 0000000..42b4bdf --- /dev/null +++ b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/libHDLLinPhoneSDK.a Binary files differ diff --git a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Resources/ic_esvideo_on_answer.png b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Resources/ic_esvideo_on_answer.png new file mode 100644 index 0000000..173927f --- /dev/null +++ b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Resources/ic_esvideo_on_answer.png Binary files differ diff --git a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Resources/ic_esvideo_on_back.png b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Resources/ic_esvideo_on_back.png new file mode 100644 index 0000000..c14f703 --- /dev/null +++ b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Resources/ic_esvideo_on_back.png Binary files differ diff --git a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Resources/ic_esvideo_on_hangup.png b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Resources/ic_esvideo_on_hangup.png new file mode 100644 index 0000000..01258fc --- /dev/null +++ b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Resources/ic_esvideo_on_hangup.png Binary files differ diff --git a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Resources/ic_esvideo_on_takephoto_select.png b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Resources/ic_esvideo_on_takephoto_select.png new file mode 100644 index 0000000..2cb103f --- /dev/null +++ b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Resources/ic_esvideo_on_takephoto_select.png Binary files differ diff --git a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Resources/ic_esvideo_on_takephoto_unselect.png b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Resources/ic_esvideo_on_takephoto_unselect.png new file mode 100644 index 0000000..e4a4555 --- /dev/null +++ b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Resources/ic_esvideo_on_takephoto_unselect.png Binary files differ diff --git a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Resources/ic_esvideo_on_unlock_select.png b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Resources/ic_esvideo_on_unlock_select.png new file mode 100644 index 0000000..8f5af24 --- /dev/null +++ b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Resources/ic_esvideo_on_unlock_select.png Binary files differ diff --git a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Resources/ic_esvideo_on_unlock_unselect.png b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Resources/ic_esvideo_on_unlock_unselect.png new file mode 100644 index 0000000..e84d330 --- /dev/null +++ b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Resources/ic_esvideo_on_unlock_unselect.png Binary files differ diff --git a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK.csproj b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK.csproj index 89b75f5..d77296a 100644 --- a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK.csproj +++ b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK.csproj @@ -46,5 +46,24 @@ <ItemGroup> <ObjcBindingCoreSource Include="Structs.cs" /> </ItemGroup> + <ItemGroup> + <NativeReference Include="Library\libHDLLinPhoneSDK.a"> + <Kind>Static</Kind> + <SmartLink>False</SmartLink> + </NativeReference> + <NativeReference Include="Library\HDLLinPhoneSDK.swiftmodule"> + <Kind>Framework</Kind> + <SmartLink>False</SmartLink> + </NativeReference> + </ItemGroup> + <ItemGroup> + <BundleResource Include="Resources\ic_esvideo_on_answer.png" /> + <BundleResource Include="Resources\ic_esvideo_on_back.png" /> + <BundleResource Include="Resources\ic_esvideo_on_hangup.png" /> + <BundleResource Include="Resources\ic_esvideo_on_takephoto_select.png" /> + <BundleResource Include="Resources\ic_esvideo_on_takephoto_unselect.png" /> + <BundleResource Include="Resources\ic_esvideo_on_unlock_select.png" /> + <BundleResource Include="Resources\ic_esvideo_on_unlock_unselect.png" /> + </ItemGroup> <Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.ObjCBinding.CSharp.targets" /> </Project> \ No newline at end of file diff --git a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK.sln b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK.sln new file mode 100644 index 0000000..fe3a077 --- /dev/null +++ b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK.sln @@ -0,0 +1,25 @@ +锘� +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.810.6 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Shared.IOS.HDLLinphoneSDK", "Shared.IOS.HDLLinphoneSDK.csproj", "{9D978BB5-0B26-40BA-A7EC-C629B808D2BE}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9D978BB5-0B26-40BA-A7EC-C629B808D2BE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9D978BB5-0B26-40BA-A7EC-C629B808D2BE}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9D978BB5-0B26-40BA-A7EC-C629B808D2BE}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9D978BB5-0B26-40BA-A7EC-C629B808D2BE}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {25350671-2BBF-4405-BED6-D69DEB6D29CD} + EndGlobalSection +EndGlobal -- Gitblit v1.8.0