Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions AppsFlyerBinding.iOS/AppsFlyerBinding.iOS.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<Project Sdk="Xamarin.Legacy.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>xamarin.ios10;net6.0-ios</TargetFrameworks>
<NoNFloatUsing Condition="'$(TargetFramework)' == 'xamarin.ios10'">true</NoNFloatUsing>
<TargetFramework>net8.0-ios</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>true</ImplicitUsings>
<IsBindingProject>true</IsBindingProject>
Expand All @@ -25,6 +24,10 @@
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageVersion>6.13.1</PackageVersion>
<!-- <GeneratePackageOnBuild>true</GeneratePackageOnBuild> -->
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedAllSources>true</EmbedAllSources>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
</PropertyGroup>

<ItemGroup>
Expand Down Expand Up @@ -61,4 +64,4 @@
<ObjcBindingCoreSource Include="../source/StructsAndEnums.cs" Condition=" '$(EnableDefaultCompileItems)' == 'true'" />
<ObjcBindingApiDefinition Include="../source/ApiDefinition.cs" Condition=" '$(EnableDefaultCompileItems)' == 'true'" />
</ItemGroup>
</Project>
</Project>
14 changes: 0 additions & 14 deletions AppsFlyerXamarinBindingiOS.sln
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
18 changes: 5 additions & 13 deletions global.json
Original file line number Diff line number Diff line change
@@ -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"
}
}
{
"sdk": {
"version": "8.0.302"
}
}
7 changes: 4 additions & 3 deletions pack.sh
Original file line number Diff line number Diff line change
@@ -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/
mv AppsFlyerBinding.iOS/bin/Release/AppsFlyerXamarinBinding*.nupkg nugets/
mv AppsFlyerBinding.iOS/bin/Release/AppsFlyerXamarinBinding*.snupkg nugets/
4 changes: 2 additions & 2 deletions samples/Sample.NuGet.NET/Sample.NuGet.NET.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0-ios16.1</TargetFramework>
<TargetFramework>net8.0-ios</TargetFramework>
<OutputType>Exe</OutputType>
<Nullable>enable</Nullable>
<ImplicitUsings>true</ImplicitUsings>
Expand All @@ -18,7 +18,7 @@
<None Remove="AppsFlyerXamarinBinding" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AppsFlyerXamarinBinding" Version="6.12.*" />
<PackageReference Include="AppsFlyerXamarinBinding" Version="6.13.*" />
</ItemGroup>
<ItemGroup>
<ImageAsset Update="Assets.xcassets\AppIcon.appiconset\Icon167.png">
Expand Down
134 changes: 0 additions & 134 deletions samples/Sample.NuGet.Xamarin/AppDelegate.cs

This file was deleted.

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
6 changes: 0 additions & 6 deletions samples/Sample.NuGet.Xamarin/Entitlements.plist

This file was deleted.

Loading