forked from microsoft/vs-threading
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMicrosoft.VisualStudio.Threading.Tests.csproj
More file actions
49 lines (47 loc) · 2.44 KB
/
Microsoft.VisualStudio.Threading.Tests.csproj
File metadata and controls
49 lines (47 loc) · 2.44 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
45
46
47
48
49
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net472;netcoreapp3.1;net5.0</TargetFrameworks>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<IsTestProject>true</IsTestProject>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
<DefineConstants Condition=" '$(TargetFramework)' == 'net472' ">$(DefineConstants);ISOLATED_TEST_SUPPORT</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\src\Microsoft.VisualStudio.Threading\InternalUtilities.cs">
<Link>InternalUtilities.cs</Link>
</Compile>
<Compile Include="..\..\src\Microsoft.VisualStudio.Threading\ListOfOftenOne`1.cs">
<Link>ListOfOftenOne`1.cs</Link>
</Compile>
<Compile Include="..\..\src\Microsoft.VisualStudio.Threading\RoslynDebug.cs" Link="RoslynDebug.cs" />
<Compile Include="..\..\src\Microsoft.VisualStudio.Threading\WeakKeyDictionary`2.cs">
<Link>WeakKeyDictionary`2.cs</Link>
</Compile>
</ItemGroup>
<ItemGroup>
<PackageReference Include="coverlet.msbuild" Version="3.2.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
<PackageReference Include="Nullable" Version="1.3.0" PrivateAssets="all" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.0.0" />
<PackageReference Include="Xunit.Combinatorial" Version="1.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" />
<PackageReference Include="Xunit.SkippableFact" Version="1.4.13" />
<PackageReference Include="Xunit.StaFact" Version="1.1.11" />
<PackageReference Include="xunit" Version="2.4.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Microsoft.VisualStudio.Threading\Microsoft.VisualStudio.Threading.csproj" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net472' ">
<Reference Include="System.Configuration" />
<Reference Include="WindowsBase" />
<ProjectReference Include="..\IsolatedTestHost\IsolatedTestHost.csproj">
<Private>true</Private>
</ProjectReference>
<ProjectReference Include="..\Microsoft.VisualStudio.Threading.Tests.Win7RegistryWatcher\Microsoft.VisualStudio.Threading.Tests.Win7RegistryWatcher.csproj">
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
<Private>true</Private>
</ProjectReference>
</ItemGroup>
</Project>