-
Notifications
You must be signed in to change notification settings - Fork 746
Expand file tree
/
Copy pathMsbuild.Integration.Test.csproj
More file actions
31 lines (27 loc) · 1.38 KB
/
Msbuild.Integration.Test.csproj
File metadata and controls
31 lines (27 loc) · 1.38 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(NETFXTargetFramework)</TargetFrameworks>
<Description>Integration tests for NuGet powered msbuild functionalities (restore/pack).</Description>
<TestProjectType Condition="'$(IsXPlat)' == 'true'">None</TestProjectType>
</PropertyGroup>
<ItemGroup>
<Compile Remove="compiler\resources\*" />
<EmbeddedResource Include="compiler\resources\*" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\src\NuGet.Core\Microsoft.Build.NuGetSdkResolver\Microsoft.Build.NuGetSdkResolver.csproj" />
<ProjectReference Include="..\..\..\src\NuGet.Core\NuGet.Build.Tasks.Console\NuGet.Build.Tasks.Console.csproj" />
<ProjectReference Include="..\..\..\src\NuGet.Core\NuGet.Build.Tasks.Pack\NuGet.Build.Tasks.Pack.csproj" />
<ProjectReference Include="..\..\..\src\NuGet.Core\NuGet.Build.Tasks\NuGet.Build.Tasks.csproj" />
<ProjectReference Include="..\..\TestUtilities\Test.Utility\Test.Utility.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\..\src\NuGet.Core\NuGet.Build.Tasks\NuGet.props"
CopyToOutputDirectory="PreserveNewest" />
<None Include="..\..\..\src\NuGet.Core\NuGet.Build.Tasks\NuGet.targets"
CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.IO.Compression" />
</ItemGroup>
</Project>