Base solution for your next web application

Activities of "korp"

while (!DirectoryContains(directoryInfo.FullName, "MySolution.sln"))
            {
                if (directoryInfo.Parent == null)
                {
                    throw new Exception("Could not find content root folder!");
                }

                directoryInfo = directoryInfo.Parent;
            }

This code should not search for solution name (MySolution.sln) -- this is a auto generated code.

I have the same issue when deploying to azure (when there is no solution file)

Hello there. I was wondering if the SignalR unsupported warning is related to "Not implemented in aspnetzer yet" or "not supported in dotnet core (signalr-core) in the way we can use it"

Thanks

Showing 1 to 2 of 2 entries