File tree 2 files changed +41
-0
lines changed
2 files changed +41
-0
lines changed Original file line number Diff line number Diff line change @@ -77,3 +77,8 @@ Thumbs.db
77
77
/.htpasswd
78
78
/tests /phan /issues
79
79
* .rej
80
+
81
+ # Visual Studio output directories
82
+ bin
83
+ bin_ *
84
+ obj
Original file line number Diff line number Diff line change
1
+ <Project Sdk="Microsoft.NET.Sdk">
2
+
3
+ <PropertyGroup>
4
+ <OutputType>Library</OutputType>
5
+ <TargetFrameworks>netcoreapp2.0;net46</TargetFrameworks>
6
+ <AssemblyName>mediawiki</AssemblyName>
7
+ <NoWarn>PHPX0125,PHP3012</NoWarn>
8
+ </PropertyGroup>
9
+
10
+ <PropertyGroup>
11
+ <OutDir Condition=" '$(TargetFramework)' == 'net46' ">bin</OutDir><!-- ASP.Net loads DLLs always from there -->
12
+ <OutDir Condition=" '$(TargetFramework)' != 'net46' ">bin_$(TargetFramework)</OutDir>
13
+ </PropertyGroup>
14
+
15
+ <ItemGroup>
16
+ <Compile
17
+ Include="**/*.php"
18
+ Exclude="maintenance/**;tests/**;vendor/**/tests/**;vendor/**/test/**;vendor/**/Test/**" />
19
+ <Compile Remove="includes/debug/logger/monolog/**" />
20
+ <Compile Remove="skins/Vector/vendor/composer/installers/**" />
21
+ <Compile Remove="vendor/wikimedia/composer-merge-plugin/**" />
22
+ <Compile Remove="vendor/liuggio/statsd-php-client/src/Liuggio/StatsdClient/Monolog/**" />
23
+ <Compile Remove="vendor/liuggio/statsd-php-client/src/Liuggio/StatsdClient/Monolog/**" />
24
+ <Compile Remove="vendor/pear/pear-core-minimal/src/System.php" />
25
+ </ItemGroup>
26
+
27
+ <ItemGroup>
28
+ <DotNetCliToolReference Include="Peachpie.Compiler.Tools" Version="0.9.0-CI00853" />
29
+ <PackageReference Include="Peachpie.NET.Sdk" Version="0.9.0-CI00853" PrivateAssets="Build" />
30
+ <PackageReference Include="Peachpie.Library.Graphics" Version="0.9.0-CI00853" />
31
+ </ItemGroup>
32
+
33
+ <ItemGroup Condition=" '$(TargetFramework)' == 'net46' ">
34
+ <PackageReference Include="Peachpie.RequestHandler" Version="0.9.0-CI00853" />
35
+ </ItemGroup>
36
+ </Project>
You can’t perform that action at this time.
0 commit comments