XXavierincwizsoftware.com·Mar 9, 2022 · 1 min readAzure Resource Manager Quick Start TemplatesAzure Resource Manager Quick Start Templates is a treasure trove. I have to book mark it here. Templates00
XXavierincwizsoftware.com·Feb 18, 2022 · 1 min readOpenTelemetry .Net 6 Web JobOpenTelemetry is the software industry standard for logging so I wrote a sample Web Job that logs, traces and emits metrics using open telemetry. Sample on Git Hub00
XXavierincwizsoftware.com·Jan 20, 2022 · 1 min readCopying content folder in .csprojTo copy content folder in .csproj to output folder, add the following. <ItemGroup> <Content Include="$(ProjectDir)Content\**" CopyToOutputDirectory="PreserveNewest" /> </ItemGroup>00
XXavierincwizsoftware.com·Sep 12, 2021 · 1 min readMy software development principles.Do not violate the YAGNI principle. You aren't gonna need it. Do not violate the POLA principle. Principle of least astonishment. My preferences Domain-Driven Design. Functional programming. Test & Behavior Driven Development Clean Code: A Handb...00
XXavierincwizsoftware.com·Feb 24, 2021 · 1 min readRestful in .net coreTo return success with no content use return NoContent(); POST is used to create a resource so if the POST has a ID like POST authors/myid If the id exists it should return Conflict return new StatusCodeResult(StatusCodes.Status409Conflict) To creat...00