Browse Source

update to php/peachpie (#5542)

* peachpie updated, simplified

- aspnetcore 3.0
- peachpie 1.0.0-appv3073
- tests simplified

* update peachpie to dotnet core 3.1

* updated PeachPie version

* updated PeachPie version

* updated Peachpie.NET.Sdk

uses latest stable version, simplified project configuration
Jakub Míšek 5 years ago
parent
commit
a1424afdbe

+ 0 - 1
frameworks/PHP/peachpie/.gitignore

@@ -35,4 +35,3 @@ launchSettings.json
 BenchmarkDotNet.Artifacts/
 BenchmarkDotNet.Artifacts/
 BDN.Generated/
 BDN.Generated/
 binaries/
 binaries/
-global.json

+ 9 - 0
frameworks/PHP/peachpie/Directory.Build.props

@@ -0,0 +1,9 @@
+<Project>
+
+    <!-- $(PeachpieVersion) property from the current Peachpie.NET.Sdk -->
+    <Import Project="Version.props" Sdk="Peachpie.NET.Sdk" Condition=" '$(PeachpieVersion)'=='' " />
+
+    <!-- global properties -->
+    <PropertyGroup>
+    </PropertyGroup>
+</Project>

+ 1 - 1
frameworks/PHP/peachpie/Server/Server.csproj

@@ -6,7 +6,7 @@
   </PropertyGroup>
   </PropertyGroup>
 
 
   <ItemGroup>
   <ItemGroup>
-    <PackageReference Include="Peachpie.AspNetCore.Web" Version="1.0.0-appv3144" />
+    <PackageReference Include="Peachpie.AspNetCore.Web" Version="$(PeachpieVersion)" />
   </ItemGroup>
   </ItemGroup>
 
 
   <ItemGroup>
   <ItemGroup>

+ 1 - 1
frameworks/PHP/peachpie/Website/Website.msbuildproj

@@ -1,4 +1,4 @@
-<Project Sdk="Peachpie.NET.Sdk/1.0.0-appv3144">
+<Project Sdk="Peachpie.NET.Sdk">
 
 
   <PropertyGroup>
   <PropertyGroup>
     <OutputType>Library</OutputType>
     <OutputType>Library</OutputType>

+ 5 - 0
frameworks/PHP/peachpie/global.json

@@ -0,0 +1,5 @@
+{
+    "msbuild-sdks": {
+        "Peachpie.NET.Sdk": "0.9.910"
+    }
+}