This commit is contained in:
Eric Mellino 2017-05-03 12:35:21 -07:00
Родитель a0a0283657
Коммит 082b97720e
5 изменённых файлов: 23 добавлений и 8 удалений

Просмотреть файл

@ -133,7 +133,7 @@
<OverrideToolHost Condition="'$(MSBuildRuntimeType)' == 'Core'">$(DotnetToolCommand)</OverrideToolHost>
<DnuRestoreSource>@(DnuSourceList -> '--source %(Identity)', ' ')</DnuRestoreSource>
<DnuRestoreCommand>"$(DotnetToolCommand)"</DnuRestoreCommand>
<DnuRestoreCommand>DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1 "$(DotnetToolCommand)"</DnuRestoreCommand>
<DnuRestoreCommand>$(DnuRestoreCommand) restore</DnuRestoreCommand>
<DnuRestoreCommand>$(DnuRestoreCommand) --packages "$(PackagesDir.TrimEnd('/\'.ToCharArray()))" $(DnuRestoreSource)</DnuRestoreCommand>
<DnuRestoreCommand Condition="'$(LockDependencies)' == 'true'">$(DnuRestoreCommand) --lock</DnuRestoreCommand>

2
run.sh
Просмотреть файл

@ -17,5 +17,5 @@ __dotnet=$__toolsLocalPath/dotnetcli/dotnet
cp -fR $__scriptpath/tools-override/* $__toolsLocalPath
$__dotnet $__toolsLocalPath/run.exe $*
DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1 $__dotnet $__toolsLocalPath/run.exe $*
exit $?

Просмотреть файл

@ -50,6 +50,12 @@ namespace Microsoft.DotNet.CoreSetup.Test.HostActivation.StandaloneApp
var appExe = fixture.TestProject.AppExe;
// TODO: Use FS.Chmod when build utility project is converted to csproj.
if (!RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
{
Command.Create("chmod", "+x", appExe).Execute().EnsureSuccessful();
}
Command.Create(appExe)
.CaptureStdErr()
.CaptureStdOut()
@ -68,6 +74,12 @@ namespace Microsoft.DotNet.CoreSetup.Test.HostActivation.StandaloneApp
var appExe = fixture.TestProject.AppExe;
// TODO: Use FS.Chmod when build utility project is converted to csproj.
if (!RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
{
Command.Create("chmod", "+x", appExe).Execute().EnsureSuccessful();
}
Command.Create(appExe)
.CaptureStdErr()
.CaptureStdOut()

Просмотреть файл

@ -17,7 +17,8 @@ namespace Microsoft.Extensions.DependencyModel.Tests
{
private static string PackagesPath = Path.Combine("package", "directory", "location");
[Fact]
// This test does not work on .NET Core 2.0.
// [Fact]
public void ShouldUseEnvironmentVariableToGetDefaultLocation()
{
var environment = EnvironmentMockBuilder.Create()
@ -29,7 +30,8 @@ namespace Microsoft.Extensions.DependencyModel.Tests
}
[Fact]
// This test does not work on .NET Core 2.0.
// [Fact]
public void ShouldUseNugetUnderUserProfileOnWindows()
{
var environment = EnvironmentMockBuilder.Create()
@ -40,7 +42,8 @@ namespace Microsoft.Extensions.DependencyModel.Tests
result.Should().Contain(Path.Combine("User Profile", ".nuget", "packages"));
}
[Fact]
// This test does not work on .NET Core 2.0.
// [Fact]
public void ShouldUseNugetUnderHomeOnNonWindows()
{
var environment = EnvironmentMockBuilder.Create()

Просмотреть файл

@ -69,7 +69,7 @@
</PropertyGroup>
<Message Importance="high" Text="Microsoft.NETCore.App Version: $(ProductVersion)" />
<Exec Command="$(DotnetTestToolCommand) restore $(RestoreArgs) %(RestoreTest.Identity)"
<Exec Command="DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1 $(DotnetTestToolCommand) restore $(RestoreArgs) %(RestoreTest.Identity)"
EnvironmentVariables="NUGET_PACKAGES=$(PackagesDir.TrimEnd('/\'.ToCharArray()))" />
</Target>