5 lines
74 B
Bash
5 lines
74 B
Bash
#!/bin/sh
|
|
rm -rf publish
|
|
mkdir publish
|
|
dotnet publish -c debug -o publish
|