You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Don't able to create folder structure inside a solution. I want to structure the projects in my solution insdise folders like Src (folder with other folders)-> Admin (folder with Admin projects e.g Admin, AdminUnitTests, AdminLibrary etc), Customer (Folder with Customer projects e.g Customer, CustomerUnitTests, CustomerLibrary etc).
But the folders don't show in the Solution Explorer defying the purpose of adding the folders.
Extension version: 1.15.34
VS Code version: Code 1.96.4 (Universal) (cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba, 2025-01-16T00:16:19.038Z)
OS version: Darwin arm64 24.2.0
Modes:
I able create the Folder structure inside the Solution Folder by using CommandLine. First create a folder. This will be the solution name. Then run this command under that folder: dotnet new sln
Create new Folder inside the Solution Folder: mkdir src
Move to the src folder: cd src
create the project folder inside src folder: mkdir admin
move to the project folder: cd admin
Create the desired projects inside project folder: dotnet new classlib --name AdminLibrary dotnet new xunit --name AdminUnitTests dotnet new maui --name Admin
Move to the solution folder cd .. cd ..
Now add the newly created projects to the solution: dotnet sln add Admin/admin/Admin/Admin.csproj dotnet sln add Admin/admin/AdminUnitTests/AdminUnitTests.csproj dotnet sln add Admin/admin/AdminLibrary/AdminLibrary.csproj
Note that every project create it's own folder. Open the folder in vscode and you will find the solution well structured inside respective folders.
The text was updated successfully, but these errors were encountered:
Type: Bug
Don't able to create folder structure inside a solution. I want to structure the projects in my solution insdise folders like Src (folder with other folders)-> Admin (folder with Admin projects e.g Admin, AdminUnitTests, AdminLibrary etc), Customer (Folder with Customer projects e.g Customer, CustomerUnitTests, CustomerLibrary etc).
But the folders don't show in the Solution Explorer defying the purpose of adding the folders.
Extension version: 1.15.34
VS Code version: Code 1.96.4 (Universal) (cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba, 2025-01-16T00:16:19.038Z)
OS version: Darwin arm64 24.2.0
Modes:
System Info
canvas_oop_rasterization: enabled_on
direct_rendering_display_compositor: disabled_off_ok
gpu_compositing: enabled
multiple_raster_threads: enabled_on
opengl: enabled_on
rasterization: enabled
raw_draw: disabled_off_ok
skia_graphite: disabled_off
video_decode: enabled
video_encode: enabled
webgl: enabled
webgl2: enabled
webgpu: enabled
webnn: disabled_off
A/B Experiments
EDIT
I able create the Folder structure inside the Solution Folder by using CommandLine. First create a folder. This will be the solution name. Then run this command under that folder:
dotnet new sln
Create new Folder inside the Solution Folder:
mkdir src
Move to the src folder:
cd src
create the project folder inside src folder:
mkdir admin
move to the project folder:
cd admin
Create the desired projects inside project folder:
dotnet new classlib --name AdminLibrary
dotnet new xunit --name AdminUnitTests
dotnet new maui --name Admin
Move to the solution folder
cd ..
cd ..
Now add the newly created projects to the solution:
dotnet sln add Admin/admin/Admin/Admin.csproj
dotnet sln add Admin/admin/AdminUnitTests/AdminUnitTests.csproj
dotnet sln add Admin/admin/AdminLibrary/AdminLibrary.csproj
Note that every project create it's own folder. Open the folder in vscode and you will find the solution well structured inside respective folders.
The text was updated successfully, but these errors were encountered: