Posts by Lauro L. Nunes • 16 points
2 posts
-
0
votes2
answers963
viewsA: Images do not appear on the website posted on the web server
In fact you would not need to put the "tilde" before the address, hence the search will be from your base directory, not IIS. Would look like this: <img src="/imagens/logo.png" />…
-
0
votes2
answers596
viewsA: I cannot initialize Automapper Settings 6.2.2 Asp.netcore 2.0
Hello @ I found the solution to the problem. In the Startup.Cs class, just switch: services.Addautomapper() for: services.Addautomapper(Assembly.Getassembly(typeof(Automapperconfig))); Here for me…