Skip to content

Commit

Permalink
Support for .NET 8
Browse files Browse the repository at this point in the history
  • Loading branch information
tbragaf committed May 14, 2024
1 parent b989fbd commit 84de45a
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<Project>
<PropertyGroup>
<DotnetVersion>net6.0</DotnetVersion>
<TargetDotnetVersions>net6.0;net8.0</TargetDotnetVersions>
<TargetDotnetVersionsWindows>net6.0-windows;net8.0-windows</TargetDotnetVersionsWindows>
<Platforms>x64;ARM64</Platforms>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<FileVersion>2.0.0.0</FileVersion>
Expand Down
2 changes: 1 addition & 1 deletion ReactViewControl.Avalonia/ReactViewControl.Avalonia.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>$(DotnetVersion)</TargetFramework>
<TargetFrameworks>$(TargetDotnetVersions)</TargetFrameworks>
<RootNamespace>ReactViewControl</RootNamespace>
<AssemblyTitle>ReactViewControl Avalonia</AssemblyTitle>
<Description>ReactViewControl for Avalonia powered by CefGlue</Description>
Expand Down
2 changes: 1 addition & 1 deletion ReactViewControl/ReactViewControl.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>$(DotnetVersion)-windows</TargetFramework>
<TargetFrameworks>$(TargetDotnetVersionsWindows)</TargetFrameworks>
<RootNamespace>ReactViewControl</RootNamespace>
<AssemblyTitle>ReactViewControl WPF</AssemblyTitle>
<Description>ReactViewControl for WPF powered by CefGlue</Description>
Expand Down
2 changes: 1 addition & 1 deletion ReactViewResources/ReactViewResources.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>$(DotnetVersion)</TargetFramework>
<TargetFrameworks>$(TargetDotnetVersions)</TargetFrameworks>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<FileVersion>2.0.0.0</FileVersion>
<Configurations>Debug;Release;ReleaseAvalonia;ReleaseWPF</Configurations>
Expand Down
2 changes: 1 addition & 1 deletion Sample.Avalonia/Sample.Avalonia.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>$(DotnetVersion)</TargetFramework>
<TargetFrameworks>$(TargetDotnetVersions)</TargetFrameworks>
<RollForward>LatestMajor</RollForward>
<Configurations>Debug;Release;ReleaseAvalonia;ReleaseWPF</Configurations>
<RuntimeIdentifiers>osx-x64;win-x64;osx-arm64;win-arm64</RuntimeIdentifiers>
Expand Down
2 changes: 1 addition & 1 deletion Tests.ReactView/Tests.ReactView.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>$(DotnetVersion)</TargetFramework>
<TargetFrameworks>$(TargetDotnetVersions)</TargetFrameworks>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<OutputPath>$(MSBuildProjectDirectory)\bin\</OutputPath>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
Expand Down

0 comments on commit 84de45a

Please sign in to comment.