-
-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable cake scripts that are not part of the solution #31
Comments
nils-a
referenced
this issue
in nils-a/cake-rider
Jan 13, 2021
a new settings page was introduced: "Search paths". This page contains two settings: The search paths to start the search for Cake files and excludes for paths that should not be searched. Default search paths is ["."], which correlates to the "old" functionality. Default exclude is [".*/tools/.*"] to exclude the tools folder and thereby excluding Cake files that were added from NuGet packages.
nils-a
referenced
this issue
in nils-a/cake-rider
Jan 14, 2021
a new settings page was introduced: "Search paths". This page contains two settings: The search paths to start the search for Cake files and excludes for paths that should not be searched. Default search paths is ["."], which correlates to the "old" functionality. Default exclude is [".*/tools/.*"] to exclude the tools folder and thereby excluding Cake files that were added from NuGet packages.
nils-a
referenced
this issue
in nils-a/cake-rider
Jan 14, 2021
a new settings page was introduced: "Search paths". This page contains two settings: The search paths to start the search for Cake files and excludes for paths that should not be searched. Default search paths is ["."], which correlates to the "old" functionality. Default exclude is [".*/tools/.*"] to exclude the tools folder and thereby excluding Cake files that were added from NuGet packages.
nils-a
referenced
this issue
in nils-a/cake-rider
Jan 16, 2021
a new settings page was introduced: "Search paths". This page contains two settings: The search paths to start the search for Cake files and excludes for paths that should not be searched. Default search paths is ["."], which correlates to the "old" functionality. Default exclude is [".*/tools/.*"] to exclude the tools folder and thereby excluding Cake files that were added from NuGet packages.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
some setups look like this:
build.ps1
build.cake
src
my-project.sln
In that case, when the
sln
is opened in Rider, thebuild.cake
is not known toCake-Rider
.One possible solution would be to add a reference to the
build.cake
to thecsproj
(Something like<None Include="$(SolutionDir)/../build.cake" Link="build.cake" />
) and haveCake-Rider
pick that up automatically.Another solution could be to add "additional search-paths" to the
Cake-Rider
configuration. (So the search for Cake scripts would start in the root folder, not in thesrc
folder.)The text was updated successfully, but these errors were encountered: