From be64fec73c935b136224a4301dcfc9e5fadf8306 Mon Sep 17 00:00:00 2001 From: Shad Storhaug Date: Fri, 26 Jul 2019 04:49:54 +0700 Subject: [PATCH] build-pack-and-publish-libraries.yml: Fixed test files convention --- build/azure-templates/build-pack-and-publish-libraries.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/azure-templates/build-pack-and-publish-libraries.yml b/build/azure-templates/build-pack-and-publish-libraries.yml index abaf94054..26fa945d1 100644 --- a/build/azure-templates/build-pack-and-publish-libraries.yml +++ b/build/azure-templates/build-pack-and-publish-libraries.yml @@ -21,7 +21,7 @@ parameters: binaryArtifactName: 'testbinaries' # The name of the Azure DevOps build artifact where the test assemblies will be output. Default 'testbinaries'. solutionFilesConvention: '**/*.sln' # The glob pattern where to look for solution files. Default '**\*.sln'. packableProjectFilesConvention: '**/*.csproj' # The glob pattern (within $(System.DefaultWorkingDirectory)) where to look for project files to pack into .nupkg files for deployment. - testProjectFilesConvention: '**/*.Tests.*.csproj' # The glob pattern (within $(System.DefaultWorkingDirectory)) where to look for test project files, so they can be distinguished from other project file types. + testProjectFilesConvention: '**/*.Tests*.csproj' # The glob pattern (within $(System.DefaultWorkingDirectory)) where to look for test project files, so they can be distinguished from other project file types. testSymbolFilesConvention: '**/*.Tests.*/**/*.pdb' # The glob pattern (within $(System.DefaultWorkingDirectory)) where to look for test project symbols (.pdb) files, so they can be distinguished from other project file types.