1 <Project Sdk="Microsoft.NET.Sdk">
3 <RootNamespace>DPStressHarness</RootNamespace>
4 <OutputType>Exe</OutputType>
6 <Configurations>$(NetCoreAppCurrent)-Unix-Debug;$(NetCoreAppCurrent)-Unix-Release;$(NetCoreAppCurrent)-Windows_NT-Debug;$(NetCoreAppCurrent)-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release</Configurations>
9 <ProjectReference Include="..\IMonitorLoader\IMonitorLoader.csproj" />
11 <ItemGroup Condition=" '$(TargetsWindows)' != 'true' ">
12 <Compile Include="MemApi.Unix.cs" />
14 <ItemGroup Condition=" '$(TargetsWindows)' == 'true' ">
15 <Compile Include="MemApi.Windows.cs" />
18 <Compile Include="DeadlockDetection.cs" />
19 <Compile Include="DeadlockDetectionTaskScheduler.cs" />
20 <Compile Include="ITestAttributeFilter.cs" />
21 <Compile Include="MonitorLoadUtils.cs" />
22 <Compile Include="Constants.cs" />
23 <Compile Include="FakeConsole.cs" />
24 <Compile Include="GlobalTestCleanupAttribute.cs" />
25 <Compile Include="GlobalTestSetupAttribute.cs" />
26 <Compile Include="GlobalExceptionHandlerAttribute.cs" />
27 <Compile Include="Logger.cs" />
28 <Compile Include="MultithreadedTest.cs" />
29 <Compile Include="PerfCounters.cs" />
30 <Compile Include="Program.cs" />
31 <Compile Include="RecordedExceptions.cs" />
32 <Compile Include="SqlScript.cs" />
33 <Compile Include="StressEngine.cs" />
34 <Compile Include="StressTest.cs" />
35 <Compile Include="Test.cs" />
36 <Compile Include="TestAttribute.cs" />
37 <Compile Include="TestBase.cs" />
38 <Compile Include="TestCleanupAttribute.cs" />
39 <Compile Include="TestFinder.cs" />
40 <Compile Include="TestMetrics.cs" />
41 <Compile Include="TestSetupAttribute.cs" />
42 <Compile Include="TestVariationAttribute.cs" />
43 <Compile Include="ThreadPoolTest.cs" />
44 <Compile Include="VersionUtil.cs" />