333fred
333fred
CC#
Created by Kauan on 1/16/2025 in #help
C# Dev Kit Extension Syntax Highlighting and Autocomplete Not Working After Updating to .NET 9
Hmm. @shep, any ideas?
31 replies
CC#
Created by Kauan on 1/16/2025 in #help
C# Dev Kit Extension Syntax Highlighting and Autocomplete Not Working After Updating to .NET 9
Hmm. What happens if you run ".NET: Open Solution"?
31 replies
CC#
Created by Kauan on 1/16/2025 in #help
C# Dev Kit Extension Syntax Highlighting and Autocomplete Not Working After Updating to .NET 9
Do you have multiple solution files?
31 replies
CC#
Created by Kauan on 1/16/2025 in #help
C# Dev Kit Extension Syntax Highlighting and Autocomplete Not Working After Updating to .NET 9
Try adding that and seeing if it works for you
31 replies
CC#
Created by Kauan on 1/16/2025 in #help
C# Dev Kit Extension Syntax Highlighting and Autocomplete Not Working After Updating to .NET 9
But yes, it does look like it's still looking for 8
31 replies
CC#
Created by Kauan on 1/16/2025 in #help
C# Dev Kit Extension Syntax Highlighting and Autocomplete Not Working After Updating to .NET 9
That's the base extension you're looking at
31 replies
CC#
Created by Kauan on 1/16/2025 in #help
C# Dev Kit Extension Syntax Highlighting and Autocomplete Not Working After Updating to .NET 9
To be clear, that's not devkit
31 replies
CC#
Created by Kauan on 1/16/2025 in #help
C# Dev Kit Extension Syntax Highlighting and Autocomplete Not Working After Updating to .NET 9
You should be able to get more details from the output pane
31 replies
CC#
Created by Kauan on 1/16/2025 in #help
C# Dev Kit Extension Syntax Highlighting and Autocomplete Not Working After Updating to .NET 9
I'm honestly not sure how asdf is setting up this installation
31 replies
CC#
Created by Kauan on 1/16/2025 in #help
C# Dev Kit Extension Syntax Highlighting and Autocomplete Not Working After Updating to .NET 9
You need the actual location of the SDK
31 replies
CC#
Created by Kauan on 1/16/2025 in #help
C# Dev Kit Extension Syntax Highlighting and Autocomplete Not Working After Updating to .NET 9
The location of the exe is only part of the equation
31 replies
CC#
Created by Kauan on 1/16/2025 in #help
C# Dev Kit Extension Syntax Highlighting and Autocomplete Not Working After Updating to .NET 9
DevKit needs the actual location of the SDK and supporting libraries, not some symlinked shim to dotnet
31 replies
CC#
Created by Kauan on 1/16/2025 in #help
C# Dev Kit Extension Syntax Highlighting and Autocomplete Not Working After Updating to .NET 9
Not sure what asdf is or what that shim is, but it's probably not going to work
31 replies
CC#
Created by Faker on 1/13/2025 in #help
VB.NET what does it mean? Is it related to .NET ?
Pretty much exactly, just with a different il
21 replies
CC#
Created by Faker on 1/13/2025 in #help
VB.NET what does it mean? Is it related to .NET ?
The compilers for C#, VB.NET, F#, PeachPie, Cobol.NET, IronPython, etc, take your original source code and package it into a DLL which contains CIL
21 replies
CC#
Created by Faker on 1/13/2025 in #help
VB.NET what does it mean? Is it related to .NET ?
Ish. The .NET Runtime is a virtual machine, that translates CIL (common instruction language) into machine code
21 replies
CC#
Created by nathanAjacobs on 1/8/2025 in #help
Declaring methods with `in` parameters
Even if there's no chance the location can change, knowing that is a tiny bit of overhead
17 replies
CC#
Created by nathanAjacobs on 1/8/2025 in #help
Declaring methods with `in` parameters
For example, if you passed a ref to a field of a reference type
17 replies
CC#
Created by nathanAjacobs on 1/8/2025 in #help
Declaring methods with `in` parameters
Yes. The location of the struct could change
17 replies
CC#
Created by nathanAjacobs on 1/8/2025 in #help
Declaring methods with `in` parameters
Refs are tracked by the gc
17 replies