-
Notifications
You must be signed in to change notification settings - Fork 72
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
Bug in Visual Studio Community 2013 #268
Comments
I just opened the same solution on a Windows 10 computer with Visual Studio 2015 and Visual Rust installed - there is no error message and the syntax highlighting works. The problem seems to be with VS2013 or my OS. |
record 334reformatted for readability:
It's complaining about this: [Import]
readonly IRustLexer lexer; // <---
[ImportingConstructor]
public RustClassifierProvider(IRustLexer lexer)
{
this.lexer = lexer;
}
I don't know enough about VS extension to be certain, but I think we don't need to both [Import] and init this via [ImportingConstructor]. tl;dr: I just need to remove either record 335seems unrelated. |
Should be fixed by MaulingMonkey@38b5e9d |
I have installed the Plugin, I run Visual Studio Community 2013 on Windows 2008 Server R2. Usually, differences to Windows 7 are negligible. When creating a new "Rust Application" project, I receive the following error message:
where I have anonymized the path to my ActivityLog.xml. The file contains two error messages towards the end:
The source file in this project then has no syntax highlighting. Building and running executables works fine.
Observation: When I reload the project, or close the solution and re-open it without restarting Visual Studio, syntax highlighting works and no error message is displayed. However, the error re-occurs every time I open Visual Studio for the first time and then load the rust application project.
The text was updated successfully, but these errors were encountered: