Sune Foldager
Sune Foldager
When building less on Windows (with Visual C++) utf-8 input (when the codepage for the current console is set to 65001), doesn't work correctly. When I press / to enter...
This is because the MasterTestRunner is never "loaded" (i.e. the Load method called) before the tests are run, which then makes CountTests return 0. Curiously, no code ever calls Load...
If you add a service with two endpoints, say like this config.AddService(); config.AddServiceEndpoint(new BasicHttpBinding(), "http://localhost:8765/foo"); config.AddServiceEndpoint(new BasicHttpBinding(), "http://localhost:8765/foo2"); ... var serviceMetadataBehavior = app.ApplicationServices.GetRequiredService(); serviceMetadataBehavior.HttpGetEnabled = true; Then WSDL metadata and...
### Summary of the new feature / enhancement Currently, if you want to make a wrapper for some non-PowerShell command, say to add an argument, write them to a log...
### Description I made a dotnet class library with a single method: public static double ConvertForMe(decimal d) { return (double)d; } I then wrote a small console program that calls...