From 6789dbc10200e8cf66041ed6fa7e1878b9e46196 Mon Sep 17 00:00:00 2001 From: SteveSandersonMS Date: Sat, 7 Jan 2017 00:04:20 +0000 Subject: [PATCH] csproj-based projects don't need the _placeholder.txt files, because the publishing code correctly includes dist files even if they were not on disk before --- templates/package-builder/src/yeoman/app/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/package-builder/src/yeoman/app/index.ts b/templates/package-builder/src/yeoman/app/index.ts index 86be996..cef076a 100644 --- a/templates/package-builder/src/yeoman/app/index.ts +++ b/templates/package-builder/src/yeoman/app/index.ts @@ -50,7 +50,7 @@ const templates = [ const sdkChoices = [{ value: '1.0.0-preview2-1-003177', // Current released version name: 'project.json' + chalk.gray(' (compatible with .NET Core tooling preview 2 and Visual Studio 2015)'), - includeFiles: [/^project.json$/, /\.xproj$/] + includeFiles: [/^project.json$/, /\.xproj$/, /_placeholder.txt$/] }, { value: '1.0.0-preview3-004056', // Version that ships with VS2017RC name: '.csproj' + chalk.gray(' (compatible with .NET Core tooling preview 3 and Visual Studio 2017)'),