Adam Sitnik
Adam Sitnik
Hi @isabr85 To disable all exporters you need to define a config with no exporters. This should work: ```cs var noExporters = ManualConfig.CreateEmpty() .AddColumnProvider(DefaultColumnProviders.Instance) .AddLogger(ConsoleLogger.Default); ``` and pass it to...
@AndreyAkinshin I don't have time ;( I am finishing the CoreFX port ;) @evilguest would you like to send a PR? you did a great job finding the source of...
@WojciechNagorski if you are still looking for some task then most probably this one would have the biggest impact (it's going to solve at least 10+ bugs)
> Yes, I would like to solve this task. I will find time next week. Awesome! I've assigned you to the task.
@WojciechNagorski awesome :D
The test has failed with timeout when performing `dotnet restore`: > The configured timeout 00:02:00 was reached! I think that we should just disable it for this particular config if...
Hello @brianrob ! No worries, for some reason I did not get a notification about your response and here I am, with 2 months delay. > sorry for the delay...
I took a look at the usage of `LocalizationResources` in dotnet/sdk as @jonsequitur told me that we added this type to satisfy the SDK requirements. SDK defines a custom type...
I've noted some additional questions today: ## Completions ### CompletionItem ```cs public class CompletionItem .ctor(String label, String kind = Value, String sortText = null, String insertText = null, String documentation...
@KalleOlaviNiemitalo big thanks for all the answers! > I use Symbol.GetCompletions() for testing a custom completion callback; please do not remove this feature. The alternative Symbol.GetCompletions(CompletionContext) is not suitable because...