diff --git a/AppsFlyerBinding.iOS/AppsFlyerBinding.iOS.csproj b/AppsFlyerBinding.iOS/AppsFlyerBinding.iOS.csproj index df2a776..ff044d3 100644 --- a/AppsFlyerBinding.iOS/AppsFlyerBinding.iOS.csproj +++ b/AppsFlyerBinding.iOS/AppsFlyerBinding.iOS.csproj @@ -1,7 +1,6 @@ - + - xamarin.ios10;net6.0-ios - true + net8.0-ios enable true true @@ -25,6 +24,10 @@ README.md 6.13.1 + true + snupkg + true + true @@ -61,4 +64,4 @@ - \ No newline at end of file + diff --git a/AppsFlyerXamarinBindingiOS.sln b/AppsFlyerXamarinBindingiOS.sln index 43bf4a8..1956282 100644 --- a/AppsFlyerXamarinBindingiOS.sln +++ b/AppsFlyerXamarinBindingiOS.sln @@ -5,8 +5,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AppsFlyerBinding.iOS", "App EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sample.NuGet.NET", "samples\Sample.NuGet.NET\Sample.NuGet.NET.csproj", "{E6920EAB-A209-4837-B049-9C73B73616E9}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sample.NuGet.Xamarin", "samples\Sample.NuGet.Xamarin\Sample.NuGet.Xamarin.csproj", "{208E2B7F-6431-4D94-866A-2DF7A823C359}" -EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -41,17 +39,5 @@ Global {E6920EAB-A209-4837-B049-9C73B73616E9}.Debug|iPhone.Build.0 = Debug|Any CPU {E6920EAB-A209-4837-B049-9C73B73616E9}.Release|iPhone.ActiveCfg = Release|Any CPU {E6920EAB-A209-4837-B049-9C73B73616E9}.Release|iPhone.Build.0 = Release|Any CPU - {208E2B7F-6431-4D94-866A-2DF7A823C359}.Debug|Any CPU.ActiveCfg = Debug|iPhoneSimulator - {208E2B7F-6431-4D94-866A-2DF7A823C359}.Debug|Any CPU.Build.0 = Debug|iPhoneSimulator - {208E2B7F-6431-4D94-866A-2DF7A823C359}.Release|Any CPU.ActiveCfg = Release|iPhoneSimulator - {208E2B7F-6431-4D94-866A-2DF7A823C359}.Release|Any CPU.Build.0 = Release|iPhoneSimulator - {208E2B7F-6431-4D94-866A-2DF7A823C359}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator - {208E2B7F-6431-4D94-866A-2DF7A823C359}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator - {208E2B7F-6431-4D94-866A-2DF7A823C359}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator - {208E2B7F-6431-4D94-866A-2DF7A823C359}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator - {208E2B7F-6431-4D94-866A-2DF7A823C359}.Debug|iPhone.ActiveCfg = Debug|iPhone - {208E2B7F-6431-4D94-866A-2DF7A823C359}.Debug|iPhone.Build.0 = Debug|iPhone - {208E2B7F-6431-4D94-866A-2DF7A823C359}.Release|iPhone.ActiveCfg = Release|iPhone - {208E2B7F-6431-4D94-866A-2DF7A823C359}.Release|iPhone.Build.0 = Release|iPhone EndGlobalSection EndGlobal diff --git a/global.json b/global.json index cb6f006..c9c2078 100644 --- a/global.json +++ b/global.json @@ -1,13 +1,5 @@ -{ - "sdk": - { - "version": "6.0.405" - }, - "msbuild-sdks": - { - "MSBuild.Sdk.Extras": "3.0.44", - "Microsoft.Build.Traversal": "3.1.6", - "Microsoft.Build.NoTargets": "3.4.0", - "Xamarin.Legacy.Sdk": "0.1.2-alpha6" - } -} \ No newline at end of file +{ + "sdk": { + "version": "8.0.302" + } +} diff --git a/pack.sh b/pack.sh index 7868f04..4a270d1 100755 --- a/pack.sh +++ b/pack.sh @@ -1,8 +1,9 @@ -rm -rf AppsFlyerBinding.iOS/bin -rm -rf AppsFlyerBinding.iOS/obj +mkdir -p nugets +rm nugets/* dotnet clean AppsFlyerBinding.iOS/ dotnet restore AppsFlyerBinding.iOS/ dotnet pack -c Release AppsFlyerBinding.iOS/AppsFlyerBinding.iOS.csproj -mv AppsFlyerBinding.iOS/bin/Release/AppsFlyerXamarinBinding*.nupkg nugets/ \ No newline at end of file +mv AppsFlyerBinding.iOS/bin/Release/AppsFlyerXamarinBinding*.nupkg nugets/ +mv AppsFlyerBinding.iOS/bin/Release/AppsFlyerXamarinBinding*.snupkg nugets/ diff --git a/samples/Sample.NuGet.NET/Sample.NuGet.NET.csproj b/samples/Sample.NuGet.NET/Sample.NuGet.NET.csproj index cd82252..ba74158 100644 --- a/samples/Sample.NuGet.NET/Sample.NuGet.NET.csproj +++ b/samples/Sample.NuGet.NET/Sample.NuGet.NET.csproj @@ -1,6 +1,6 @@ - net6.0-ios16.1 + net8.0-ios Exe enable true @@ -18,7 +18,7 @@ - + diff --git a/samples/Sample.NuGet.Xamarin/AppDelegate.cs b/samples/Sample.NuGet.Xamarin/AppDelegate.cs deleted file mode 100644 index 7c2a756..0000000 --- a/samples/Sample.NuGet.Xamarin/AppDelegate.cs +++ /dev/null @@ -1,134 +0,0 @@ -using Foundation; -using UIKit; - -using AppsFlyerXamarinBinding; -using System; - -namespace Sample.NuGet.Xamarin -{ - // The UIApplicationDelegate for the application. This class is responsible for launching the - // User Interface of the application, as well as listening (and optionally responding) to application events from iOS. - [Register ("AppDelegate")] - public class AppDelegate : UIResponder, IUIApplicationDelegate { - - [Export("window")] - public UIWindow Window { get; set; } - - [Export ("application:didFinishLaunchingWithOptions:")] - public bool FinishedLaunching (UIApplication application, NSDictionary launchOptions) - { - // create a new window instance based on the screen size - Window = new UIWindow(UIScreen.MainScreen.Bounds); - // create a UIViewController with a single UILabel - var vc = new UIViewController(); - vc.View.AddSubview(new UILabel(Window.Frame) - { - Tag = 1, - BackgroundColor = UIColor.SystemBackground, - TextAlignment = UITextAlignment.Center, - Text = "Hello, iOS!", - AutoresizingMask = UIViewAutoresizing.All, - }); ; - Window.RootViewController = vc; - // make the window visible - Window.MakeKeyAndVisible(); - - - AppsFlyerLib.Shared.IsDebug = true; - AppsFlyerLib.Shared.CurrencyCode = "GBP"; - AppsFlyerLib.Shared.OneLinkCustomDomains = new string[] { "automationsdk.blaster.afsdktests.com" }; - AppsFlyerLib.Shared.AppsFlyerDevKey = "4UGrDF4vFvPLbHq5bXtCza"; // Replace with your DevKey - AppsFlyerLib.Shared.AppleAppID = "753258300"; // Replace with your Apple ID - AppsFlyerLib.Shared.AppInviteOneLinkID = "E2bM"; // Replace with your OneLink ID - AppsFlyerLib.Shared.CurrentDeviceLanguage = "en-en12"; - - string[] networks = { "all", "another" }; - AppsFlyerLib.Shared.SetSharingFilterForPartners(networks); - AppsFlyerLib.Shared.AddPushNotificationDeepLinkPath(new string[] { "key1", "key2" }); - // Conversion data callbacks - var GCDDelegate = new AppsFlyerConversionDataDelegate(); - AppsFlyerLib.Shared.Delegate = GCDDelegate; - // DeepLink callbacks - var deepLinkDelegate = new MyAppsFlyerDeepLinkDelegate(); - AppsFlyerLib.Shared.DeepLinkDelegate = deepLinkDelegate; - - var partnerInfo = new NSDictionary("id", "id123", "type", 1, "desc", "Description example"); - AppsFlyerLib.Shared.SetPartnerData("test_partner", partnerInfo); - - return true; - } - - [Export("applicationDidBecomeActive:")] - public void OnActivated(UIApplication application) - { - AppsFlyerLib.Shared.Start(); - } - } - - public class AppsFlyerConversionDataDelegate : AppsFlyerLibDelegate - { - public AppsFlyerConversionDataDelegate() - { - Console.WriteLine("AppsFlyerConversionDataDelegate Initialized"); - } - - public override void OnAppOpenAttribution(NSDictionary attributionData) - { - String message = "OnAppOpenAttribution:\n"; - foreach (var kvp in attributionData) - { - message = message + kvp.Key.ToString() + " = " + kvp.Value.ToString() + "\n"; - } - Console.WriteLine(message); - } - - public override void OnAppOpenAttributionFailure(NSError error) - { - - } - - public override void OnConversionDataSuccess(NSDictionary conversionInfo) - { - String message = "OnConversionDataSuccess:\n"; - foreach (var kvp in conversionInfo) - { - if (kvp.Value != null) - { - message = message + kvp.Key.ToString() + " = " + kvp.Value.ToString() + "\n"; - } - } - message = message + "Timestamp:" + DateTime.Now; - Console.WriteLine(message); - } - - public override void OnConversionDataFail(NSError error) - { - - } - } - - public class MyAppsFlyerDeepLinkDelegate : AppsFlyerDeepLinkDelegate - { - public MyAppsFlyerDeepLinkDelegate() - { - Console.WriteLine("MyAppsFlyerDeepLinkDelegate Initialized"); - } - - public override void DidResolveDeepLink(AppsFlyerDeepLinkResult result) - { - AppsFlyerDeepLink deepLink = result.deepLink; - if (deepLink != null) - { - Console.WriteLine("DDL: " + result.deepLink.toString()); - string message = result.deepLink.toString(); - Console.WriteLine(message); - } - else - { - Console.WriteLine("DDL: " + result.status); - } - } - } -} - - diff --git a/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Contents.json b/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Contents.json deleted file mode 100644 index fc9d330..0000000 --- a/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Contents.json +++ /dev/null @@ -1,117 +0,0 @@ -{ - "images": [ - { - "scale": "2x", - "size": "20x20", - "idiom": "iphone", - "filename": "Icon40.png" - }, - { - "scale": "3x", - "size": "20x20", - "idiom": "iphone", - "filename": "Icon60.png" - }, - { - "scale": "2x", - "size": "29x29", - "idiom": "iphone", - "filename": "Icon58.png" - }, - { - "scale": "3x", - "size": "29x29", - "idiom": "iphone", - "filename": "Icon87.png" - }, - { - "scale": "2x", - "size": "40x40", - "idiom": "iphone", - "filename": "Icon80.png" - }, - { - "scale": "3x", - "size": "40x40", - "idiom": "iphone", - "filename": "Icon120.png" - }, - { - "scale": "2x", - "size": "60x60", - "idiom": "iphone", - "filename": "Icon120.png" - }, - { - "scale": "3x", - "size": "60x60", - "idiom": "iphone", - "filename": "Icon180.png" - }, - { - "scale": "1x", - "size": "20x20", - "idiom": "ipad", - "filename": "Icon20.png" - }, - { - "scale": "2x", - "size": "20x20", - "idiom": "ipad", - "filename": "Icon40.png" - }, - { - "scale": "1x", - "size": "29x29", - "idiom": "ipad", - "filename": "Icon29.png" - }, - { - "scale": "2x", - "size": "29x29", - "idiom": "ipad", - "filename": "Icon58.png" - }, - { - "scale": "1x", - "size": "40x40", - "idiom": "ipad", - "filename": "Icon40.png" - }, - { - "scale": "2x", - "size": "40x40", - "idiom": "ipad", - "filename": "Icon80.png" - }, - { - "scale": "1x", - "size": "76x76", - "idiom": "ipad", - "filename": "Icon76.png" - }, - { - "scale": "2x", - "size": "76x76", - "idiom": "ipad", - "filename": "Icon152.png" - }, - { - "scale": "2x", - "size": "83.5x83.5", - "idiom": "ipad", - "filename": "Icon167.png" - }, - { - "scale": "1x", - "size": "1024x1024", - "idiom": "ios-marketing", - "filename": "Icon1024.png" - } - ], - "properties": {}, - "info": { - "version": 1, - "author": "xcode" - } -} diff --git a/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon1024.png b/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon1024.png deleted file mode 100644 index 9174c98..0000000 Binary files a/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon1024.png and /dev/null differ diff --git a/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon120.png b/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon120.png deleted file mode 100644 index 9c60a17..0000000 Binary files a/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon120.png and /dev/null differ diff --git a/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon152.png b/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon152.png deleted file mode 100644 index 448d6ef..0000000 Binary files a/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon152.png and /dev/null differ diff --git a/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon167.png b/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon167.png deleted file mode 100644 index 8524768..0000000 Binary files a/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon167.png and /dev/null differ diff --git a/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon180.png b/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon180.png deleted file mode 100644 index 60a6470..0000000 Binary files a/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon180.png and /dev/null differ diff --git a/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon20.png b/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon20.png deleted file mode 100644 index 45268a6..0000000 Binary files a/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon20.png and /dev/null differ diff --git a/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon29.png b/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon29.png deleted file mode 100644 index 6a6c77a..0000000 Binary files a/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon29.png and /dev/null differ diff --git a/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon40.png b/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon40.png deleted file mode 100644 index cc7edcf..0000000 Binary files a/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon40.png and /dev/null differ diff --git a/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon58.png b/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon58.png deleted file mode 100644 index 1ad04f0..0000000 Binary files a/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon58.png and /dev/null differ diff --git a/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon60.png b/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon60.png deleted file mode 100644 index 2dd5262..0000000 Binary files a/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon60.png and /dev/null differ diff --git a/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon76.png b/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon76.png deleted file mode 100644 index b058cae..0000000 Binary files a/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon76.png and /dev/null differ diff --git a/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon80.png b/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon80.png deleted file mode 100644 index 02e47a2..0000000 Binary files a/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon80.png and /dev/null differ diff --git a/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon87.png b/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon87.png deleted file mode 100644 index 4954a4b..0000000 Binary files a/samples/Sample.NuGet.Xamarin/Assets.xcassets/AppIcon.appiconset/Icon87.png and /dev/null differ diff --git a/samples/Sample.NuGet.Xamarin/Entitlements.plist b/samples/Sample.NuGet.Xamarin/Entitlements.plist deleted file mode 100644 index 36a8706..0000000 --- a/samples/Sample.NuGet.Xamarin/Entitlements.plist +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/samples/Sample.NuGet.Xamarin/Info.plist b/samples/Sample.NuGet.Xamarin/Info.plist deleted file mode 100644 index f6d30a2..0000000 --- a/samples/Sample.NuGet.Xamarin/Info.plist +++ /dev/null @@ -1,48 +0,0 @@ - - - - - CFBundleDisplayName - Sample.NuGet.Xamarin - CFBundleIdentifier - com.appsflyer.Sample-NuGet-Xamarin - CFBundleShortVersionString - 1.0 - CFBundleVersion - 1.0 - LSRequiresIPhoneOS - - MinimumOSVersion - 10.0 - UIDeviceFamily - - 1 - 2 - - UILaunchStoryboardName - LaunchScreen - UIMainStoryboardFile - Main - UIMainStoryboardFile~ipad - Main - UIRequiredDeviceCapabilities - - armv7 - - UISupportedInterfaceOrientations - - UIInterfaceOrientationPortrait - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - UISupportedInterfaceOrientations~ipad - - UIInterfaceOrientationPortrait - UIInterfaceOrientationPortraitUpsideDown - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - XSAppIconAssets - Assets.xcassets/AppIcon.appiconset - - diff --git a/samples/Sample.NuGet.Xamarin/LaunchScreen.storyboard b/samples/Sample.NuGet.Xamarin/LaunchScreen.storyboard deleted file mode 100644 index 590690a..0000000 --- a/samples/Sample.NuGet.Xamarin/LaunchScreen.storyboard +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/Sample.NuGet.Xamarin/Main.cs b/samples/Sample.NuGet.Xamarin/Main.cs deleted file mode 100644 index 46b4b8f..0000000 --- a/samples/Sample.NuGet.Xamarin/Main.cs +++ /dev/null @@ -1,15 +0,0 @@ -using UIKit; - -namespace Sample.NuGet.Xamarin -{ - public class Application - { - // This is the main entry point of the application. - static void Main(string[] args) - { - // if you want to use a different Application Delegate class from "AppDelegate" - // you can specify it here. - UIApplication.Main(args, null, typeof(AppDelegate)); - } - } -} diff --git a/samples/Sample.NuGet.Xamarin/Main.storyboard b/samples/Sample.NuGet.Xamarin/Main.storyboard deleted file mode 100644 index 4003166..0000000 --- a/samples/Sample.NuGet.Xamarin/Main.storyboard +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/Sample.NuGet.Xamarin/Properties/AssemblyInfo.cs b/samples/Sample.NuGet.Xamarin/Properties/AssemblyInfo.cs deleted file mode 100644 index cb5fb35..0000000 --- a/samples/Sample.NuGet.Xamarin/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("Sample.NuGet.Xamarin")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("Sample.NuGet.Xamarin")] -[assembly: AssemblyCopyright("Copyright © 2017")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("50c7b8c9-e664-45af-b88e-0c9b8b9c1be1")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/samples/Sample.NuGet.Xamarin/Resources/LaunchScreen.xib b/samples/Sample.NuGet.Xamarin/Resources/LaunchScreen.xib deleted file mode 100644 index 384b5df..0000000 --- a/samples/Sample.NuGet.Xamarin/Resources/LaunchScreen.xib +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/Sample.NuGet.Xamarin/Sample.NuGet.Xamarin.csproj b/samples/Sample.NuGet.Xamarin/Sample.NuGet.Xamarin.csproj deleted file mode 100644 index 994e676..0000000 --- a/samples/Sample.NuGet.Xamarin/Sample.NuGet.Xamarin.csproj +++ /dev/null @@ -1,138 +0,0 @@ - - - - Debug - iPhoneSimulator - {208E2B7F-6431-4D94-866A-2DF7A823C359} - {FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - {edc1b0fa-90cd-4038-8fad-98fe74adb368} - Exe - Sample.NuGet.Xamarin - Sample.NuGet.Xamarin - Resources - true - NSUrlSessionHandler - PackageReference - automatic - - - true - portable - false - bin\iPhoneSimulator\Debug - DEBUG - prompt - 4 - x86_64 - SdkOnly - true - - - none - true - bin\iPhoneSimulator\Release - prompt - 4 - None - x86_64 - - - true - portable - false - bin\iPhone\Debug - DEBUG - prompt - 4 - ARM64 - Entitlements.plist - iPhone Developer - true - - - none - true - bin\iPhone\Release - prompt - 4 - Entitlements.plist - ARM64 - iPhone Developer - - - - - - - - - - - - - - - - false - - - false - - - false - - - false - - - false - - - false - - - false - - - false - - - false - - - false - - - false - - - false - - - false - - - false - - - - - - - - - - - - - - - - - - - ViewController.cs - - - - \ No newline at end of file diff --git a/samples/Sample.NuGet.Xamarin/ViewController.cs b/samples/Sample.NuGet.Xamarin/ViewController.cs deleted file mode 100644 index 42851dc..0000000 --- a/samples/Sample.NuGet.Xamarin/ViewController.cs +++ /dev/null @@ -1,25 +0,0 @@ -using Foundation; -using System; -using UIKit; - -namespace Sample.NuGet.Xamarin -{ - public partial class ViewController : UIViewController - { - public ViewController (IntPtr handle) : base (handle) - { - } - - public override void ViewDidLoad () - { - base.ViewDidLoad (); - // Perform any additional setup after loading the view, typically from a nib. - } - - public override void DidReceiveMemoryWarning () - { - base.DidReceiveMemoryWarning (); - // Release any cached data, images, etc that aren't in use. - } - } -} diff --git a/samples/Sample.NuGet.Xamarin/ViewController.designer.cs b/samples/Sample.NuGet.Xamarin/ViewController.designer.cs deleted file mode 100644 index ccc0124..0000000 --- a/samples/Sample.NuGet.Xamarin/ViewController.designer.cs +++ /dev/null @@ -1,18 +0,0 @@ -// WARNING -// -// This file has been generated automatically by Visual Studio from the outlets and -// actions declared in your storyboard file. -// Manual changes to this file will not be maintained. -// -using Foundation; -using System; -using System.CodeDom.Compiler; -using UIKit; - -namespace Sample.NuGet.Xamarin -{ - [Register ("ViewController")] - partial class ViewController - { - } -} diff --git a/samples/Sample.NuGet.Xamarin/nuget.config b/samples/Sample.NuGet.Xamarin/nuget.config deleted file mode 100644 index 251c08a..0000000 --- a/samples/Sample.NuGet.Xamarin/nuget.config +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - -