src/JetBrains.Space.Samples.App/Startup.cs [6:19]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - public class Startup { public Startup(IConfiguration configuration) { Configuration = configuration; } public IConfiguration Configuration { get; } // This method gets called by the runtime. Use this method to add services to the container. public void ConfigureServices(IServiceCollection services) { // Routing services.AddRouting(options => options.LowercaseUrls = true); - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - src/JetBrains.Space.Samples.Web/Startup.cs [7:20]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - public class Startup { public Startup(IConfiguration configuration) { Configuration = configuration; } public IConfiguration Configuration { get; } // This method gets called by the runtime. Use this method to add services to the container. public void ConfigureServices(IServiceCollection services) { // Razor services.AddRouting(options => options.LowercaseUrls = true); - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -