9 lines
244 B
Bash
9 lines
244 B
Bash
if [ -d ./bin/Debug/net8.0/ ]; then
|
|
echo "Copying images to bin/Debug"
|
|
cp -r ./images ./bin/Debug/net8.0/
|
|
fi
|
|
|
|
if [ -d ./bin/Release/net8.0/ ]; then
|
|
echo "Copying images to bin/Release"
|
|
cp -r ./images ./bin/Release/net8.0/
|
|
fi |