Welcome to mirror list, hosted at ThFree Co, Russian Federation.

System.Net.WebSockets.Client.Tests.csproj « tests « System.Net.WebSockets.Client « src - github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8d05cf4302b6d7f02c8dd1696e9fc7b02dd74704 (plain)
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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
  <PropertyGroup>
    <ProjectGuid>{7C395A91-D955-444C-98BF-D3F809A56CE1}</ProjectGuid>
    <StringResourcesPath>../src/Resources/Strings.resx</StringResourcesPath>
  </PropertyGroup>
  <!-- Help VS understand available configurations -->
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='netstandard1.3-Unix-Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='netstandard1.3-Unix-Release|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='netstandard1.3-Windows_NT-Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='netstandard1.3-Windows_NT-Release|AnyCPU'" />
  <!-- Do not reference these assemblies from the TargetingPack since we are building part of the source code for tests. -->
  <ItemGroup>
    <TargetingPackExclusions Include="System.Configuration" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="$(CommonTestPath)\System\AssertExtensions.cs">
      <Link>Common\System\AssertExtensions.cs</Link>
    </Compile>
    <Compile Include="$(CommonTestPath)\System\Net\Configuration.cs">
      <Link>Common\System\Net\Configuration.cs</Link>
    </Compile>
    <Compile Include="$(CommonTestPath)\System\Net\Configuration.Http.cs">
      <Link>Common\System\Net\Configuration.Http.cs</Link>
    </Compile>
    <Compile Include="$(CommonTestPath)\System\Net\Configuration.WebSockets.cs">
      <Link>Common\System\Net\Configuration.WebSockets.cs</Link>
    </Compile>
    <Compile Include="AbortTest.cs" />
    <Compile Include="CancelTest.cs" />
    <Compile Include="ClientWebSocketOptionsTests.cs" />
    <Compile Include="ClientWebSocketTestBase.cs" />
    <Compile Include="ClientWebSocketUnitTest.cs" />
    <Compile Include="CloseTest.cs" />
    <Compile Include="ConnectTest.cs" />
    <Compile Include="LoggingTest.cs" />
    <Compile Include="KeepAliveTest.cs" />
    <Compile Include="ResourceHelper.cs" />
    <Compile Include="SendReceiveTest.cs" />
    <Compile Include="WebSocketData.cs" />
    <Compile Include="WebSocketHelper.cs" />
  </ItemGroup>
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project>