.NET
.NET is a free, cross-platform, open source developer platform for building many different types of applications.
-
- Sign up for GitHub or sign in to edit this page
- Created by Microsoft
- Released February 13, 2002
Here are 14,130 public repositories matching this topic...
This is in response to #7264, since we decided that PR is not the right way to do it.
I think we decided on: move the non-browser-specific tests out of the browser-specific test files.
So if the "chrome only" tests pass when using Firefox for instance, they should be moved to unit tests or into a common spec file of some kind.
QueryHelpers.AddQueryString("foo", new Dictionary<string, string> { ["bar"] = "bar", ["baz"] = null })This throws an ArgumentNullException at
+ System.Text.Encodings.Web.TextEncoder.Encode(string)
+ Microsoft.AspNetCore.WebUtilities.QueryHelpers.AddQueryString(string, IEnumerable<KeyValuePair<string, string>>)
There are 3 issues with this:
1 - The [docs ](ht
Installation Guidance Missing
No guidance on whether installation requires a reboot, or restart of services. No guidance on silent installation.
General
Trying to determine how to deploy this software using a configuration management tool, if there are command line options and whether restart of server/services is required.
Please provide a code sample for your issue if it is relev
jitstd has methods that also exist in std namespace that is declared in src\inc\clr_std\utility.
For example swap, pair, forward etc.
Also, it has many methods that are unused, for example utility::set_union, utility::set_difference etc.
So the tas
A collection of awesome .NET libraries, tools, frameworks and software
-
Updated
Nov 5, 2019 - 1 commits
PRs to add docs need not run the CI loop. This is mostly done now, except gifs/pngs/jpeg files added to docs folders also need to be whitelisted to not trigger build pipeline.
Steps to Reproduce
- Code
using System;
namespace Test
{
class MainClass
{
public static void Main(string[] args)
{
throw new Exception("blabla");
}
}
}- Run:
MONO_DEBUG=suspend-on-unhandled mono ./Test.exe
Current Behavior
Unhandled Exception:
System.Exception: blabla
at Test.MainClass.Main (System.String[] args) [0x000
This is a collection of tutorials for learning how to use Docker with various tools. Contributions welcome.
-
Updated
Nov 5, 2019 - 706 commits
- PHP
Vue quick start?
Can we get s Vue js quick start since Vue is becoming very popular these days?
🏆Gitee Most Valuable Project🚀A JSON Transmission Protocol and an ORM Library for automatically providing APIs and Docs
-
Updated
Nov 5, 2019 - 1 commits
- TSQL
Lightweight, low-ceremony, framework for building HTTP based services on .Net and Mono
-
Updated
Nov 5, 2019 - 5 commits
- C#
Document that optimistic timeout action must throw OperationCanceledException for proper signaling
I was confused to find that my timeout policy was not throwing a TimeoutRejectedException on timeout.
static void Dingus(CancellationToken ct)
{
Console.WriteLine($"It's 12 o'clock and all is well");
// Just wait until cancelled.
ct.WaitHandle.WaitOne();
}It appears that using the optimistic strategy, it is necessary to actually throw `OperationCancelled
As mentioned by Diego, these additions would help by simplifying the API usage for users even further and it should be pretty easy to implement for us:
@divega commented: dotnet/machinelearning-samples#617 (review)
@CESARDELATORRE, I did a deferred review. The experience seems pretty good.
1:
And I agree with you that it could be even better
I came across this issue when I decided to profile my (in progress) game and discovered I was generating a ton of VertexBufferBinding[] arrays during the
We have to many quickstarts - and updating them for each release is just too much work. Relying on external help has not proven to be feasible.
I'd like to simplify them - along the lines or our new grant types guidance
core
- Machine to Machine communication (aka client credentials)
- ASP.NET Core authentication only (using code flow) + external authentication
- ASP.NET Core authen
An easy way to perform background job processing in your .NET and .NET Core applications. No Windows Service or separate process required
-
Updated
Nov 5, 2019 - 3 commits
- C#
For each Job, it adds plots about density, cumulative mean, and so on. But two files are named BenchmarkDotNet.Artifacts/results/MyBench.Sleeps-Time50--density.png and BenchmarkDotNet.Artifacts/results/MyBench.Sleeps-Time50--facetDensity.png, with the -- instead of single. Like some iteration variable is empty (since later there are names with -Default-
.
-
Updated
Nov 5, 2019 - 2 commits
- C#
Free open-source ecommerce shopping cart (ASP.NET Core)
-
Updated
Nov 5, 2019 - 11 commits
- C#
Build cross platform desktop apps with ASP.NET Core.
-
Updated
Nov 5, 2019 - 422 commits
- C#
I'm attempting to use WMI monitoring in Opserver on a domain environment. Our sys-admin created a domain user which has permissions for WMI. At first, I tried setting the app pool to run as the specified domain user, but still wasn't seeing any data.
After poking around in the config classes, I updated my DashboardSettings.json WMI section to
"wmi": {
"nodes": [ "web01", "web02",
From conversation in PR #368
Documentation should be updated how to use Windows Authentication to make API calls.
There are two options to solve this, create a HttpClient yourself, or set the clienthandlerfactory in the RefitSettings;
// Option 1 : create HttpClient yourself
var client1 = RestService.For<IMyService>(
new HttpClient(new HttpClientHandler() { AllowAutoRediVersion: N/A
For users who are interested in using Akka.Persistence.Query, CQRS, EventSourcing, projections, and so forth - the only practical way to combine data from multiple persistent entities without knowing in advance what those entity IDs are is to use Akka.Persistence.Query's EventsByTag queries.
Unfortunately, if you start writing to Akka.Persistence without using any tags at all,
Learn about dotnet
- Organization
- dotnet
- Website
- dotnet.microsoft.com
- Wikipedia
- Wikipedia
There are a few places in corefx that are declaring these two constants, but we should be consuming them solely from Interop.Kernel32.GenericOperations.
A few of them are shared with CoreLib so the file needs to be moved to the correct location.
See this comment for more context:
dotnet/corefx#42099 (comment)