-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
http://jira.cubrid.org/browse/APIS-1007 * [APIS-1007] 11.4 드라이버 호환 테스트 - ODBC (#3) - Windows SDK 버전 수정 * [APIS-1007] build 스크립트, 버전 수정 - 드라이버 버전을 11.3.1.0062로 수정 - 빌드 스크립트에서 vs2017, nsis 환경 변수를 확인하도록 설정
- Loading branch information
Showing
7 changed files
with
45 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#define MAJOR_VERSION 11 | ||
#define MINOR_VERSION 3 | ||
#define PATCH_VERSION 0 | ||
#define BUILD_SERIAL_NUMBER 0061 | ||
#define VERSION_STRING "11.3.0.0061" | ||
#define PATCH_VERSION 1 | ||
#define BUILD_SERIAL_NUMBER 0062 | ||
#define VERSION_STRING "11.3.1.0062" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
call "E:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\Tools\vsvars32.bat" | ||
call "%VS2017COMNTOOLS%VsDevCmd.bat" | ||
cd UnitTest | ||
devenv UnitTest.sln /project UnitTest\UnitTest.csproj /rebuild "Release|x86" | ||
cd UnitTest\bin\x86\Release | ||
devenv UnitTest.sln /project UnitTest\UnitTest.csproj /rebuild "Release|x64" | ||
cd UnitTest\bin\x64\Release | ||
MSTest/testcontainer:UnitTest.dll |