Yiwen Wang

Results 6 comments of Yiwen Wang

I have no idea about how to distinguish updated `PackageReference` in `Packages.props` from other normal `PackageReference` without custom tasks, and I guess we have below options: 1. Add custom tasks...

I've created a PR (#203) for this to allow users opt-in per-project `PackageReference`. Users can enable this feature by assigning `AllowPackageReferenceWithVersion` to `true` before importing `Microsoft.Build.CentralPackageVersion` sdk, e.g.: ```xml true...

It there any chance that we can have below APIs be a part of public APIs? In Elastic.Apm project: - `Agent.Instace` In Elastic.Apm.AspNetCore project: - `ApmMiddleware` - `ApmMiddlewareExtension.UseElasticApm(this IApplicationBuilder, ApmAgent,...

> @yhvicey Could please provide motivation/use cases for making those APIs public? Having use cases well understood will help us decide if we want to make those APIs public as...

**Workaround** 1. Remove `@types/dagre-d3`; 1. Add `@types/dagre` and `@types/d3`; 1. Create customized `.d.ts` file, e.g.: ```ts // dagre-d3.d.ts // Copied from existing type definition @types/dagre-d3, with some modification declare module...

I'd like to build a wrapper project integrating ElasticApm into [Generic Host](https://docs.microsoft.com/en-us/aspnet/core/fundamentals/host/generic-host?view=aspnetcore-3.0) using `IServiceProvider` only (only hooks `HttpDiagnosticsSubscriber`), then build an wrapper project for AspNetCore base on that project using...