2016-12-20 21:29:45 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2016-12-21 00:38:04 +00:00
|
|
|
|
|
2016-11-12 07:46:29 +00:00
|
|
|
|
<PropertyGroup>
|
2017-01-26 03:19:44 +00:00
|
|
|
|
<TargetFramework>$(CliTargetFramework)</TargetFramework>
|
2017-12-02 04:07:48 +00:00
|
|
|
|
<RuntimeFrameworkVersion>$(MicrosoftNETCoreAppPackageVersion)</RuntimeFrameworkVersion>
|
2016-11-12 07:46:29 +00:00
|
|
|
|
<AssemblyName>ArgumentForwardingTests</AssemblyName>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2017-06-14 07:27:26 +00:00
|
|
|
|
<AssetTargetFallback>$(AssetTargetFallback);dotnet5.4;portable-net451+win8</AssetTargetFallback>
|
2016-11-12 07:46:29 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\src\Microsoft.DotNet.Cli.Utils\Microsoft.DotNet.Cli.Utils.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Microsoft.DotNet.Tools.Tests.Utilities\Microsoft.DotNet.Tools.Tests.Utilities.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2017-12-07 17:55:12 +00:00
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(MicrosoftNETTestSdkPackageVersion)" />
|
2017-08-26 02:59:02 +00:00
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.2.0" />
|
|
|
|
|
<PackageReference Include="xunit" Version="2.2.0" />
|
2017-12-02 04:07:48 +00:00
|
|
|
|
<PackageReference Include="Microsoft.DotNet.PlatformAbstractions" Version="$(MicrosoftDotNetPlatformAbstractionsPackageVersion)"/>
|
2016-11-12 07:46:29 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2017-03-03 03:19:35 +00:00
|
|
|
|
<Target Name="PrecompileScript"
|
|
|
|
|
BeforeTargets="Build"
|
2017-08-26 01:47:11 +00:00
|
|
|
|
Condition=" '$(IsCrossTargetingBuild)' != 'true' ">
|
2017-08-11 14:09:01 +00:00
|
|
|
|
|
|
|
|
|
<Exec Command="$(PreviousStageDotnet) publish ../ArgumentsReflector/ArgumentsReflector.csproj --output $(OutputPath)" />
|
2016-11-12 07:46:29 +00:00
|
|
|
|
</Target>
|
2016-12-02 17:34:03 +00:00
|
|
|
|
|
2016-11-12 07:46:29 +00:00
|
|
|
|
</Project>
|