.NET Core
Last updated
Was this helpful?
Last updated
Was this helpful?
By default .NET Core Console applications reference very few elements.
These are good references to start with:
Microsoft.Extensions.DependencyInjection
Microsoft.Extensions.Logging
Microsoft.Extensions.Logging.Console
Microsoft.Extensions.Logging.Debug
Microsoft.Extensions.Configuration
Microsoft.Extensions.Configuration.Json
Json.NET
You can convert a Json to Xml:
.NET Core runs really well on Docker.
Official images repository:
To review:
{{< highlight csharp >}} // Startup.cs public void ConfigureServices(IServiceCollection services) { services.AddHttpClient(apiClientConfiguration.HttpClientName) .ConfigurePrimaryHttpMessageHandler( x => new HttpClientHandler { Credentials = new CredentialCache { { new Uri(apiClientConfiguration.EndpointDomain), "NTLM", new NetworkCredential(_configuration.CustomApiClientUsername, _configuration.CustomApiClientPassword) } } }); } {{< /highlight >}}
nopCommerce
Memory: poster from
You can find all the release notes on .
Start with then .
is the GitHub repository for .NET Core Docker official images, which are now hosted on . To know more read this arcticle published on March 15, 2019.
has an interesting blog to follow with articles on .NET Core and Docker.
2019-03-22
2019-01-07
"Deploy and Run a Distributed Cloud Native system using Istio, Kubernetes & .NET core"