Skip to content

Commit

Permalink
fix dotnet samples build
Browse files Browse the repository at this point in the history
  • Loading branch information
singhk97 committed Jan 9, 2024
1 parent 6f08489 commit 31a292c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dotnet/samples/.workflows/build-samples.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ dotnet nuget locals global-packages -c

# If var is empty, conditions is true
if [ -z $SAMPLE_FOLDER ]; then
for p in $(find . -name "*.csproj"); do dotnet build $p; done
for p in $(find . -name "*.csproj"); do dotnet build -c Debug $p; done
else
dotnet build $SAMPLE_FOLDER;
fi

0 comments on commit 31a292c

Please sign in to comment.