Skip to content

Commit

Permalink
Update maui super resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
rmarinho committed Sep 8, 2024
1 parent da455a2 commit 5308275
Showing 1 changed file with 8 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0-android;net6.0-ios</TargetFrameworks>
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net6.0-windows10.0.19041.0</TargetFrameworks>
<TargetFrameworks>net8.0-android;net8.0-ios;net8.0-maccatalyst</TargetFrameworks>
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net8.0-windows10.0.19041.0</TargetFrameworks>

<OutputType>Exe</OutputType>
<RootNamespace>MauiSuperResolution</RootNamespace>
<UseMaui>true</UseMaui>
Expand Down Expand Up @@ -47,11 +48,13 @@

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" />
<PackageReference Include="Microsoft.ML.OnnxRuntime" Version="1.16.2" />
<PackageReference Include="Microsoft.ML.OnnxRuntime.Extensions" Version="0.9.0" />
<PackageReference Include="Microsoft.ML.OnnxRuntime.Managed" Version="1.16.2" />
<PackageReference Include="Microsoft.ML.OnnxRuntime" Version="1.19.2" />
<PackageReference Include="Microsoft.ML.OnnxRuntime.Extensions" Version="0.12.0" />
<PackageReference Include="Microsoft.ML.OnnxRuntime.Managed" Version="1.19.2" />
</ItemGroup>



<ItemGroup>
<MauiImage Update="Resources\Images\onnxruntime_logo.png">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
Expand Down

0 comments on commit 5308275

Please sign in to comment.