forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSystem.Net.NetworkInformation.Functional.Tests.csproj
More file actions
74 lines (74 loc) · 4.09 KB
/
System.Net.NetworkInformation.Functional.Tests.csproj
File metadata and controls
74 lines (74 loc) · 4.09 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<StringResourcesPath>../../src/Resources/Strings.resx</StringResourcesPath>
<TargetFrameworks>$(NetCoreAppCurrent)</TargetFrameworks>
<IgnoreForCI Condition="'$(TargetOS)' == 'Browser'">true</IgnoreForCI>
<DefineConstants>$(DefineConstants);NETWORKINFORMATION_TEST</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.cs" />
<!-- Shared code with src assembly -->
<Compile Include="..\..\src\System\Net\NetworkInformation\StringParsingHelpers.Addresses.cs"
Link="SharedSource\StringParsingHelpers.Addresses.cs" />
<Compile Include="..\..\src\System\Net\NetworkInformation\StringParsingHelpers.Connections.cs"
Link="SharedSource\StringParsingHelpers.Connections.cs" />
<Compile Include="..\..\src\System\Net\NetworkInformation\StringParsingHelpers.Dns.cs"
Link="SharedSource\StringParsingHelpers.Dns.cs" />
<Compile Include="..\..\src\System\Net\NetworkInformation\StringParsingHelpers.Misc.cs"
Link="SharedSource\StringParsingHelpers.Misc.cs" />
<Compile Include="..\..\src\System\Net\NetworkInformation\StringParsingHelpers.Statistics.cs"
Link="SharedSource\StringParsingHelpers.Statistics.cs" />
<Compile Include="..\..\src\System\Net\NetworkInformation\NetworkFiles.cs"
Link="SharedSource\NetworkFiles.cs" />
<Compile Include="..\..\src\System\Net\NetworkInformation\SimpleTcpConnectionInformation.Unix.cs"
Link="SharedSource\SimpleTcpConnectionInformation.cs" />
<Compile Include="..\..\src\System\Net\NetworkInformation\SimpleGatewayIPAddressInformation.Unix.cs"
Link="SharedSource\SimpleGatewayIPAddressInformation.cs" />
<!-- Tests -->
<Compile Include="AddressParsingTests.cs" />
<Compile Include="DnsParsingTests.cs" />
<Compile Include="ExceptionHelper.cs" />
<Compile Include="FileUtil.cs" />
<Compile Include="IPGlobalPropertiesTest.cs" />
<Compile Include="IPInterfacePropertiesTest_Linux.cs" />
<Compile Include="IPInterfacePropertiesTest_OSX.cs" />
<Compile Include="IPInterfacePropertiesTest_Windows.cs" />
<Compile Include="MiscParsingTests.cs" />
<Compile Include="MockMapTcpState.cs" />
<Compile Include="NetworkAddressChangedTests.cs" />
<Compile Include="NetworkInterfaceBasicTest.cs" />
<Compile Include="PhysicalAddressTest.cs" />
<Compile Include="ConnectionsParsingTests.cs" />
<Compile Include="StatisticsParsingTests.cs" />
<!-- Common test files -->
<Compile Include="$(CommonTestPath)System\Net\Http\TestHelper.cs"
Link="Common\System\Net\Http\TestHelper.cs" />
<Compile Include="$(CommonTestPath)System\Threading\Tasks\TaskTimeoutExtensions.cs"
Link="Common\System\Threading\Tasks\TaskTimeoutExtensions.cs" />
<Compile Include="$(CommonTestPath)System\Net\TestLogging.cs"
Link="Common\System\Net\TestLogging.cs" />
<Compile Include="$(CommonTestPath)System\Net\VerboseTestLogging.cs"
Link="Common\System\Net\VerboseTestLogging.cs" />
<Compile Include="$(CommonTestPath)System\Net\EventSourceTestLogging.cs"
Link="Common\System\Net\EventSourceTestLogging.cs" />
<Compile Include="$(CommonTestPath)System\Net\Capability.Sockets.cs"
Link="Common\System\Net\Capability.Sockets.cs" />
<Compile Include="$(CommonPath)System\IO\StringParser.cs"
Link="Common\System\IO\StringParser.cs" />
<Compile Include="$(CommonPath)System\IO\RowConfigReader.cs"
Link="Common\System\IO\RowConfigReader.cs" />
<Compile Include="$(CommonPath)System\HexConverter.cs"
Link="Common\System\HexConverter.cs" />
</ItemGroup>
<ItemGroup>
<Compile Include="LoggingTest.cs" />
<Compile Include="NetworkAvailabilityChangedTests.cs" />
<Compile Include="NetworkInterfaceIPv4Statistics.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="NetworkFiles\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>