Escrevi e criei o projeto exatamente como na aula mas ao compilar ele da um erro "there were build errors. Would you like to continue and run the last successful build" eu pressionei sim e ao abrir o localhost ele aparece apenas o "ola mundo" segue codigo:
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Http; using Microsoft.Extensions.DependencyInjection;
namespace Teste { public class Startup { // This method gets called by the runtime. Use this method to add services to the container. // For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940 public void ConfigureServices(IServiceCollection services) { }
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
var livros = new List<Livro>();
livros.Add(new Livro("001", "Quem mexeu na Minha query", 12.99m));
livros.Add(new Livro("002", "Fique rico com C#", 30.99m));
livros.Add(new Livro("003", "Java para Baixinhos", 25.99m));
app.Run(async (context) =>
{
foreach (var livro in livros)
{
await context.Response.WriteAsync($"{livro.Codigo}{livro.Nome}{livro.Preco}\r\n");
}
});
}
}
}