You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by ni...@apache.org on 2020/06/17 19:01:06 UTC

[lucenenet] 02/04: build/build.ps1: Added Powershell version number check

This is an automated email from the ASF dual-hosted git repository.

nightowl888 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucenenet.git

commit c6efbd3ea5ca95466ac2dc8c6b9d07442fa59fd8
Author: Shad Storhaug <sh...@shadstorhaug.com>
AuthorDate: Wed Jun 17 20:42:12 2020 +0700

    build/build.ps1: Added Powershell version number check
---
 build/build.ps1 | 1 +
 1 file changed, 1 insertion(+)

diff --git a/build/build.ps1 b/build/build.ps1
index 176fa2e..36c82d1 100644
--- a/build/build.ps1
+++ b/build/build.ps1
@@ -111,6 +111,7 @@ task Init -depends InstallSDK, UpdateLocalSDKVersion -description "This task mak
 	Write-Host "Configuration: $configuration"
 	Write-Host "Platform: $platform"
 	Write-Host "MaximumParallelJobs: $($maximumParalellJobs.ToString())"
+	Write-Host "Powershell Version: $($PSVersionTable.PSVersion)"
 
 	Ensure-Directory-Exists "$release_directory"
 }