I’m finally creating a new “Build Your Own Application Framework” course. Now is your chance to shape this course and make sure it covers the topics you care about!
try-catch-FAIL
Stories from the trenches of software development.
Month: <span>July 2018</span>
Passing Data from ASP.NET Core to Angular
Every application needs some configuration data. For ASP.NET Core applications, we can pull configuration data from JSON files, environment variables, or anywhere else we want. For Angular applications, we can define environment-specific configuration files that are automatically wired up for us based on our build configuration. But what do we do when we need to…