From bbb661899258565d79dc8a46e8166f05a4f255fa Mon Sep 17 00:00:00 2001 From: Chris Mullins Date: Thu, 20 Sep 2018 17:30:17 -0700 Subject: [PATCH] Create directory as part of pre-build events, as it's missing by default. --- .../EnterpriseBotVSIX/EnterpriseBotVSIX.csproj | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates/Enterprise-Template/EnterpriseBotVSIX/EnterpriseBotVSIX.csproj b/templates/Enterprise-Template/EnterpriseBotVSIX/EnterpriseBotVSIX.csproj index 5f1b3894f2..458a2b8d85 100644 --- a/templates/Enterprise-Template/EnterpriseBotVSIX/EnterpriseBotVSIX.csproj +++ b/templates/Enterprise-Template/EnterpriseBotVSIX/EnterpriseBotVSIX.csproj @@ -67,7 +67,8 @@ - powershell Compress-Archive -Path '$(SolutionDir)EnterpriseBotTemplate\Bot Framework' -DestinationPath '$(ProjectDir)ProjectTemplates\Bot Framework.zip' -Force + powershell New-Item -ItemType Directory -Force -Path '$(ProjectDir)ProjectTemplates' +powershell Compress-Archive -Path '$(SolutionDir)EnterpriseBotTemplate\Bot Framework' -DestinationPath '$(ProjectDir)ProjectTemplates\Bot Framework.zip' -Force