Skip to content
This repository has been archived by the owner on Dec 28, 2023. It is now read-only.

Commit

Permalink
Update X.Forms version to 4.4.0.991537
Browse files Browse the repository at this point in the history
  • Loading branch information
rookiejava committed Apr 2, 2020
1 parent 94e427d commit c42deb4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 14 deletions.
13 changes: 2 additions & 11 deletions sample/Sample.Tizen/Sample.Tizen.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Tizen.NET.Sdk/1.0.9">

<!-- Property Group for Tizen40 Project -->
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>tizen40</TargetFramework>
Expand All @@ -12,18 +11,10 @@
<None Remove="res\c.mp4" />
<None Remove="res\d.mp4" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\src\Tizen.TV.UIControls.Forms\Tizen.TV.UIControls.Forms.csproj" />
<ProjectReference Include="..\Sample\Sample.csproj" />
</ItemGroup>


<!-- Include Nuget Package for Tizen Project building -->
<ItemGroup>
<PackageReference Include="Tizen.NET" Version="4.0.0">
<ExcludeAssets>Runtime</ExcludeAssets>
</PackageReference>
<PackageReference Include="Tizen.NET.Sdk" Version="1.0.1" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion sample/Sample/Sample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<!-- Include Nuget Package for Xamarin building -->
<ItemGroup>
<PackageReference Include="Xamarin.Forms" Version="4.3.0.991211" />
<PackageReference Include="Xamarin.Forms" Version="4.4.0.991537" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Tizen.TV.UIControls.Forms\Tizen.TV.UIControls.Forms.csproj" />
Expand Down
2 changes: 1 addition & 1 deletion src/Tizen.TV.UIControls.Forms/RecycleItemsView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ public object SelectedItem
set
{
SetValue(SelectedItemProperty, value);
ItemSelected?.Invoke(this, new SelectedItemChangedEventArgs(SelectedItem));
ItemSelected?.Invoke(this, new SelectedItemChangedEventArgs(SelectedItem, GetItemIndex(SelectedItem)));
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,13 @@
<EmbeddedResource Update="EmbeddingControls.xaml">
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
</EmbeddedResource>
<PackageReference Include="Xamarin.Forms" Version="4.3.0.991211" />
<PackageReference Include="Xamarin.Forms" Version="4.4.0.991537" />
</ItemGroup>

<PropertyGroup Condition=" '$(TargetFramework)' == 'tizen40' ">
<TargetFrameworkIdentifier>Tizen</TargetFrameworkIdentifier>
</PropertyGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'tizen40' ">
<Compile Include="Renderer\**\*.cs" />
<PackageReference Include="Tizen.NET" Version="4.0.0" />
Expand Down

0 comments on commit c42deb4

Please sign in to comment.