Sehra
Sehra
CC#
Created by cornomorph on 3/9/2025 in #help
✅ System.Net.Sockets.SocketException (10048): Only one usage of each socket address
the address is already in use by another process (or you trying to bind it twice)
6 replies
CC#
Created by Ellopis on 2/28/2025 in #help
Configure Swagger UI through docker?
19 replies
CC#
Created by Angius on 3/7/2025 in #help
Aspire user secrets not available in prod environment
user secrets is only added as a configuration source in development
6 replies
CC#
Created by Faker on 3/6/2025 in #help
Unit Test, TestInitialize alternative in xUnit
if you have lots of common things to initialize, you can mark a method and you don't have to call it yourself in each test
4 replies
CC#
Created by Faker on 3/6/2025 in #help
Unit Test, TestInitialize alternative in xUnit
https://thomhurst.github.io/TUnit/docs/comparison/attributes has a comparison table, lifecycle hook attributes
4 replies
CC#
Created by Neophyte on 3/5/2025 in #help
Federated Authentication flow - AWS Cognito as IDP - Microsoft Entra MultiTenant app
welcome to cognito, it's special
5 replies
CC#
Created by Neophyte on 3/5/2025 in #help
Federated Authentication flow - AWS Cognito as IDP - Microsoft Entra MultiTenant app
5 replies
CC#
Created by Pszczółka Erina on 3/1/2025 in #help
Number With Decimal Point
or using d would be confusing with double, so m it was
59 replies
CC#
Created by Ellopis on 2/28/2025 in #help
Configure Swagger UI through docker?
or might be able to do docker inspect and find the container's ip address and connect directly
19 replies
CC#
Created by Ellopis on 2/28/2025 in #help
Configure Swagger UI through docker?
then outside localhost:8080 would be forwarded to 8080 inside the container
19 replies
CC#
Created by Ellopis on 2/28/2025 in #help
Configure Swagger UI through docker?
you can try starting the container with port mapping -p 8080:8080
19 replies
CC#
Created by Ellopis on 2/28/2025 in #help
Configure Swagger UI through docker?
are you running the server outside docker, and curl inside docker?
19 replies
CC#
Created by Ellopis on 2/28/2025 in #help
Configure Swagger UI through docker?
like 127.0.0.1 or localhost
19 replies
CC#
Created by Ellopis on 2/28/2025 in #help
Configure Swagger UI through docker?
it's listening on all, but to connect you need to specify one, so you can use ::1
19 replies
CC#
Created by Ellopis on 2/28/2025 in #help
Configure Swagger UI through docker?
:: here just means unspecified address
19 replies
CC#
Created by Ellopis on 2/28/2025 in #help
Configure Swagger UI through docker?
you said [::] above
19 replies
CC#
Created by Ellopis on 2/28/2025 in #help
Configure Swagger UI through docker?
ipv6 localhost would be [::1]
19 replies
CC#
Created by KARTOOS on 2/27/2025 in #help
Logging unhandled/fatal exception in .net core 8
14 replies
CC#
Created by bomboclatt🎀 on 2/27/2025 in #help
✅ My Discord multitool webhook thingy broken💔
"Discord Webhook Spammer" is this a good thing?
52 replies
CC#
Created by Crazy Cactuar on 2/26/2025 in #help
How to get a specific value from a method with multiple return values?
you need to name the parts in the return for first to work
public (int res, int gold, int bones, int parts) Method()
{
...
}
public (int res, int gold, int bones, int parts) Method()
{
...
}
7 replies