Skip to content
This repository has been archived by the owner on May 15, 2024. It is now read-only.

Commit

Permalink
Renamine devopsnuget.config to nuget.config
Browse files Browse the repository at this point in the history
  • Loading branch information
jfversluis committed Apr 18, 2023
1 parent c170dcf commit 953abd1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DeviceTests/build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ System.Environment.SetEnvironmentVariable("PATH",
$"{ANDROID_HOME}/emulator" + System.IO.Path.PathSeparator +
EnvironmentVariable("PATH"));

var RESTORE_CONFIG = MakeAbsolute((FilePath)"../devopsnuget.config").FullPath;
var RESTORE_CONFIG = MakeAbsolute((FilePath)"../NuGet.config").FullPath;

// utils

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var NUGET_VERSION = EnvironmentVariable("NUGET_VERSION") ?? "1.0.0";
var GIT_SHA = Argument("gitSha", EnvironmentVariable("GIT_SHA") ?? "");
var GIT_BRANCH_NAME = Argument("gitBranch", EnvironmentVariable("GIT_BRANCH_NAME") ?? "");

var RESTORE_CONFIG = MakeAbsolute(new FilePath("./devopsnuget.config")).FullPath;
var RESTORE_CONFIG = MakeAbsolute(new FilePath("./NuGet.config")).FullPath;

Task("prepare")
.Does(() =>
Expand Down

0 comments on commit 953abd1

Please sign in to comment.