Skip to content

kenmd/csharp-starter

Repository files navigation

C# Starter Sample Code Remix

C# simple examples intended to be a quick starter code

Setup Local SQL Server

  • see local-database repository
    • local-mssql to start Docker SQL Server
    • flyway-mssql to setup test table
  • C# development intro using VSCode
  • console app connecting to SQL Server
  • run dotnet restore right after git clone
  • AWS Lambda C# basic example
  • Lambda connecting to SQL Server
  • run dotnet restore in src/MyFunction
  • AWS Lambda initial setup with the latest .NET 5
  • using new feature - Docker Container Image Support
  • enable debug the locally running container from VSCode
  • AWS Cloud Development Kit simple example
  • add CloudWatch Event to trigger the Lambda
  • simple Class Library Example with Unit Test
  • setup Local NuGet and install Local NuGet package
  • .NET Core Console sample app with DI, Logging and JSON settings
  • simple demo app of Delegate and Event
  • simple demo app of async/await