Skip to content

Commit

Permalink
Merge pull request #11 from newrelic/release_0.0.2
Browse files Browse the repository at this point in the history
release 0.0.2
  • Loading branch information
ndesai-newrelic authored Jul 17, 2023
2 parents ce7972f + b4418b7 commit 26fd962
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0-android</TargetFramework>
<TargetFrameworks>net7.0-android;net6.0-android</TargetFrameworks>
<SupportedOSPlatformVersion>21</SupportedOSPlatformVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
Expand Down
8 changes: 7 additions & 1 deletion NewRelic.MAUI.Plugin/NewRelic.MAUI.Plugin.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net6.0-android;net6.0-ios</TargetFrameworks>
<TargetFrameworks>net7.0;net7.0-android;net7.0-ios;net6.0;net6.0-android;net6.0-ios</TargetFrameworks>
<!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET -->
<!-- <TargetFrameworks>$(TargetFrameworks);net7.0-tizen</TargetFrameworks> -->
<UseMaui>true</UseMaui>
Expand Down Expand Up @@ -37,6 +37,12 @@
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0-ios'">
<Compile Include="Platforms\iOS\**\*.cs" />
</ItemGroup>-->
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0-android'">
<PackageReference Include="NewRelic.MAUI.Android.Binding" Version="6.11.1.1" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0-ios'">
<PackageReference Include="NewRelic.MAUI.iOS.Binding" Version="7.4.5.1" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0-android'">
<PackageReference Include="NewRelic.MAUI.Android.Binding" Version="6.11.1.1" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion NewRelic.MAUI.iOS.Binding/NewRelic.MAUI.iOS.Binding.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0-ios</TargetFramework>
<TargetFrameworks>net7.0-ios;net6.0-ios</TargetFrameworks>
<Nullable>enable</Nullable>
<ImplicitUsings>true</ImplicitUsings>
<PackageId>NewRelic.MAUI.iOS.Binding</PackageId>
Expand Down

0 comments on commit 26fd962

Please sign in to comment.