[Solved] Real projects on .Net Core [closed]

Whilst I agree that this is not the correct forum for such a question, a quick and simple Google search suggests that https://www.ageofascent.com/ is built on .Net Core to some degree. Additionally, although not quite what you’re looking for, .Net Core is supported in lots of Windows Docker containers running Windows Server Core, due to … Read more

[Solved] Visual Studio said my variables are useless in a private method [closed]

Because these parameters are not being passed by reference, setting them to any value will only change the value of the parameter variables local to your helper method: it will not impact the values that were passed in to those parameters. Since you don’t use the new values you’re assigning to those parameters inside the … Read more

[Solved] What to use instead of WCF in .NET Core? [closed]

Currently gRPC is described as to be a way for wcf migration, you can communicate in half streaming, full streaming. But be careful that half streaming can interrupt to collect information but it will not interrupt all the process on the server side. From what i seen, on asp.net (there is a core version) the … Read more

[Solved] Net Core Framework Versions on IIS

.NET Core is flexible regarding different versions running on the same web server. Publishing an application as self-contained, will allow you to run as many different versions as you would like on the same web server. See .NET Core application publishing overview. Only if you are publishing as framework-dependent would you need that specific .NET … Read more