Skip to content
#

net5

Here are 315 public repositories matching this topic...

🦸【C#/.NET/.NET Core学习、工作、面试指南】概述:C#/.NET/.NET Core基础知识,学习资料、文章、书籍,社区组织,工具和常见的面试题总结。以及面试时需要注意的事项和优秀简历编写技巧,希望能和大家一起成长进步👊。【让现在的自己不再迷茫

  • Updated Apr 15, 2021
CameronWills
CameronWills commented Nov 12, 2019

Unless there is a good reason to have the thread SynchronizationContext preserved, all of your await ...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

craftsman

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.

  • Updated Apr 29, 2021
  • C#
Kaliumhexacyanoferrat
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)

Host

Improve this page

Add a description, image, and links to the net5 topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the net5 topic, visit your repo's landing page and select "manage topics."

Learn more