Skip to content
This repository was archived by the owner on Jun 20, 2023. It is now read-only.

Commit 3dfa332

Browse files
committed
Fix typo in build script
1 parent 8eee545 commit 3dfa332

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.cake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ var BUILD_CONFIG = Argument ("config", "Release");
1414
// Master list of all the packages in the repo:
1515
// https://dl.google.com/dl/android/maven2/master-index.xml
1616

17-
var NUGET_VERSION = "26.1.0";
17+
var NUGET_VERSION = "26.1.0.1";
1818
var COMPONENT_VERSION = "26.1.0.0";
1919
var AAR_VERSION = "26.1.0";
2020
var DOC_VERSION = "2017-10-02";
@@ -128,7 +128,7 @@ if (IsRunningOnWindows ()) {
128128
MSCORLIB_PATH = MakeAbsolute (DOTNETDIR.Combine("Framework/v4.0.30319/")).FullPath;
129129
}
130130

131-
var nugetInfos = ARTIFACTS.Select (a => new NuGetInfo { NuSpec = "./" + a.PathPrefix + a.ArtifactId + "/nuget/" + a.NugetId + ".nuspec", Version = a.NugetVersion, RequireLicenseAcceptance = true }).ToList ();
131+
var nugetInfos = ARTIFACTS.Select (a => new NuGetInfo { NuSpec = "./" + a.PathPrefix + a.ArtifactId + "/nuget/" + a.NugetId + ".nuspec", Version = a.NuGetVersion, RequireLicenseAcceptance = true }).ToList ();
132132
nugetInfos.Add (new NuGetInfo { NuSpec = "./support-v4/nuget/Xamarin.Android.Support.v4.nuspec", Version = NUGET_VERSION, RequireLicenseAcceptance = true });
133133

134134
var buildSpec = new BuildSpec {

0 commit comments

Comments
 (0)