Skip to content

Commit

Permalink
Changing default extensions project location to app root
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiocav committed May 14, 2018
1 parent df36ad1 commit a21ee61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Azure.Functions.Cli/Helpers/ExtensionsHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public static async Task<string> EnsureExtensionsProjectExistsAsync(string exten
{
if (String.IsNullOrEmpty(extensionsDir))
{
extensionsDir = Path.Combine(Environment.CurrentDirectory, "functions-extensions");
extensionsDir = Environment.CurrentDirectory;
}

var extensionsProj = Path.Combine(extensionsDir, "extensions.csproj");
Expand Down

0 comments on commit a21ee61

Please sign in to comment.