#
net5
Here are 315 public repositories matching this topic...
redis
cors
t4
ioc
jwt
repository
dependency-injection
swagger
netcore
rbac
aop
autofac
dto
automapper
netcore-webapi
sqlsugar
sqlsugarcore
rbac-roles
net5
netcore-vue
-
Updated
Apr 30, 2021 - C#
.NET 5, ASP.NET Core 5, Entity Framework Core 5, C# 9, Angular 11, Clean Code, SOLID, DDD.
angular
typescript
csharp
solid
dotnet
aspnetcore
ddd
dotnetcore
best-practices
clean-code
architecture
domain-driven-design
dot-net
clean-architecture
dotnet-core
aspnet-core
c-charp
dotnet5
net5
dot-net-5
-
Updated
May 6, 2021 - C#
This repository contains Hands on Test Driven Development Katas (C#)
nunit
nunit-tests
netframework
nunit-framework
tdd-kata
nunit2
nunit3
dotnet-core2
csharp8
dotnetcore31
net5
csharp9
net50
-
Updated
Mar 14, 2021 - C#
Clean Architecture Solution Template for ASP.NET Core 5.0. Built with Onion/Hexagonal Architecture and incorporates the most essential Packages your projects will ever need. Includes both WebApi and Web(MVC) Projects.
-
Updated
Apr 1, 2021 - CSS
Craftsman is the workhorse behind the Wrapt framework and provides a suite of CLI commands for quickly scaffolding out new files and projects for your .NET Web APIs with simple CLI commands and configuration files.
docker
cli
template-engine
cqrs
csharp
web-api
dotnet-core
scaffolding
cli-commands
mediatr
automated-testing
craftsman
automated-test-generation
dotnet5
net5
wrapt
vertical-slice-architecture
-
Updated
Apr 29, 2021 - C#
A data access library for MongoDB with an elegant api, LINQ support and built-in entity relationship management
-
Updated
Apr 14, 2021 - C#
.NET 5 Nuget Packages.
security
ioc
validation
mongodb
nuget-packages
repository
dotnet
mapping
aspnetcore
nuget
dotnetcore
logging
dot-net
mediator
dotnet-core
dot-net-core
entityframeworkcore
dotnet5
net5
dot-net-5
-
Updated
May 4, 2021 - C#
ASP.NET Core MVC implementation of the WOPI protocol. Enables integration with WOPI clients such as Office Online Server.
dotnetcore
cobalt
office
dotnet-core
aspnet-core
dotnet-standard
kestrel
hacktoberfest
owa
wopi
ms-wopi
ms-fsshttp
oos
wopi-host
net-core
office-online
dotnet5
net5
-
Updated
Apr 24, 2021 - C#
使用Pipeline和DotNetty分别实现的JT808Gateway支持TCP/UDP通用消息业务处理(支持2013、2019版本)
-
Updated
Apr 29, 2021 - C#
Jonpro03
commented
Nov 24, 2020
Depends on #66.
https://wiki.vg/Protocol#Update_Light
Cross platform .NET bindings for https://www.khronos.org/vulkan/
csharp
dotnet
dotnetcore
vulkan
dotnet-core
netstandard
vulkan-api
vulkan-sdk
netstandard20
vortice
net5
-
Updated
May 7, 2021 - C#
A full-featured starter template for `dotnet new` to quickly scaffold a .Net 5 Web-Api project with MongoDB as the data store.
-
Updated
Apr 22, 2021 - C#
Fully automatic admin site generator for ASP.NET Core and .NET 5
-
Updated
May 3, 2021 - C#
A simple Visual Studio solution using jQuery DataTable with Server-Side processing using .NET Core
javascript
jquery
visual-studio
datatables
datatable
asp-net-core
jquery-datatables
datatables-plugin
asp-net-core-mvc
net-core
jquery-datatable-serverside
netcore2
datatables-ajax
netcore3
jquery-datatable
netcore31
net5
net-5
-
Updated
Aug 22, 2020 - JavaScript
Cache NuGet packages for offline use
-
Updated
Feb 22, 2021 - C#
NotifyIcon for .Net Core 3.1 and .Net 5 WPF.
-
Updated
Jan 21, 2021 - C#
Kaliumhexacyanoferrat
commented
Nov 25, 2020
As a developer, I would like to pass ZIP archives to resource dependent handlers, so that I do not need to extract the archive first.
Example
var archive = Resource.FromFile("./app.zip");
var tree = ResourceTree.FromArchive(archive);
// use the archive for whatever we want to
var app = SinglePageApplication.From(tree); // Listing.From(tree), Resources.From(tree)
HostImprove this page
Add a description, image, and links to the net5 topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the net5 topic, visit your repo's landing page and select "manage topics."
Unless there is a good reason to have the thread
SynchronizationContextpreserved, all of yourawait ...calls throughout the library should have.ConfigureAwait(false)appended.Not having this causes deadlocks when having to call your library in a synchronous manner such as:
var meta = ffmpeg.GetMetaDataAsync(input).GetAwaiter().GetResult();Obviously you would ideally not call it