Pavel Voronin

Results 41 comments of Pavel Voronin

@domaindrivendev , here's my config: ```CSharp app.UsePathBase(pathBase); app.UseForwardedHeaders(); app.UseSwagger(); app.UseSwaggerUI(options => { options.RoutePrefix = "swagger"; options.SwaggerEndpoint("v1/swagger.json", "Order Fulfillment Portal API V1"); }); ``` Unfortunately, UI completely ignores path base =(

@jbogard , now I am confused. @domaindrivendev claims that it should work without any adjustments just because it uses relative paths. And in your example, I assume, we also need...

@jbogard You are killing me =) UI works fine for me, but the routes to endpoints are wrong.

Ok, I had to add server ``` services.AddSwaggerGen(c => { c.AddServer(new OpenApiServer { Url = pathBase }); c.SwaggerDoc("v1", new OpenApiInfo { Title = "Order Fulfillment", Version = "v1" }); ```

@mkrizek , effectively it means, nobody has time of it? =D

I just wanted to add that when I disable and trimming, so project file contains: ``` False False ``` I get the following error when I try to build in...

@ninachen03 , do I get you right that 17Mb is expected size of the app?

@ninachen03 `dotnet workload list`: ``` Installed Workload Id Manifest Version Installation Source ----------------------------------------------------------------------------------------------------------------- android 34.0.95/8.0.100 SDK 8.0.300-preview.24203, VS 17.10.34814.14, VS 17.9.34728.123 ios 17.2.8053/8.0.100 SDK 8.0.300-preview.24203, VS 17.10.34814.14, VS 17.9.34728.123 maccatalyst...

Hello there ;-), what's the curent status of this issue?