forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMicrosoft.Win32.SystemEvents.Tests.csproj
More file actions
36 lines (36 loc) · 1.79 KB
/
Microsoft.Win32.SystemEvents.Tests.csproj
File metadata and controls
36 lines (36 loc) · 1.79 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(NetCoreAppCurrent)-windows;net461-windows</TargetFrameworks>
<IncludeRemoteExecutor>true</IncludeRemoteExecutor>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(CommonPath)Interop\Windows\Interop.Libraries.cs"
Link="Common\Interop\Windows\Interop.Libraries.cs" />
<Compile Include="$(CommonPath)Interop\Windows\User32\Interop.Constants.cs"
Link="Common\Interop\Windows\User32\Interop.Constants.cs" />
<Compile Include="$(CommonPath)Interop\Windows\User32\Interop.FindWindow.cs"
Link="Common\Interop\Windows\User32\Interop.FindWindow.cs" />
<Compile Include="$(CommonPath)Interop\Windows\User32\Interop.SendMessage.cs"
Link="Common\Interop\Windows\User32\Interop.SendMessage.cs" />
<Compile Include="GenericEventTests.cs" />
<Compile Include="SystemEvents.InvokeOnEventsThread.cs" />
<Compile Include="SystemEvents.UserPreference.cs" />
<Compile Include="SystemEvents.InstalledFontsChanged.cs" />
<Compile Include="SystemEvents.LowMemory.cs" />
<Compile Include="SystemEvents.PaletteChanged.cs" />
<Compile Include="SystemEvents.SessionEnded.cs" />
<Compile Include="SystemEvents.SessionEnding.cs" />
<Compile Include="SystemEvents.SessionSwitch.cs" />
<Compile Include="SystemEvents.PowerMode.cs" />
<Compile Include="SystemEvents.TimeChanged.cs" />
<Compile Include="SystemEventsTest.cs" />
<Compile Include="SystemEvents.DisplaySettings.cs" />
<Compile Include="SystemEvents.CreateTimer.cs" />
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\src\Microsoft.Win32.SystemEvents.csproj" />
</ItemGroup>
</Project>