forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSystem.IO.FileSystem.Watcher.Tests.csproj
More file actions
44 lines (44 loc) · 2.36 KB
/
System.IO.FileSystem.Watcher.Tests.csproj
File metadata and controls
44 lines (44 loc) · 2.36 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Configurations>$(NetCoreAppCurrent)-Linux-Debug;$(NetCoreAppCurrent)-Linux-Release;$(NetCoreAppCurrent)-OSX-Debug;$(NetCoreAppCurrent)-OSX-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;netcore-FreeBSD-Debug;netcore-FreeBSD-Release</Configurations>
</PropertyGroup>
<ItemGroup>
<Compile Include="FileSystemWatcher.cs" />
<Compile Include="InternalBufferOverflowException.cs" />
<Compile Include="Args.ErrorEventArgs.cs" />
<Compile Include="Args.FileSystemEventArgs.cs" />
<Compile Include="Args.RenamedEventArgs.cs" />
<Compile Include="FileSystemWatcher.Directory.Changed.cs" />
<Compile Include="FileSystemWatcher.Directory.Create.cs" />
<Compile Include="FileSystemWatcher.Directory.Delete.cs" />
<Compile Include="FileSystemWatcher.Directory.Move.cs" />
<Compile Include="FileSystemWatcher.Directory.NotifyFilter.cs" />
<Compile Include="FileSystemWatcher.File.Changed.cs" />
<Compile Include="FileSystemWatcher.File.Create.cs" />
<Compile Include="FileSystemWatcher.File.Delete.cs" />
<Compile Include="FileSystemWatcher.File.Move.cs" />
<Compile Include="FileSystemWatcher.File.NotifyFilter.cs" />
<Compile Include="FileSystemWatcher.InternalBufferSize.cs" />
<Compile Include="FileSystemWatcher.MultipleWatchers.cs" />
<Compile Include="FileSystemWatcher.WaitForChanged.cs" />
<Compile Include="FileSystemWatcher.unit.cs" />
<!-- Helpers -->
<Compile Include="Utility\TestFileSystemWatcher.cs" />
<Compile Include="Utility\FileSystemWatcherTest.cs" />
<Compile Include="$(CommonTestPath)System\IO\TempFile.cs">
<Link>Common\System\IO\TempFile.cs</Link>
</Compile>
<Compile Include="$(CommonTestPath)System\IO\TempDirectory.cs">
<Link>Common\System\IO\TempDirectory.cs</Link>
</Compile>
</ItemGroup>
<ItemGroup Condition=" '$(TargetsLinux)' == 'true' or '$(TargetsOSX)' == 'true' ">
<Compile Include="FileSystemWatcher.Unix.cs" />
<Compile Include="$(CommonPath)Interop\Unix\Interop.Libraries.cs">
<Link>Common\Interop\Unix\Interop.Libraries.cs</Link>
</Compile>
<Compile Include="$(CommonPath)Interop\Unix\System.Native\Interop.ResourceLimits.cs">
<Link>Common\Interop\Unix\System.Native\Interop.ResourceLimits.cs</Link>
</Compile>
</ItemGroup>
</Project>