Skip to content

Commit

Permalink
updated roslyn version
Browse files Browse the repository at this point in the history
correctly signed, works on net461
  • Loading branch information
jakubmisek committed Nov 13, 2020
1 parent 91afcc3 commit 5ecd654
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build/update-cache.ps1
Expand Up @@ -13,7 +13,7 @@ $defaultArgs = "/p:VersionPrefix=$version,VersionSuffix=$suffix"

## Delete old nuget packages
Write-Host -f green "Deleting '$version-$suffix' packages from '$packagesSource' ..."
@("Peachpie.Runtime", "Peachpie.Library", "Peachpie.Library.Scripting", "Peachpie.Library.MySql", "Peachpie.Library.MsSql", "Peachpie.Library.Graphics", "Peachpie.Library.Network", "Peachpie.Library.PDO", "Peachpie.Library.XmlDom", "Peachpie.App", "Peachpie.CodeAnalysis", "Peachpie.AspNetCore.Web", "Peachpie.AspNetCore.Mvc", "Peachpie.NET.Sdk", "Peachpie.Library.PDO.MySql", "Peachpie.Library.PDO.Sqlite", "Peachpie.Library.SqlSrv") | % {
@("Peachpie.Runtime", "Peachpie.Library", "Peachpie.Library.Scripting", "Peachpie.Library.MySql", "Peachpie.Library.MsSql", "Peachpie.Library.Graphics", "Peachpie.Library.Network", "Peachpie.Library.PDO", "Peachpie.Library.XmlDom", "Peachpie.App", "Peachpie.CodeAnalysis", "Peachpie.AspNetCore.Web", "Peachpie.RequestHandler", "Peachpie.AspNetCore.Mvc", "Peachpie.NET.Sdk", "Peachpie.Library.PDO.MySql", "Peachpie.Library.PDO.Sqlite", "Peachpie.Library.SqlSrv") | % {
$installedFolder = "$packagesSource/$_/$version-$suffix"
if (Test-Path $installedFolder) {
Remove-Item -Recurse -Force $installedFolder
Expand Down
2 changes: 1 addition & 1 deletion src/Peachpie.CodeAnalysis/Peachpie.CodeAnalysis.csproj
Expand Up @@ -13,7 +13,7 @@
<ItemGroup>
<PackageReference Include="Devsense.Php.Parser" Version="$(ParserVersion)" />
<PackageReference Include="Devsense.Php.Phar" Version="1.0.15" />
<PackageReference Include="Peachpie.Microsoft.CodeAnalysis" Version="3.7.0" />
<PackageReference Include="Peachpie.Microsoft.CodeAnalysis" Version="3.7.1" />
<PackageReference Include="Peachpie.Library.RegularExpressions" Version="$(PeachpieLibraryRegularExpressionsVersion)" />
<PackageReference Include="System.Collections.Immutable" Version="1.5.0" />
<PackageReference Include="System.Memory" Version="4.5.4" />
Expand Down
Expand Up @@ -11,7 +11,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Peachpie.Microsoft.CodeAnalysis" Version="3.7.0" />
<PackageReference Include="Peachpie.Microsoft.CodeAnalysis" Version="3.7.1" />
<!--
System.Runtime.Loader.AssemblyLoadContext cannot be loaded from System.Runtime.Loader 4.0.0 which is hard referenced on full .NET Framework,
you may remove this workaround once it will work using netstandard2.0 well.
Expand Down

0 comments on commit 5ecd654

Please sign in to comment.