You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Tiobon.Web/Blog.Core.Publish.bat

19 lines
304 B

color B
del .PublishFiles\*.* /s /q
dotnet restore
dotnet build
cd Tiobon.Core.Api
dotnet publish -o ..\Tiobon.Core.Api\bin\Debug\net7.0\
md ..\.PublishFiles
xcopy ..\Tiobon.Core.Api\bin\Debug\net7.0\*.* ..\.PublishFiles\ /s /e
echo "Successfully!!!! ^ please see the file .PublishFiles"
cmd