Skip to content

Commit e3bca8c

Browse files
committed
Fixes project file name in build script
1 parent ae068b1 commit e3bca8c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cli/azd/extensions/microsoft.azd.extensions/internal/resources/languages/dotnet/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ for PLATFORM in "${PLATFORMS[@]}"; do
6666
else
6767
RUNTIME="linux-$ARCH"
6868
fi
69-
PROJECT_FILE="$EXTENSION_DIR/azd-extension.csproj"
69+
PROJECT_FILE="azd-extension.csproj"
7070

7171
# Run dotnet publish for single file executable
7272
dotnet publish \

cli/azd/extensions/microsoft.azd.extensions/internal/resources/languages/go/build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ foreach ($PLATFORM in $PLATFORMS) {
6161
if ($env:EXTENSION_LANGUAGE -eq "dotnet") {
6262
# Set runtime identifier for .NET
6363
$RUNTIME = if ($OS -eq "windows") { "win-$ARCH" } elseif ($OS -eq "darwin") { "osx-$ARCH" } else { "linux-$ARCH" }
64-
$PROJECT_FILE = "$azd-extension.csproj"
64+
$PROJECT_FILE = "azd-extension.csproj"
6565

6666
# Run dotnet publish for single file executable
6767
dotnet publish `

cli/azd/extensions/microsoft.azd.extensions/internal/resources/languages/go/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ for PLATFORM in "${PLATFORMS[@]}"; do
6666
else
6767
RUNTIME="linux-$ARCH"
6868
fi
69-
PROJECT_FILE="$EXTENSION_DIR/azd-extension.csproj"
69+
PROJECT_FILE="azd-extension.csproj"
7070

7171
# Run dotnet publish for single file executable
7272
dotnet publish \

0 commit comments

Comments
 (0)