Fixing a build failure due to the merge from master.

This commit is contained in:
Livar Cunha 2018-12-26 09:48:10 -08:00
parent 3ce8eaefaa
commit 3ccbd61dc0
2 changed files with 6 additions and 3 deletions

View file

@ -1,5 +1,10 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- Arcade features -->
<PropertyGroup>
<UsingToolNetFrameworkReferenceAssemblies>true</UsingToolNetFrameworkReferenceAssemblies>
</PropertyGroup>
<!-- This is a fake version to fool arcade. In this repo, we handle the versioning <!-- This is a fake version to fool arcade. In this repo, we handle the versioning
of assets ourselves, since all we do is generate zips/tarballs and native installers. --> of assets ourselves, since all we do is generate zips/tarballs and native installers. -->
<PropertyGroup> <PropertyGroup>

View file

@ -9,9 +9,7 @@ namespace Microsoft.DotNet.Tools.Test.Utilities
{ {
public RequiresAspNetCore() public RequiresAspNetCore()
{ {
var repoDirectoriesProvider = new RepoDirectoriesProvider(); if (RepoDirectoriesProvider.Stage2AspNetCore == null)
if (repoDirectoriesProvider.Stage2AspNetCore == null)
{ {
this.Skip = $"This test requires a AspNetCore but it isn't present."; this.Skip = $"This test requires a AspNetCore but it isn't present.";
} }