Project Subfolder Remains Hidden in Rider

I have a project with the following structure:
C:\DEVELOPMENT\CODINGAUTOMATION\CODINGAUTOMATION.METADATA
│ CodingAutomation.Metadata.csproj
│ README.md

├───bin
...
├───obj
...
├───Reflection
│ ClassReflector.cs

└───Roslyn
ClassSyntaxTree.cs
Example1-Program.cs
C:\DEVELOPMENT\CODINGAUTOMATION\CODINGAUTOMATION.METADATA
│ CodingAutomation.Metadata.csproj
│ README.md

├───bin
...
├───obj
...
├───Reflection
│ ClassReflector.cs

└───Roslyn
ClassSyntaxTree.cs
Example1-Program.cs
The Roslyn folder always remains hidden, except if I switch on Show All Files in Explorer, unlike the Reflection folder which behaves normally. The pics are Explorer with Show All Files switched off and then on. I have tried deleting the Roslyn folder, saving the solution, and restarting Rider, but this folder remains hidden when other such project sub-folders, like Reflection are all visible. The Roslyn folder is always visible when I open the project in Visual Studio. There is nothing untoward in the project file, like a <Compile Remove directive or anything:
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis" Version="4.13.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.13.0" />
</ItemGroup>

</Project>
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis" Version="4.13.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.13.0" />
</ItemGroup>

</Project>
I have tried the Report a Bug command on the Help menu, but that just collected and submitted logs, without any opportunity for me to explain anything about the bug.
No description
No description
4 Replies
VoidPointer
VoidPointerOP2w ago
I have tried deleting the while .idea folder as well as the CodingAutomation.sln.DotSettings.user file with no effect.
FusedQyou
FusedQyou2w ago
Check your .csproj if you exclude the folder in there
FusedQyou
FusedQyou2w ago
Otherwise Add existing item and pick the Roslyn folder
No description
VoidPointer
VoidPointerOP2w ago
I've checked both those aspects, and neither works. The folder is steadfastly still hidden. The Rider team have triaged my issue without rejecting it, so I hope they see some merit in investigating.

Did you find this page helpful?