Skip to content

Commit d9eb8a5

Browse files
author
Nate McMaster
committed
Merge branch 'release/2.1' into dev
2 parents 3d2175c + 61f1ace commit d9eb8a5

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

modules/BundledPackages/module.targets

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@
1313
<_ShouldRunBundledRestore Condition="Exists('$(_BundledRestoreSentinel)')">false</_ShouldRunBundledRestore>
1414
</PropertyGroup>
1515

16-
<Touch Files="$(_BundledRestoreSentinel)" AlwaysCreate="true" Condition=" ! Exists('$(_BundledRestoreSentinel)') " />
16+
<Touch
17+
Files="$(_BundledRestoreSentinel)"
18+
AlwaysCreate="true"
19+
Condition=" ! Exists('$(_BundledRestoreSentinel)') "
20+
ContinueOnError="true" />
1721

1822
<MSBuild Targets="Restore"
1923
Projects="$(MSBuildThisFileDirectory)BundledPackageRestorer.csproj"

test/KoreBuild.FunctionalTests/SimpleRepoTests.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,9 +145,6 @@ public void BuildOfGlobalCliToolIncludesShims()
145145

146146
var winx64 = Assert.Single(files, f => f.StartsWith("tools/netcoreapp2.1/any/shims/win-x64/"));
147147
Assert.Equal("GlobalConsoleTool.exe", Path.GetFileName(winx64));
148-
149-
var osx64 = Assert.Single(files, f => f.StartsWith("tools/netcoreapp2.1/any/shims/osx-x64/"));
150-
Assert.Equal("GlobalConsoleTool", Path.GetFileName(osx64));
151148
}
152149

153150
var toolsDir = Path.Combine(app.WorkingDirectory, "artifacts", "tools");
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/release/2.1/tools/korebuild.schema.json",
3-
"channel": "release/2.1"
2+
"$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/dev/tools/korebuild.schema.json",
3+
"channel": "dev"
44
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/release/2.1/tools/korebuild.schema.json",
3-
"channel": "release/2.1"
2+
"$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/dev/tools/korebuild.schema.json",
3+
"channel": "dev"
44
}

0 commit comments

Comments
 (0)