export win_data_root_dir=/cygdrive/c/var for dir in `ls -1 $win_data_root_dir`; do target_path=$win_data_root_dir/$dir ; link_path=/var/$dir ; mkdir -p `dirname $link_path`; unlink $link_path; ln -s "$target_path" "$link_path"; ls -la $link_path; done; history | cut -c 8-
Getting the ASP.NET Core Server Hosting Urls at Startup and in Requests
-
[image: Startup Banner]
Today I was helping out a customer with their ASP.NET core application that
wasn't starting up on a live server, hosted in IIS. N...
1 week ago