Fixes the upload script to purge the CDN correctly and display success output. (#466) (#497)

(cherry picked from commit e544b40faa5ab61b6aba691577d90b2b641f664d)
diff --git a/Tools/msi/uploadrelease.proj b/Tools/msi/uploadrelease.proj
index 305e84f..75840f2 100644
--- a/Tools/msi/uploadrelease.proj
+++ b/Tools/msi/uploadrelease.proj
@@ -8,6 +8,7 @@
         <DownloadUrlBase Condition="'$(DownloadUrlBase)' == ''">$(TARGET)</DownloadUrlBase>
         <DownloadUrlBase Condition="'$(DownloadUrlBase)' == ''">/srv/www.python.org/ftp/python</DownloadUrlBase>
         <IncludeDoc Condition="'$(IncludeDoc)' == ''">true</IncludeDoc>
+        <BuildForRelease Condition="'$(BuildForRelease)' == ''">true</BuildForRelease>
         <DryRun Condition="'$(DryRun)' == ''">false</DryRun>
         <Purge Condition="'$(Purge)' == ''">false</Purge>
     </PropertyGroup>
@@ -91,6 +92,7 @@
         <RemoveDir Directories="%(WebInstaller.LayoutDir)" />
         <RemoveDir Directories="%(WebInstaller.SourceDir)" />
         <RemoveDir Directories="%(WebInstaller.LogDir)" />
+        <Message Text="Successfully downloaded %(WebInstaller.Filename)%(WebInstaller.Extension) layout" Importance="high" />
     </Target>
     
     <Target Name="Upload" DependsOnTargets="_ValidateProperties;_RunGpg;_PrintNames;_Upload;_Purge" />