This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Objective: Using MCP tools as appropriate I want you to analyze active issues in dotnet/runtime repo to perform a detailed analysis, categorization, scoring, frustration analysis, and generate a roadmap. The categorization should be based on keyword matching, semantic understanding of the issue description, and comment analysis. The content of the issue bodies and comments should not be included in the output, aside from the metadata used for categorization. | |
Final Engagement Score Formula | |
Use the following formula to calculate the Engagement Score for each issue: | |
[ | |
S = \frac{w_c \cdot C^{1.5} \cdot C_{penalty} \cdot w_d \cdot (D + 0.1) \cdot (1 + w_l \cdot A) \cdot (1 + w_u \cdot U)}{1 + w_a \cdot \sqrt{A + \epsilon}} | |
] | |
Where: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
C:\git\aspnetcore\src\Components\Components\src\Routing\Router.cs:95 - | |
C:\git\aspnetcore\src\Components\Components\src\Routing\Router.cs:74 - | |
C:\git\aspnetcore\src\Components\Web\src\Forms\InputFile\RemoteBrowserFileStreamOptions.cs:12 - public class RemoteBrowserFileStreamOptions | |
C:\git\aspnetcore\src\Components\Web\src\Web\WebEventCallbackFactoryEventArgsExtensions.cs:19 - | |
C:\git\aspnetcore\src\Components\Web\src\Web\WebEventCallbackFactoryEventArgsExtensions.cs:35 - | |
C:\git\aspnetcore\src\Components\Web\src\Web\WebEventCallbackFactoryEventArgsExtensions.cs:51 - | |
C:\git\aspnetcore\src\Components\Web\src\Web\WebEventCallbackFactoryEventArgsExtensions.cs:67 - | |
C:\git\aspnetcore\src\Components\Web\src\Web\WebEventCallbackFactoryEventArgsExtensions.cs:83 - | |
C:\git\aspnetcore\src\Components\Web\src\Web\WebEventCallbackFactoryEventArgsExtensions.cs:99 - | |
C:\git\aspnetcore\src\Components\Web\src\Web\WebEventCallbackFactoryEventArgsExtensions.cs:115 - |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# GitHub Issue Label Counter for dotnet/aspnetcore | |
# Counts issues by label in 10.0-rc1, 10.0-preview7 milestones, or no milestone | |
# GitHub Personal Access Token (set this to your token) | |
$GitHubToken = $env:GITHUB_TOKEN | |
if (-not $GitHubToken) { | |
$GitHubToken = Read-Host "Enter your GitHub Personal Access Token" -AsSecureString | |
$GitHubToken = [System.Runtime.InteropServices.Marshal]::PtrToStringAuto([System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($GitHubToken)) | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
setlocal enabledelayedexpansion | |
set "inputfile=combos" | |
for /f "usebackq delims=" %%a in ("%inputfile%") do ( | |
rd /s/q Foo | |
echo ======================== | |
md Foo | |
pushd Foo | |
echo Running: ########## %%a ############# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AspNetCore.HealthChecks.Azure.Data.Tables,AspNetCore.HealthChecks.Azure.KeyVault.Secrets,AspNetCore.HealthChecks.Azure.Storage.Blobs,AspNetCore.HealthChecks.Azure.Storage.Queues,AspNetCore.HealthChecks.AzureServiceBus,AspNetCore.HealthChecks.Kafka,AspNetCore.HealthChecks.MongoDb,AspNetCore.HealthChecks.MySql,AspNetCore.HealthChecks.NpgSql,AspNetCore.HealthChecks.Rabbitmq,AspNetCore.HealthChecks.Redis,AspNetCore.HealthChecks.SqlServer,AWS.Messaging,AWSSDK.CloudFormation,AWSSDK.Core,AWSSDK.Extensions.NETCore.Setup,AWSSDK.SimpleNotificationService,AWSSDK.SQS,Azure.AI.OpenAI,Azure.Data.Tables,Azure.Extensions.AspNetCore.Configuration.Secrets,Azure.Identity,Azure.Messaging.EventHubs.Processor,Azure.Messaging.ServiceBus,Azure.Messaging.WebPubSub,Azure.Provisioning,Azure.Provisioning.AppConfiguration,Azure.Provisioning.ApplicationInsights,Azure.Provisioning.CognitiveServices,Azure.Provisioning.CosmosDB,Azure.Provisioning.EventHubs,Azure.Provisioning.KeyVault,Azure.Provisioning.OperationalInsights,Azure.Provisioning. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Row Labels | Count of 1 | | |
| ----------- | ---------- | | |
| 0 | 12647 | | |
| 1 | 62735 | | |
| 2 | 43475 | | |
| 3 | 27852 | | |
| 4 | 17408 | | |
| 5 | 11870 | | |
| 6 | 8788 | | |
| 7 | 7623 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Diagnostics; | |
using System.IO; | |
using System.IO.Compression; | |
namespace compressionspeed | |
{ | |
internal class Program | |
{ | |
static TimeSpan last = TimeSpan.Zero; | |
static long lastSize = 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Diagnostics; | |
using System.Linq; | |
using System.Numerics; | |
internal class Program | |
{ | |
public static void Main(string[] args) | |
{ | |
// Check for an off-by-one type error causing us to consistently not generate values |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.ComponentModel; | |
using System.Runtime.InteropServices; | |
using BenchmarkDotNet.Attributes; | |
using BenchmarkDotNet.Configs; | |
using BenchmarkDotNet.Environments; | |
using BenchmarkDotNet.Jobs; | |
using BenchmarkDotNet.Running; | |
[MemoryDiagnoser] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// See https://aka.ms/new-console-template for more information | |
using System.Formats.Tar; | |
using Xunit; | |
public static class C | |
{ | |
public async static Task Main() | |
{ | |
List<Task> tasks = new(); |
NewerOlder