https://github.com/Daniel-Krzyczkowski/AzureDeveloperTemplates
This repository contains helpful code templates for Azure cloud developers.
https://github.com/Daniel-Krzyczkowski/AzureDeveloperTemplates
azure azure-application-insights azure-cosmos-db azure-functions azure-services azure-storage
Last synced: 12 days ago
JSON representation
This repository contains helpful code templates for Azure cloud developers.
- Host: GitHub
- URL: https://github.com/Daniel-Krzyczkowski/AzureDeveloperTemplates
- Owner: Daniel-Krzyczkowski
- License: mit
- Archived: true
- Created: 2020-02-19T17:27:29.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-07-21T22:39:51.000Z (over 3 years ago)
- Last Synced: 2024-07-17T15:02:21.569Z (over 1 year ago)
- Topics: azure, azure-application-insights, azure-cosmos-db, azure-functions, azure-services, azure-storage
- Language: C#
- Homepage:
- Size: 24 MB
- Stars: 59
- Watchers: 9
- Forks: 21
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-software-architecture - https://github.com/Daniel-Krzyczkowski/AzureDeveloperTemplates
README

# Introduction
## This project and repository was created to collect templates related with Azure Services .NET SDK integration and commonly used design patterns.


*If you like this content, please give it a star!*

## Below main chapters are covered (will be extended in the future):
#### [1. Azure Application Insights SDK with ASP .NET Core](#Azure-Application-Insights-SDK-with-ASP-NET-Core)
#### [2. Azure Storage Blobs SDK with ASP .NET Core](#Azure-Storage-Blobs-SDK-with-ASP-NET-Core)
#### [3. Azure clients integration with ASP .NET Core using Microsoft.Extensions.Azure.Core Library](#Azure-clients-integration-with-ASP-NET-Core-using-Microsoft.Extensions.Azure.Core-Library)
#### [4. Azure Cosmos DB SDK with ASP .NET Core](#Azure-Cosmos-DB-SDK-with-ASP-NET-Core)
#### [5. Azure Event Hub SDK with ASP .NET Core](#Azure-Event-Hub-SDK-with-ASP-NET-Core)
#### [6. Azure Function With Dependency Injection](#Azure-Function-With-Dependency-Injection)
#### [7. Azure Service Bus SDK with ASP .NET Core](#Azure-Service-Bus-SDK-with-ASP-NET-Core)
#### [8. Azure SignalR Service SDK with ASP .NET Core](#Azure-SignalR-Service-SDK-with-ASP-NET-Core)
#### [9. Azure SQL DB Repository Pattern with Entity Framework Core and ASP .NET Core](#Azure-SQL-DB-Repository-Pattern-with-Entity-Framework-Core-and-ASP-NET-Core)
### Azure Application Insights SDK with ASP .NET Core

#### Packages used:
1. [Microsoft.ApplicationInsights.AspNetCore](https://www.nuget.org/packages/Microsoft.ApplicationInsights.AspNetCore)
#### Source code:
[Azure Developer Templates Starter project](https://github.com/Daniel-Krzyczkowski/AzureDeveloperTemplates/tree/master/src/azure-asp-net-core-starter-template)
### Azure Storage Blobs SDK with ASP .NET Core

#### Packages used:
1. [Azure.Storage.Blobs](https://www.nuget.org/packages/Azure.Storage.Blobs/)
#### Source code:
[Azure Developer Templates Starter project](https://github.com/Daniel-Krzyczkowski/AzureDeveloperTemplates/tree/master/src/azure-asp-net-core-starter-template)
### Azure clients integration with ASP .NET Core using Microsoft.Extensions.Azure.Core Library

#### Packages used:
1. [Microsoft.Extensions.Azure](https://www.nuget.org/packages/Microsoft.Extensions.Azure/)
2. [Azure.Storage.Blobs](https://www.nuget.org/packages/Azure.Storage.Blobs/)
#### Source code:
[Azure clients integration with ASP .NET Core using Microsoft.Extensions.Azure.Core Library](https://github.com/Daniel-Krzyczkowski/AzureDeveloperTemplates/tree/master/src/azure-core-extensions-asp-net-core-template)
### Azure Cosmos DB SDK with ASP .NET Core

#### Packages used:
1. [Azure.Cosmos](https://www.nuget.org/packages/Azure.Cosmos)
#### Source code:
[Azure Developer Templates Starter project](https://github.com/Daniel-Krzyczkowski/AzureDeveloperTemplates/tree/master/src/azure-asp-net-core-starter-template)
### Azure Event Hub SDK with ASP .NET Core

#### Packages used:
1. [Azure.Messaging.EventHubs](https://www.nuget.org/packages/Azure.Messaging.EventHubs/)
#### Source code:
[Azure Developer Templates Starter project](https://github.com/Daniel-Krzyczkowski/AzureDeveloperTemplates/tree/master/src/azure-asp-net-core-starter-template)
### Azure Function With Dependency Injection

#### Packages used:
1. [Microsoft.Azure.Functions.Extensions](https://www.nuget.org/packages/Microsoft.Azure.Functions.Extensions/)
2. [Microsoft.NET.Sdk.Functions](https://www.nuget.org/packages/Microsoft.NET.Sdk.Functions/)
#### Source code:
[Azure Function With Dependency Injection](https://github.com/Daniel-Krzyczkowski/AzureDeveloperTemplates/tree/master/src/azure-function-with-dependency-injection-template)
### Azure Service Bus SDK with ASP .NET Core

#### Packages used:
1. [Azure.Messaging.ServiceBus](https://www.nuget.org/packages/Azure.Messaging.ServiceBus/)
#### Source code:
[Azure Developer Templates Starter project](https://github.com/Daniel-Krzyczkowski/AzureDeveloperTemplates/tree/master/src/azure-asp-net-core-starter-template)
### Azure SignalR Service SDK with ASP .NET Core

#### Packages used:
1. [Microsoft.Azure.SignalR](https://www.nuget.org/packages/Microsoft.Azure.SignalR/)
#### Source code:
[Azure Developer Templates Starter project](https://github.com/Daniel-Krzyczkowski/AzureDeveloperTemplates/tree/master/src/azure-asp-net-core-starter-template)
### Azure SQL DB Repository Pattern with Entity Framework Core and ASP .NET Core

#### Packages used:
1. [Microsoft.EntityFrameworkCore.SqlServer](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore.SqlServer/)
2. [Microsoft.EntityFrameworkCore.Tools](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore.Tools/)
#### Source code:
[Azure Developer Templates Starter project](https://github.com/Daniel-Krzyczkowski/AzureDeveloperTemplates/tree/master/src/azure-asp-net-core-starter-template)