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

System.IO.Tests.csproj « tests « System.IO « src - github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2c72f0b88292f94f73dcb7d0f785651789b901d4 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
  <PropertyGroup>
    <RootNamespace>System.IO</RootNamespace>
    <AssemblyName>System.IO.Tests</AssemblyName>
    <ProjectGuid>{492EC54D-D2C4-4B3F-AC1F-646B3F7EBB02}</ProjectGuid>
  </PropertyGroup>
  <!-- Default configurations to help VS understand the configurations -->
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'netcoreapp-Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'netcoreapp-Release|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'netstandard-Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'netstandard-Release|AnyCPU'" />
  <ItemGroup>
    <Compile Include="IndentedTextWriter.cs" />
    <Compile Include="BinaryReader\BinaryReaderTests.cs" />
    <Compile Include="MemoryStream\MemoryStream.GetBufferTests.cs" />
    <Compile Include="Stream\Stream.cs" />
    <Compile Include="StreamReader\StreamReader.cs" />
    <Compile Include="StreamReader\StreamReader.StringCtorTests.cs" />
    <Compile Include="StreamWriter\StreamWriter.cs" />
    <Compile Include="StreamWriter\StreamWriter.StringCtorTests.cs" />
    <Compile Include="Stream\Stream.APMMethodsTests.cs" />
    <Compile Include="BinaryWriter\BinaryWriter.WriteByteCharTests.cs" />
    <Compile Include="BinaryWriter\BinaryWriter.WriteTests.cs" />
    <Compile Include="BinaryWriter\BinaryWriterTests.cs" />
    <Compile Include="BufferedStream\BufferedStream.FlushTests.cs" />
    <Compile Include="BufferedStream\BufferedStream.InvalidParameters.cs" />
    <Compile Include="BufferedStream\BufferedStreamTests.cs" />
    <Compile Include="BufferedStream\BufferedStreamTests.netcoreapp.cs" Condition="'$(TargetGroup)' == 'netcoreapp'" />
    <Compile Include="InvalidDataException\InvalidDataExceptionTests.cs" />
    <Compile Include="MemoryStream\MemoryStream.ConstructorTests.cs" />
    <Compile Include="MemoryStream\MemoryStream.TryGetBufferTests.cs" />
    <Compile Include="MemoryStream\MemoryStreamTests.cs" />
    <Compile Include="StreamReader\StreamReader.CtorTests.cs" />
    <Compile Include="StreamReader\StreamReaderTests.cs" />
    <Compile Include="StreamWriter\StreamWriter.BaseStream.cs" />
    <Compile Include="StreamWriter\StreamWriter.CloseTests.cs" />
    <Compile Include="StreamWriter\StreamWriter.CtorTests.cs" />
    <Compile Include="StreamWriter\StreamWriter.FlushTests.cs" />
    <Compile Include="StreamWriter\StreamWriter.WriteTests.cs" />
    <Compile Include="Stream\Stream.NullTests.cs" />
    <Compile Include="Stream\Stream.AsyncTests.cs" />
    <Compile Include="Stream\Stream.CopyToTests.cs" />
    <Compile Include="Stream\Stream.Methods.cs" />
    <Compile Include="Stream\Stream.TestLeaveOpen.cs" />
    <Compile Include="Stream\Stream.TimeoutTests.cs" />
    <Compile Include="StringReader\StringReader.CtorTests.cs" />
    <Compile Include="StringWriter\StringWriterTests.cs" />
    <Compile Include="$(CommonTestPath)\System\AssertExtensions.cs">
      <Link>Common\System\AssertExtensions.cs</Link>
    </Compile>
    <Compile Include="$(CommonTestPath)\System\IO\CallTrackingStream.cs">
      <Link>Common\System\IO\CallTrackingStream.cs</Link>
    </Compile>
    <Compile Include="$(CommonTestPath)\System\IO\DelegateStream.cs">
      <Link>Common\System\IO\DelegateStream.cs</Link>
    </Compile>
    <Compile Include="$(CommonTestPath)\System\IO\WrappedMemoryStream.cs">
      <Link>Common\System\IO\WrappedMemoryStream.cs</Link>
    </Compile>
  </ItemGroup>
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project>