Skip to content

Commit

Permalink
breaking: compiler targets net6.0
Browse files Browse the repository at this point in the history
`netstandard2.0` support removed
updated PeachpieMicrosoftCodeAnalysis
updated Parser
  • Loading branch information
jakubmisek committed Feb 21, 2025
1 parent 5bfaee2 commit 6f23b0d
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@

<PeachpieLibraryRegularExpressionsVersion>1.7.0</PeachpieLibraryRegularExpressionsVersion>
<MySqlConnectorVersion>2.0.0</MySqlConnectorVersion>
<ParserVersion>8.4.16509</ParserVersion>
<PeachpieMicrosoftCodeAnalysisVersion>3.7.1</PeachpieMicrosoftCodeAnalysisVersion>
<ParserVersion>8.4.16880</ParserVersion>
<PeachpieMicrosoftCodeAnalysisVersion>3.7.3</PeachpieMicrosoftCodeAnalysisVersion>

</PropertyGroup>

Expand Down
1 change: 0 additions & 1 deletion src/Peachpie.CodeAnalysis/Emitter/Model/PEModuleBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
using Pchp.CodeAnalysis.Utilities;
using Pchp.CodeAnalysis.CodeGen;
using Pchp.CodeAnalysis.Semantics;
using ReferenceEqualityComparer = Roslyn.Utilities.ReferenceEqualityComparer;

namespace Pchp.CodeAnalysis.Emit
{
Expand Down
2 changes: 1 addition & 1 deletion src/Peachpie.CodeAnalysis/Peachpie.CodeAnalysis.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<TargetFrameworks>net6.0</TargetFrameworks>
<NoWarn>$(NoWarn);1591</NoWarn>
<AssemblyName>Peachpie.CodeAnalysis</AssemblyName>
<PackageId>Peachpie.CodeAnalysis</PackageId>
Expand Down
1 change: 0 additions & 1 deletion src/Peachpie.CodeAnalysis/Symbols/TypeMap.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
using Roslyn.Utilities;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.PooledObjects;
using ReferenceEqualityComparer = Roslyn.Utilities.ReferenceEqualityComparer;

namespace Pchp.CodeAnalysis.Symbols
{
Expand Down
2 changes: 1 addition & 1 deletion src/Peachpie.NET.Sdk/Peachpie.NET.Sdk.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<_TargetFramework>netstandard2.0</_TargetFramework>
<_TargetFramework>net6.0</_TargetFramework>
<TargetFrameworks>$(_TargetFramework)</TargetFrameworks>
<AssemblyName>Peachpie.NET.Sdk</AssemblyName>

Expand Down

0 comments on commit 6f23b0d

Please sign in to comment.