Jonas Gauffin

Results 44 comments of Jonas Gauffin

Not yet. Testing it to make sure that everything works. Will be `coderrio/communityserver/windows` and `coderrio/communityserver/linux`

The windows image should now work: https://hub.docker.com/repository/docker/coderrio/communityserver-win. I'm not so experienced in linux, feel free to help.

Thank you! If you don't mind I'll keep this as a PR until everything have been completed.

Feel free to push updates as soon as you got any, so I might be able to help you with the scripts that are left.

The plugin API is there but can't be used for Live. However, let me know which bug tracker you are using and I'll take a look at it.

No it's not covered as the FormatCodeBlock only get the actual code and not any language specifier. ``` csharp // Callback to format a code block (ie: apply syntax highlighting)...

It would have helped if t least the position in the complete text block had been specified, as then you could manually found the backticks and the language specifier.

Here is a quick and dirty solution which I currently use: ``` public static string FormatCall(this ICall call) { return string.Format("{0}.{1}({2})", call.Target().GetType().Name, call.GetMethodInfo().Name, FormatArguments(call)); } public static string FormatArguments(this ICall...

No, I want to assert that the argument contains a specific value. ``` csharp var userNames = (IEnumerable)repos.ReceivedArgumentsFor("Save")[0]; userNames.Should().Contain(42); ``` It could also have been solved if you used equality...