Use the dev builds of IntegrationTesting since we require a csproj fix.

This commit is contained in:
Pranav K 2017-01-23 15:32:55 -08:00
parent aa31e20ea9
commit e4eb08dd68
4 changed files with 6 additions and 5 deletions

View File

@ -1,8 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="AspNetCore" value="https://dotnet.myget.org/F/aspnetcore-master/api/v3/index.json" />
<add key="AspNetCore" value="https://dotnet.myget.org/F/aspnetcore-ci-dev/api/v3/index.json" />
<add key="AspNetCoreTools" value="https://dotnet.myget.org/F/aspnetcore-tools/api/v3/index.json" />
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
</packageSources>

View File

@ -64,4 +64,5 @@ if (!(Test-Path $buildFolder)) {
}
}
&".build\dotnet\dotnet-install.ps1" -Channel 'master' -SharedRuntime -Version '1.2.0-beta-001304-00' -Architecture x64
&"$buildFile" $args

View File

@ -43,4 +43,5 @@ if test ! -d $buildFolder; then
fi
fi
./dotnet/dotnet-install.sh --shared-runtime --channel master --version 1.2.0-beta-001304-00
$buildFile -r $repoFolder "$@"

View File

@ -12,12 +12,12 @@
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0-preview-20161123-03" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.2.0-beta4-build1194" />
<PackageReference Include="Microsoft.AspNetCore.Server.IntegrationTesting" Version="0.2.0-*" />
<PackageReference Include="Microsoft.AspNetCore.Testing" Version="1.1.0-*" />
<PackageReference Include="Microsoft.AspNetCore.Server.IntegrationTesting" Version="0.3.0-preview1-23206" />
<PackageReference Include="Microsoft.AspNetCore.Testing" Version="1.2.0-preview1-23206" />
<PackageReference Include="Microsoft.DotNet.Cli.Utils" Version="1.0.0-preview2-003121" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="1.1.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="1.1.0" />
<PackageReference Include="xunit" Version="2.2.0-*" />
<PackageReference Include="Microsoft.NETCore.App" Version="1.1.0" />
<PackageReference Include="Microsoft.NETCore.App" Version="1.2.0-beta-001304-00" />
</ItemGroup>
</Project>