Skip to content

Commit d2f9aed

Browse files
committed
Fixed path to sln file for build
1 parent 0e2b97d commit d2f9aed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/build/ApplicationBuildConfigs.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public record AzureFunctionsProjectPaths(
104104
public static AzureFunctionsProjectPaths LoadSettings(string projectName, string srcDirectory, string buildConfiguration, string buildArtifactsPath)
105105
{
106106
var projectDir = srcDirectory + $"/{projectName}";
107-
var pathToSln = srcDirectory + $"/{projectName}.sln";
107+
var pathToSln = projectDir + $"/{projectName}.sln";
108108
var csprojFile = projectDir + $"/{projectName}.csproj";
109109
var outDir = projectDir + $"/bin/{buildConfiguration}/cake-build-output";
110110
var zipOutDir = buildArtifactsPath;

0 commit comments

Comments
 (0)