mirror of
				https://github.com/winfsp/winfsp.git
				synced 2025-10-29 19:18:39 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			102 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			Batchfile
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			102 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			Batchfile
		
	
	
		
			Executable File
		
	
	
	
	
| @echo off
 | |
| 
 | |
| setlocal
 | |
| setlocal EnableDelayedExpansion
 | |
| 
 | |
| set MsiName="WinFsp - Windows File System Proxy"
 | |
| set CrossCert="%~dp0DigiCert High Assurance EV Root CA.crt"
 | |
| set Issuer="DigiCert"
 | |
| set Subject="Navimatics Corporation"
 | |
| 
 | |
| set Configuration=Release
 | |
| set SignedPackage=
 | |
| 
 | |
| if not X%1==X set Configuration=%1
 | |
| if not X%2==X set SignedPackage=%2
 | |
| 
 | |
| call "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" x64
 | |
| 
 | |
| if not X%SignedPackage%==X (
 | |
|     if not exist "%~dp0..\build\VStudio\build\%Configuration%\winfsp-*.msi" (echo previous build not found >&2 & exit /b 1)
 | |
|     if not exist "%SignedPackage%" (echo signed package not found >&2 & exit /b 1)
 | |
|     del "%~dp0..\build\VStudio\build\%Configuration%\winfsp-*.msi"
 | |
|     if exist "%~dp0..\build\VStudio\build\%Configuration%\winfsp.*.nupkg" del "%~dp0..\build\VStudio\build\%Configuration%\winfsp.*.nupkg"
 | |
|     for /R "%SignedPackage%" %%f in (*.sys) do (
 | |
|         copy "%%f" "%~dp0..\build\VStudio\build\%Configuration%" >nul
 | |
|     )
 | |
| )
 | |
| 
 | |
| cd %~dp0..\build\VStudio
 | |
| set signfail=0
 | |
| 
 | |
| if X%SignedPackage%==X (
 | |
|     if exist build\ for /R build\ %%d in (%Configuration%) do (
 | |
|         if exist "%%d" rmdir /s/q "%%d"
 | |
|     )
 | |
| 
 | |
|     devenv winfsp.sln /build "%Configuration%|x64"
 | |
|     if errorlevel 1 goto fail
 | |
|     devenv winfsp.sln /build "%Configuration%|x86"
 | |
|     if errorlevel 1 goto fail
 | |
| 
 | |
|     for %%f in (build\%Configuration%\winfsp-x64.sys build\%Configuration%\winfsp-x86.sys) do (
 | |
|         signtool sign /ac %CrossCert% /i %Issuer% /n %Subject% /fd sha1 /t http://timestamp.digicert.com %%f
 | |
|         if errorlevel 1 set /a signfail=signfail+1
 | |
|         signtool sign /as /ac %CrossCert% /i %Issuer% /n %Subject% /fd sha256 /tr http://timestamp.digicert.com /td sha256 %%f
 | |
|         if errorlevel 1 set /a signfail=signfail+1
 | |
|     )
 | |
| 
 | |
|     pushd build\%Configuration%
 | |
|     echo .OPTION EXPLICIT >driver.ddf
 | |
|     echo .Set CabinetFileCountThreshold=0 >>driver.ddf
 | |
|     echo .Set FolderFileCountThreshold=0 >>driver.ddf
 | |
|     echo .Set FolderSizeThreshold=0 >>driver.ddf
 | |
|     echo .Set MaxCabinetSize=0 >>driver.ddf
 | |
|     echo .Set MaxDiskFileCount=0 >>driver.ddf
 | |
|     echo .Set MaxDiskSize=0 >>driver.ddf
 | |
|     echo .Set CompressionType=MSZIP >>driver.ddf
 | |
|     echo .Set Cabinet=on >>driver.ddf
 | |
|     echo .Set Compress=on >>driver.ddf
 | |
|     echo .Set CabinetNameTemplate=driver.cab >>driver.ddf
 | |
|     echo .Set DiskDirectory1=. >>driver.ddf
 | |
|     echo .Set DestinationDir=x64 >>driver.ddf
 | |
|     echo driver-x64.inf >>driver.ddf
 | |
|     echo winfsp-x64.sys >>driver.ddf
 | |
|     echo .Set DestinationDir=x86 >>driver.ddf
 | |
|     echo driver-x86.inf >>driver.ddf
 | |
|     echo winfsp-x86.sys >>driver.ddf
 | |
|     makecab /F driver.ddf
 | |
|     signtool sign /ac %CrossCert% /i %Issuer% /n %Subject% /t http://timestamp.digicert.com driver.cab
 | |
|     if errorlevel 1 set /a signfail=signfail+1
 | |
|     popd
 | |
| )
 | |
| 
 | |
| devenv winfsp.sln /build "Installer.%Configuration%|x86"
 | |
| if errorlevel 1 goto fail
 | |
| 
 | |
| for %%f in (build\%Configuration%\winfsp-*.msi) do (
 | |
|     signtool sign /ac %CrossCert% /i %Issuer% /n %Subject% /fd sha1 /t http://timestamp.digicert.com /d %MsiName% %%f
 | |
|     if errorlevel 1 set /a signfail=signfail+1
 | |
|     REM signtool sign /ac %CrossCert% /i %Issuer% /n %Subject% /fd sha256 /tr http://timestamp.digicert.com /td sha256 /d %MsiName% %%f
 | |
|     REM if errorlevel 1 set /a signfail=signfail+1
 | |
| )
 | |
| 
 | |
| if not %signfail%==0 echo SIGNING FAILED! The product has been successfully built, but not signed.
 | |
| 
 | |
| where /q choco.exe
 | |
| if %ERRORLEVEL% equ 0 (
 | |
|     for %%f in (build\%Configuration%\winfsp-*.msi) do set Version=%%~nf
 | |
|     set Version=!Version:winfsp-=!
 | |
| 
 | |
|     copy ..\choco\* build\%Configuration%
 | |
|     copy ..\choco\LICENSE.TXT /B + ..\..\License.txt /B build\%Configuration%\LICENSE.txt /B
 | |
|     certutil -hashfile build\%Configuration%\winfsp-!Version!.msi SHA256 >>build\%Configuration%\VERIFICATION.txt
 | |
|     choco pack build\%Configuration%\winfsp.nuspec --version=!Version! --outputdirectory=build\%Configuration%
 | |
|     if errorlevel 1 goto fail
 | |
| )
 | |
| 
 | |
| exit /b 0
 | |
| 
 | |
| :fail
 | |
| exit /b 1
 |