Add License Header

This commit is contained in:
Bryan 2015-11-24 18:48:31 -08:00 committed by Bryan Thornbury
parent ef22c93c39
commit 5c31655317
3 changed files with 7 additions and 7 deletions

View file

@ -32,7 +32,7 @@ popd
# Run the app and check the exit code
pushd "$RepoRoot\artifacts\$Rid\e2etest"
& "CoreRun.exe" "xunit.console.netcore.exe" "E2E.dll"
& "CoreRun.exe" "xunit.console.netcore.exe" "E2E.dll" -xml ..\..\e2etest.xml
if (!$?) {
Write-Host "E2E Test Failure"
popd

View file

@ -19,10 +19,7 @@ source "$DIR/../_common.sh"
rm "$REPOROOT/test/E2E/project.lock.json"
dotnet restore "$REPOROOT/test/E2E" --runtime "osx.10.10-x64" --runtime "ubuntu.14.04-x64" --runtime "win7-x64"
dotnet publish --framework dnxcore50 \
--runtime "$Rid" \
--output "$RepoRoot/artifacts/$Rid/e2etest" \
"$RepoRoot/test/E2E" \
dotnet publish --framework dnxcore50 --runtime "$RID" --output "$REPOROOT/artifacts/$RID/e2etest" "$REPOROOT/test/E2E"
# set -e will abort if the exit code of this is non-zero
pushd "$REPOROOT/artifacts/$RID/e2etest"

View file

@ -1,4 +1,7 @@
using System;
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System.IO;
using Xunit;
using Microsoft.DotNet.Cli.Utils;