forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSystem.Net.Ping.Functional.Tests.csproj
More file actions
42 lines (42 loc) · 2.4 KB
/
System.Net.Ping.Functional.Tests.csproj
File metadata and controls
42 lines (42 loc) · 2.4 KB
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
42
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(NetCoreAppCurrent)-windows;$(NetCoreAppCurrent)-unix;$(NetCoreAppCurrent)-browser</TargetFrameworks>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<IncludeRemoteExecutor>true</IncludeRemoteExecutor>
<IgnoreForCI Condition="'$(TargetOS)' == 'browser'">true</IgnoreForCI>
</PropertyGroup>
<!-- Test APIs introduced after 1.0 -->
<ItemGroup>
<Compile Include="AssemblyInfo.cs" />
<Compile Include="PingTest.cs" />
<Compile Include="LoggingTest.cs" />
<Compile Include="PingExceptionTest.cs" />
<Compile Include="PingOptionsTest.cs" />
<Compile Include="TestSettings.cs" />
<Compile Include="UnixPingUtilityTests.cs" />
<!-- Common -->
<Compile Include="$(CommonPath)DisableRuntimeMarshalling.cs"
Link="Common\DisableRuntimeMarshalling.cs" />
<!-- System.Net Common -->
<Compile Include="$(CommonTestPath)System\Net\RemoteExecutorExtensions.cs"
Link="Common\System\Net\RemoteExecutorExtensions.cs" />
<Compile Include="$(CommonTestPath)System\Net\Configuration.cs"
Link="SocketCommon\Configuration.cs" />
<Compile Include="$(CommonTestPath)System\Net\Configuration.Ping.cs"
Link="SocketCommon\Configuration.Ping.cs" />
<Compile Include="$(CommonPath)Interop\Unix\Interop.DefaultPathBufferSize.cs"
Link="Common\Interop\Unix\Interop.DefaultPathBufferSize.cs" />
<Compile Include="$(CommonPath)System\Net\RawSocketPermissions.cs"
Link="Common\System\Net\RawSocketPermissions.cs" />
<Compile Include="$(CommonPath)Interop\Unix\Interop.Libraries.cs"
Link="Common\Interop\Unix\Interop.Libraries.cs" />
<Compile Include="$(CommonPath)Interop\Unix\System.Native\Interop.ReadLink.cs"
Link="Common\Interop\Unix\System.Native\Interop.ReadLink.cs" />
<Compile Include="$(CommonPath)System\Net\NetworkInformation\UnixCommandLinePing.cs"
Link="Common\System\Net\NetworkInformation\UnixCommandLinePing.cs" />
<Compile Include="$(CommonTestPath)System\Net\Capability.RawSocketPermissions.cs"
Link="Common\System\Net\Capability.RawSocketPermissions.cs" />
<Compile Include="$(CommonPath)System\Runtime\InteropServices\SpanOfCharAsUtf8StringMarshaller.cs"
Link="Common\System\Runtime\InteropServices\SpanOfCharAsUtf8StringMarshaller.cs" />
</ItemGroup>
</Project>