���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/st2/vendor/google/protobuf/ |
setlocal IF %language%==cpp GOTO build_cpp IF %language%==csharp GOTO build_csharp echo Unsupported language %language%. Exiting. goto :error :build_cpp echo Building C++ mkdir build_msvc cd build_msvc cmake -G "%generator%" -Dprotobuf_BUILD_SHARED_LIBS=%BUILD_DLL% -Dprotobuf_UNICODE=%UNICODE% ../cmake msbuild protobuf.sln /p:Platform=%vcplatform% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" || goto error cd %configuration% tests.exe || goto error goto :EOF :build_csharp echo Building C# cd csharp\src REM The platform environment variable is implicitly used by msbuild; REM we don't want it. set platform= dotnet restore dotnet build -c %configuration% || goto error echo Testing C# dotnet test -c %configuration% -f netcoreapp1.0 Google.Protobuf.Test\Google.Protobuf.Test.csproj || goto error dotnet test -c %configuration% -f net451 Google.Protobuf.Test\Google.Protobuf.Test.csproj || goto error goto :EOF :error echo Failed! EXIT /b %ERRORLEVEL%