The VS Publish option to publish on a local file system path does not work. It throws and error since there is no web.config file, and when I created one it does not copy anything to the output directory.
Comments: You can also just put in a simple security web.config file, which is probably an excellent idea anyway to block any snoopers: eg ``` <?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <security> <authorization> <remove users="*" roles="" verbs="" /> <add accessType="Deny" users="*" /> </authorization> </security> </system.webServer> </configuration> ```
Comments: You can also just put in a simple security web.config file, which is probably an excellent idea anyway to block any snoopers: eg ``` <?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <security> <authorization> <remove users="*" roles="" verbs="" /> <add accessType="Deny" users="*" /> </authorization> </security> </system.webServer> </configuration> ```