Skip to content

Commit f5f2d51

Browse files
authored
Merge pull request #592 from unoplatform/dev/nr/tpnet8update
net8 sdk
2 parents aab4828 + 9b0cb4b commit f5f2d51

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

build-samples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ steps:
2626
Set-PSDebug -Trace 1
2727
Write-Host "${{ parameters.path }}"
2828
29-
& $env:msbuildpath "${{ parameters.path }}" /r /p:AndroidAddKeepAlives=false /p:Configuration=Release /p:WasmShellMonoRuntimeExecutionMode=Interpreter /p:PublishTrimmed=false /p:WasmShellILLinkerEnabled=false /p:RunAOTCompilation=false /p:MtouchUseLlvm=false /ds "/bl:$(build.artifactstagingdirectory)\$(Agent.JobName).binlog" ;
29+
dotnet build "${{ parameters.path }}" /p:AndroidAddKeepAlives=false /p:Configuration=Release /p:WasmShellMonoRuntimeExecutionMode=Interpreter /p:PublishTrimmed=false /p:WasmShellILLinkerEnabled=false /p:RunAOTCompilation=false /p:MtouchUseLlvm=false "/bl:$(build.artifactstagingdirectory)\$(Agent.JobName).binlog" ;
3030
3131
$folderPath = [System.IO.Path]::GetDirectoryName("${{ parameters.path }}");
3232

build/templates/dotnet-install-windows.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
parameters:
2-
DotNetVersion: '7.0.401'
3-
UnoCheck_Version: '1.15.0'
4-
UnoCheck_Manifest: 'https://raw.githubusercontent.com/unoplatform/uno.check/fa8e6fb23797004fbd39f7572ec6a2653be2a0b1/manifests/uno.ui.manifest.json'
2+
DotNetVersion: '8.0.100-rc.2.23502.2'
3+
UnoCheck_Version: '1.17.0-dev.3'
4+
UnoCheck_Manifest: 'https://raw.githubusercontent.com/unoplatform/uno.check/519b147a80d92e35cac4b8f97855d9302c91b340/manifests/uno.ui-preview-major.manifest.json'
55

66
steps:
77

@@ -17,7 +17,7 @@ steps:
1717

1818
- powershell: |
1919
& dotnet tool update --global uno.check --version ${{ parameters.UnoCheck_Version }} --add-source https://api.nuget.org/v3/index.json
20-
& uno-check -v --ci --non-interactive --fix --skip androidsdk --skip androidemulator --skip xcode --skip gtk3 --skip vswin --skip vsmac --manifest ${{ parameters.UnoCheck_Manifest }}
20+
& uno-check --pre -v --ci --non-interactive --fix --skip androidsdk --skip androidemulator --skip xcode --skip gtk3 --skip vswin --skip vsmac --manifest ${{ parameters.UnoCheck_Manifest }}
2121
displayName: Install .NET Workloads
2222
errorActionPreference: continue
2323
ignoreLASTEXITCODE: true

reference/TubePlayer/TubePlayer.Base/TubePlayer.Base.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.Build.NoTargets/3.7.0">
22
<PropertyGroup>
33
<!-- NOTE: The TargetFramework is required by MSBuild but not used as this project is not built. -->
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<EnableDefaultItems>false</EnableDefaultItems>
66
</PropertyGroup>
77

reference/TubePlayer/TubePlayer.Mobile/TubePlayer.Mobile.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net7.0-android;net7.0-ios;net7.0-maccatalyst</TargetFrameworks>
3+
<TargetFrameworks>net8.0-android;net8.0-ios;net8.0-maccatalyst</TargetFrameworks>
44
<TargetFrameworks Condition="'$(OverrideTargetFrameworks)'!=''">$(OverrideTargetFrameworks)</TargetFrameworks>
55
<SingleProject>true</SingleProject>
66
<OutputType>Exe</OutputType>

reference/TubePlayer/TubePlayer.Skia.Gtk/TubePlayer.Skia.Gtk.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<OutputType Condition="'$(Configuration)'=='Release'">WinExe</OutputType>
44
<OutputType Condition="'$(Configuration)'=='Debug'">Exe</OutputType>
5-
<TargetFramework>net7.0</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66
<ApplicationManifest>app.manifest</ApplicationManifest>
77
</PropertyGroup>
88
<ItemGroup>

reference/TubePlayer/TubePlayer.Wasm/TubePlayer.Wasm.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<NoWarn>$(NoWarn);NU1504;NU1505;NU1701</NoWarn>
66
<!-- Disabled due to issue with Central Package Management with implicit using -->
77
<ImplicitUsings>disable</ImplicitUsings>

reference/TubePlayer/TubePlayer.Windows/TubePlayer.Windows.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>WinExe</OutputType>
4-
<TargetFramework>net7.0-windows10.0.19041.0</TargetFramework>
4+
<TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>
55
<RootNamespace>TubePlayer.Windows</RootNamespace>
66
<ApplicationManifest>app.manifest</ApplicationManifest>
77
<Platforms>x86;x64;arm64</Platforms>

reference/TubePlayer/TubePlayer/TubePlayer.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows')) or '$(EnableWindowsTargeting)' == 'true'">$(TargetFrameworks);net7.0-windows10.0.19041</TargetFrameworks>
4-
<TargetFrameworks>$(TargetFrameworks);net7.0;net7.0-android;net7.0-ios;net7.0-maccatalyst</TargetFrameworks>
3+
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows')) or '$(EnableWindowsTargeting)' == 'true'">$(TargetFrameworks);net8.0-windows10.0.19041</TargetFrameworks>
4+
<TargetFrameworks>$(TargetFrameworks);net8.0;net8.0-android;net8.0-ios;net8.0-maccatalyst</TargetFrameworks>
55
<TargetFrameworks Condition="'$(OverrideTargetFrameworks)'!=''">$(OverrideTargetFrameworks)</TargetFrameworks>
66

77
<!-- Ensures the .xr.xml files are generated in a proper layout folder -->

0 commit comments

Comments
 (0)