Skip to content

Commit

Permalink
Acceptance tests working. (microsoft#277)
Browse files Browse the repository at this point in the history
  • Loading branch information
harshjain2 authored and codito committed Dec 14, 2016
1 parent 9a04658 commit f913d96
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions scripts/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,9 @@ function Install-DotNetCli
New-Item -ItemType directory -Path $dotnetInstallPath -Force | Out-Null
& $dotnetInstallScript -InstallDir $dotnetInstallPath -NoPath -Version $env:DOTNET_CLI_VERSION

# This is added to get netcoreapp1.1 shared components.
& $dotnetInstallScript -InstallDir $dotnetInstallPath -SharedRuntime -Version '1.1.0' -Channel 'release/1.1.0'

Write-Log "Install-DotNetCli: Complete. {$(Get-ElapsedTime($timer))}"
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFrameworks>netcoreapp1.0;net46;netcoreapp1.1</TargetFrameworks>
<AssemblyName>SimpleTestProject2</AssemblyName>
<PackageTargetFallback Condition=" '$(TargetFramework)' == 'netcoreapp1.0' Or '$(TargetFramework)' == 'netcoreapp1.1' ">$(PackageTargetFallback);dnxcore50;portable-net45+win8</PackageTargetFallback>
<OutputType Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">Exe</OutputType>
<OutputType Condition=" '$(TargetFramework)' == 'netcoreapp1.0' Or '$(TargetFramework)' == 'netcoreapp1.1' ">Exe</OutputType>
</PropertyGroup>
<ItemGroup>
<Compile Include="**\*.cs" />
Expand Down

0 comments on commit f913d96

Please sign in to comment.