Skip to content

Commit

Permalink
fix: use publish instead of build for dotnet adapter
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiankachlock committed Mar 17, 2024
1 parent 66b2232 commit 375f127
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/adapter/dotnet/dotnet.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func (a *dotnetAdapter) CreateTask(c model.ProfileWrapper, extraArgs []string) t
func convertModeToDotnet(mode string) string {
switch mode {
case model.ModeBuild:
return "build"
return "publish"
case model.ModeWatch:
return "watch"
case model.ModeRun:
Expand Down

0 comments on commit 375f127

Please sign in to comment.