I am trying to exclude some projects from building in azure pipelines.
I tried the following options...
- Trying to build only the projects under core?
- script: dotnet build **/Core/*.csproj --configuration $(buildConfiguration)
and
- script: dotnet build **/Core/**/*.csproj --configuration $(buildConfiguration)
- Trying to use the task @DotnNetCli2.0
- Referenced the yaml file matching patterns
But couldn't find a good example.
The projects I want to build are under different subfolders as in ../../Core/Domain/Domain.csproj
and ../../Core/Presentation/Presentation.csproj
Is there something I'm missing, is it possible; or am I just plain doing something wrong.