src.csharp hidden in VS Code #1034
-
Some time ago when I was fixing C# test cases I noticed that the src.csharp folder wasn't showing in VS Code. Today I found why: In "files.exclude": {
"dist/lib.csharp/**": true,
"src.csharp/**": true,
"node_modules/**": true
} Is there a reason for this? Perhaps hiding some subfolder with gitignored binaries is the intention? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I can also add a question: Why is |
Beta Was this translation helpful? Give feedback.
-
The C# code is ignored on the top level project mainly because when working on the C# code I have a separate Visual Studio / Rider open and do not want to have the C# code spoil the code navigation within TypeScript. Having it not ignored, causes it to be included in all searches and code completion actions which most of the time is not the desired location to jump to. Actually my ultimate goal is that there is no need for having C# code but have all code in TypeScript. But I never went that far eliminating the C#/Kotlin code until now. The discussion about |
Beta Was this translation helpful? Give feedback.
The C# code is ignored on the top level project mainly because when working on the C# code I have a separate Visual Studio / Rider open and do not want to have the C# code spoil the code navigation within TypeScript. Having it not ignored, causes it to be included in all searches and code completion actions which most of the time is not the desired location to jump to. Actually my ultimate goal is that there is no need for having C# code but have all code in TypeScript. But I never went that far eliminating the C#/Kotlin code until now.
The discussion about
src/generated
has been started already multiple times. The main reason is despite the nature of it being generated code, it makes any…