forked from dotnet/msbuild
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMicrosoft.Build.CommandLine.UnitTests.csproj
More file actions
73 lines (61 loc) · 2.46 KB
/
Copy pathMicrosoft.Build.CommandLine.UnitTests.csproj
File metadata and controls
73 lines (61 loc) · 2.46 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(RuntimeOutputTargetFrameworks)</TargetFrameworks>
<PlatformTarget>$(RuntimeOutputPlatformTarget)</PlatformTarget>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<Reference Include="System.Net.Http" Condition="'$(TargetFrameworkIdentifier)' == '.NETFramework'" />
<PackageReference Include="Shouldly" />
<PackageReference Include="Verify.Xunit" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.IO.Compression" Condition="'$(TargetFrameworkIdentifier)' == '.NETFramework'" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MSBuild\MSBuild.csproj" />
<ProjectReference Include="..\Utilities\Microsoft.Build.Utilities.csproj" />
<ProjectReference Include="..\Xunit.NetCore.Extensions\Xunit.NetCore.Extensions.csproj" />
<ProjectReference Include="..\UnitTests.Shared\Microsoft.Build.UnitTests.Shared.csproj" />
<!-- Tasks are needed for some tests -->
<ProjectReference Include="..\Tasks\Microsoft.Build.Tasks.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\Shared\RegistryDelegates.cs">
<Link>RegistryDelegates.cs</Link>
</Compile>
<Compile Include="..\Shared\ProcessExtensions.cs" />
<Compile Include="..\Shared\RegistryHelper.cs">
<Link>RegistryHelper.cs</Link>
</Compile>
<EmbeddedResource Include="..\MSBuild\MSBuild\Microsoft.Build.Core.xsd">
<Link>Microsoft.Build.Core.xsd</Link>
<SubType>
</SubType>
</EmbeddedResource>
<EmbeddedResource Include="..\MSBuild\MSBuild\Microsoft.Build.CommonTypes.xsd">
<Link>Microsoft.Build.CommonTypes.xsd</Link>
<SubType>
</SubType>
</EmbeddedResource>
<EmbeddedResource Include="..\MSBuild\Microsoft.Build.xsd">
<Link>Microsoft.Build.xsd</Link>
<SubType>
</SubType>
</EmbeddedResource>
<None Include="..\Shared\UnitTests\App.config">
<Link>App.config</Link>
<SubType>Designer</SubType>
</None>
<None Include="..\Shared\UnitTests\xunit.runner.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
</ItemGroup>
<ItemGroup>
<None Include="TestAssets\**" CopyToOutputDirectory="PreserveNewest" />
<Compile Remove="TestAssets\TargetInvocationException\LoggerProject\FaultyLogger.cs" />
</ItemGroup>
</Project>