We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ce202b commit 0647943Copy full SHA for 0647943
articles/app-service/quickstart-webjobs.md
@@ -48,7 +48,7 @@ class Program
48
}
49
```
50
51
-1. From the webjob directory, run the webjob to confirm the current time is output to the console:
+1. From the *webjob* directory, run the webjob to confirm the current time is output to the console:
52
53
```bash
54
dotnet run
@@ -72,13 +72,12 @@ dotnet build --self-contained
72
```text
73
#!/bin/bash
74
75
-Dotnet webjob/bin/net9.0/webjob.dll
+dotnet webjob/bin/Debug/net9.0/webjob.dll
76
77
78
-1. Now we navigate to the parent folder and package all the files into a .zip as shown below:
+1. Now package all the files into a .zip as shown below:
79
80
81
-cd ..
82
zip webjob.zip run.sh webjob/bin/Debug/net9.0/*
83
84
0 commit comments