I am using the following in Command Prompt to compile my small ASP.NET project:
%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_compiler -p "C:\Users\Steve\Documents\Visual Studio 2013\Dima" -v /-u "C:\test"
Please see:
https://msdn.microsoft.com/en-us/library/vstudio/ms229863(v=vs.100).aspx
'Dima' is the name of my Visual Studio project - the folder where the VS project itself is saved to - and 'test' is the folder where the compiled project is saved to.
I used this command when I uploaded my compiled files to a virtual directory. However, my ASP.NET project now has its own domain name and server and resides in its own root directory on that server. It is not a virtual directory.
Do I need to change that -v to -p?
Thank you.
Go to the complete details ...