Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

using System.Linq; Unknown Resolver Error #35

Open
clperez opened this issue Jan 19, 2016 · 3 comments
Open

using System.Linq; Unknown Resolver Error #35

clperez opened this issue Jan 19, 2016 · 3 comments

Comments

@clperez
Copy link

clperez commented Jan 19, 2016

Hi:

I have a 'Class Library' project (VS2015, but not vnext project) which implements the following class:

using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;

namespace FrameworkFundamentals
{
static class TextHandling
{
public static void BasicStringOperations()
{
Console.WriteLine(Char.ToUpper('c'));
Console.WriteLine(char.IsWhiteSpace('\t'));
Char.ConvertFromUtf32(234);
var list = new List(30);
list.Select(item => item.Length).ToList().ForEach(Console.WriteLine);
Console.WriteLine(char.ToUpper('i', CultureInfo.InvariantCulture));
}
}
}

Sublime displays an error on the "using System.Linq;" line. Error : Unknown Resolver Error - (4, 18)

Omnisharp is working, as it is offering me Intellisense while writing code, but Linq is not listed a sub-namespace of System while writing the using System.Linq line.

Any idea of what could be happening?. I can provide code, and sublime config files if necessary.

Regards.

@danpolanco
Copy link

Did you get it to work? I just ran into this problem on macOS, vim, and YouCompleteMe.

@clperez
Copy link
Author

clperez commented Nov 9, 2016

Hi Dan.

No. And I actually gave Up on using sublime as my primary editor for dotnet Core. Seems like the last time kulture was updated was before RC2.

Regards

@danpolanco
Copy link

Thanks @clperez.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants