Replies: 1 comment 1 reply
-
|
hi Thanks for your advice, It seems that the feature does not support all IDEs(Rider). |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Uh oh!
There was an error while loading. Please reload this page.
-
Hey everyone. Just a random thought:
abp's code base increases in the amount of projects that reside in the .sln files.
Opening such a solution it can be time consuming and you may load way more projects than you need.
Using .slnf Files could be a good fit for this.
Docs: https://learn.microsoft.com/en-us/visualstudio/ide/filtered-solutions?view=vs-2022
a solution filter file is rather simple and may look like this:
my-solution-filter.slnf{ "solution": { "path": "my-solution.sln", "projects": [ "apps\\App1\\App1.csproj", "modules\\Module1\\Module1.csproj", "modules\\Module2\\Module2.csproj", "modules\\Module3\\Module3.csproj" ] } }also this works:
dotnet build my-solution-filter.slnfBeta Was this translation helpful? Give feedback.
All reactions