This commit is contained in:
2018-07-09 18:39:22 +00:00
parent 7857fa8b8a
commit 0dcc8483ac

View File

@@ -48,13 +48,13 @@ RENAME ?plvx.x parameter in index.html to the new version so all files update on
publish command line from rockfishCore folder: publish command line from rockfishCore folder:
//this will build a release version which is what we use on the server now //this will build a release version which is what we use on the server now
dotnet publish -c Release -o ./../plpublish/ dotnet publish -c Release -o ./../publish/
//This is what I have seen online, not sure why the -f is necessary or useful, the build is the exact same size as above, have a question in to stackoverflow about it //This is what I have seen online, not sure why the -f is necessary or useful, the build is the exact same size as above, have a question in to stackoverflow about it
dotnet publish -f netcoreapp2.1 -c Release -o ./../plpublish/ dotnet publish -f netcoreapp2.1 -c Release -o ./../publish/
//if need a debug version //if need a debug version
dotnet publish -o ./../plpublish/ dotnet publish -o ./../publish/
3) COPY 3) COPY
Copy over to production server, only need the .dll and the wwwroot folder contents, Copy over to production server, only need the .dll and the wwwroot folder contents,