Talk to Rich.
Won't fix. Talk to Rich, what's our .NET Native statement?
Talk to Rich.
Won't fix. Talk to Rich, what's our .NET Native statement?
You need to link your GitHub and @microsoft.com accounts. Click the link:
You need to join multiple teams in two organizations. Click those links:
This is a funnel of our API review process with links to issuesof.net:
graph TD
S(<a href='https://issuesof.net/?q=is%3Aopen%20is%3Aissue%20label%3Aapi-suggestion'>Suggested</a><br>921) --> T{Triage}
T -->R(<a href='https://issuesof.net/?q=is%3Aopen%20is%3Aissue%20label%3Aapi-ready-for-review'>Ready for Review</a><br>43)
T -->C(<a href='https://issuesof.net/?q=is%3Aclosed%20is%3Aissue%20%28label%3Aapi-ready-for-review%20or%20label%3Aapi-needs-work%20or%20label%3Aapi-suggestion%29'>Closed</a><br>1,930)
R --> RM{Review Meeting}
using System; | |
using System.Collections.Generic; | |
using System.Collections.ObjectModel; | |
using System.Reflection; | |
using System.Text; | |
namespace ConsoleApp52 | |
{ | |
internal static class Program | |
{ |
We've performed a usability study on the new System.Text.Json
APIs which will
replace JSON.NET as the default JSON experience in .NET Core 3.0:
Analysis by @stephentoub
You can easily see that by running this code on .NET Framework today:
using System;
using Microsoft.CodeAnalysis; | |
using Microsoft.CodeAnalysis.CSharp; | |
using Microsoft.CodeAnalysis.CSharp.Syntax; | |
using Microsoft.CodeAnalysis.Text; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
namespace NetStandardCleanup |
This document captures how I'd like to pull requests to work. For context, I work on an open source project that has many repos and more importantly a lot of people working on it (in the hundreds). Also, I'm not a developer but a program manager so many of my PRs tend to be non-code, like blog posts and specifications.
However, I don't think my issues with GitHub's PR flow are a function of my role and mostly a function of the team size and thus the number of reviewers I
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using Microsoft.CodeAnalysis; | |
using Microsoft.CodeAnalysis.CSharp; | |
using Microsoft.CodeAnalysis.CSharp.Syntax; | |
namespace ConditionalCompilationSplitter | |
{ | |
class Program |