1
0
mirror of https://github.com/winfsp/winfsp.git synced 2026-01-06 19:28:52 -06:00

tools: build.bat: skip choco build for non-WinFsp brands

This commit is contained in:
Bill Zissimopoulos
2021-04-13 14:38:51 -07:00
parent f8ee12f592
commit 3c7e712e57
3 changed files with 8 additions and 8 deletions

View File

@@ -10,6 +10,10 @@ for /F "tokens=2,3,4 delims=<>" %%a in (%~dp0..\build\VStudio\version.properties
set MyDescription=%%b
) else if "%%a"=="MyCompanyName" (
set MyCompanyName=%%b
) else if "%%a"=="MyProductVersion" (
set MyProductVersion=%%b
) else if "%%a"=="MyProductStage" (
set MyProductStage=%%b
)
)
)
@@ -18,3 +22,5 @@ echo MyProductName=%MyProductName%
echo MyProductFileName=%MyProductFileName%
echo MyDescription=%MyDescription%
echo MyCompanyName=%MyCompanyName%
echo MyProductVersion=%MyProductVersion%
echo MyProductStage=%MyProductStage%