forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
System.Diagnostics.Debug.Tests.csproj
31 lines (31 loc) · 1.51 KB
/
System.Diagnostics.Debug.Tests.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>System.Diagnostics.Debug.Tests</AssemblyName>
<RootNamespace>System.Diagnostics.Tests</RootNamespace>
<IgnoreArchitectureMismatches>true</IgnoreArchitectureMismatches>
<ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>None</ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>
<Configurations>$(NetCoreAppCurrent)-Debug;$(NetCoreAppCurrent)-Release</Configurations>
<TestRuntime>true</TestRuntime>
</PropertyGroup>
<ItemGroup Condition="'$(TargetsNetCoreApp)' == 'true'">
<DefaultReferenceExclusions Include="System.Diagnostics.Debug" />
<DefaultReferenceExclusions Include="System.Runtime.Extensions" />
<ReferenceFromRuntime Include="System.Private.CoreLib" />
<ReferenceFromRuntime Include="System.Runtime" />
<ReferenceFromRuntime Include="System.Threading" />
</ItemGroup>
<ItemGroup>
<Compile Include="DebuggerTypeProxyAttributeTests.cs" />
<Compile Include="DebuggerDisplayAttributeTests.cs" />
<Compile Include="DebuggerBrowsableAttributeTests.cs" />
<Compile Include="DebuggerVisualizerAttributeTests.cs" />
<Compile Include="EmptyAttributeTests.cs" />
<Compile Include="XunitAssemblyAttributes.cs" />
</ItemGroup>
<ItemGroup Condition="'$(TargetsNetCoreApp)' == 'true'">
<Compile Include="DebuggerTests.cs" />
<Compile Include="DebugTests.cs" />
<Compile Include="DebugTestsNoListeners.cs" />
<Compile Include="DebugTestsUsingListeners.cs" />
</ItemGroup>
</Project>