Eric Erhardt

Results 78 issues of Eric Erhardt

SpecialFolder Personal is the same value as MyDocuments, both of which will be changed on Unix from `~` to `~/Documents` in .NET 8. See https://github.com/dotnet/runtime/pull/68610. Fixing the usage of SpecialFolder.Personal...

**Version Used**: 3.8.0-1.20361.1 (f24d2c5c) See the discussions in: * https://github.com/dotnet/runtime/pull/40431#issuecomment-669768677 * https://github.com/mono/linker/issues/1416 When annotating Type information to make a library linker-friendly, there are times when an annotation needs to flow...

Bug
Area-Compilers

See the suppression here: https://github.com/dotnet/aspnetcore/blob/1d04387cf3b68636f8ade0118334f87ae5f56f7d/src/Components/Web/src/WebEventData/WebEventData.cs#L61-L79 This suppression is not valid because there is no guarantee the `eventArgsType` hasn't been trimmed, and thus the Deserialization may fail, or behave differently, in...

bug
area-blazor

When I `dotnet publish -c Release -p:PublishAot=true` the following app: ```C# var app = new ApplicationBuilder(serviceProvider: null); UseMiddlewareExtensions.UseMiddleware(app); public class HiMiddleware { public Task Invoke(HttpContext context) { Console.WriteLine("hi"); return Task.CompletedTask;...

area-web-frameworks

### Description We have this code that was added in https://github.com/xamarin/Xamarin.Forms/pull/11400 for UWP. https://github.com/dotnet/maui/blob/e37b7bb2445348622e22c516044ac4c537d18f6e/src/Compatibility/Core/src/Windows/BootstrapHelper.cs#L7-L40 Is this still necessary? Can it be removed? It is not trim-compatible since the method being...

t/bug
platform/windows 🪟
area/perf 🏎️
s/verified
s/triaged

### Description I am unable to launch my Maui Windows application from the command line. With Android I can with `dotnet build -t:Run`. But this doesn't work with Windows. Note...

t/bug
platform/windows 🪟
area-tooling
area-publishing
blocked
s/verified
s/triaged
external
t/desktop

# Issue that does not fit into other categories **What are you trying to achieve?** With #1415 we are copying a new version of PropertyFetcher from open-telemetry/opentelemetry-dotnet that is AOT-compatible....

enhancement

Running the following program: ```xml Exe net8.0 enable enable ``` ```C# using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.DependencyInjection; RunTest("Host=localhost;Database=test"); Console.WriteLine("First test passed"); RunTest("Host=myserver;Database=mydata"); Console.WriteLine("Second test passed"); static void RunTest(string connectionString) { var serviceCollection...

bug

### Is your feature request related to a specific problem? Or an existing feature? The `AddStrategy` extension methods take a `ResilienceStrategyOptions options` argument, which gets validated using DataAnnotations. This makes...

feature suggestion

_(Note: Leaving in Draft until #2497 is merged as this needs a `net6.0` target. You can skip the first commit in the review for now.)_ This adds the initial implementation...