-
-
Notifications
You must be signed in to change notification settings - Fork 208
/
Copy pathPeachpie.ScriptTests.csproj
41 lines (35 loc) · 1.84 KB
/
Peachpie.ScriptTests.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netcoreapp3.0</TargetFrameworks>
<NoWarn>$(NoWarn);1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.3.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="Xunit.SkippableFact" Version="1.3.12" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\PDO\Peachpie.Library.PDO.Sqlite\Peachpie.Library.PDO.Sqlite.csproj" />
<ProjectReference Include="..\..\PDO\Peachpie.Library.PDO\Peachpie.Library.PDO.csproj" />
<ProjectReference Include="..\..\Peachpie.CodeAnalysis\Peachpie.CodeAnalysis.csproj" />
<ProjectReference Include="..\..\Peachpie.Library.Graphics\Peachpie.Library.Graphics.csproj" />
<ProjectReference Include="..\..\Peachpie.Library.ComDotNet\Peachpie.Library.ComDotNet.csproj" />
<ProjectReference Include="..\..\Peachpie.Library.Network\Peachpie.Library.Network.csproj" />
<ProjectReference Include="..\..\Peachpie.Library.Scripting\Peachpie.Library.Scripting.csproj" />
<ProjectReference Include="..\..\Peachpie.Library\Peachpie.Library.csproj" />
<ProjectReference Include="..\..\Peachpie.Runtime\Peachpie.Runtime.csproj" />
</ItemGroup>
<ItemGroup>
<!-- Make the PHP scripts appear in Visual Studio's Solution Explorer -->
<None Include="$(MSBuildThisFileDirectory)..\..\..\tests\**\*.php">
<Link>tests\%(RecursiveDir)%(Filename)%(Extension)</Link>
</None>
</ItemGroup>
<ItemGroup>
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
</ItemGroup>
</Project>