Skip to content

Commit

Permalink
Version bump for C transport nugets, bump version script updates (rel…
Browse files Browse the repository at this point in the history
…ease 2016-03-11)
  • Loading branch information
az-iot-builder-01 committed Mar 14, 2016
1 parent 43154f9 commit 937642c
Show file tree
Hide file tree
Showing 12 changed files with 28 additions and 36 deletions.
12 changes: 0 additions & 12 deletions build/release/auto_sign_c_client.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,3 @@ if %errorlevel% neq 0 exit /b %errorlevel%
rem -- Clean directories
del /F /Q %client-build-root%\build\tosign
del /F /Q %client-build-root%\build\signed

rem ******************************
rem * Sign the native "x64" dlls *
rem ******************************

rem -- Auto-sign the native "x64" dlls placed in the "tosign" Folder
csu.exe /s=True /w=True /i=%client-build-root%\build\tosign /o=%client-build-root%\build\signed /c1=401 /d="Signing Azure IoT Native Client binaries"
if %errorlevel% neq 0 exit /b %errorlevel%

rem -- Clean directories
del /F /Q %client-build-root%\build\tosign
del /F /Q %client-build-root%\build\signed
4 changes: 4 additions & 0 deletions build/release/auto_sign_deviceexplorer.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ del /F /Q %client-build-root%\build\tosign
del /F /Q %client-build-root%\build\signed

rem -- Build the DeviceExplorerWithInstaller.sln to ensure both projects are built
%client-build-root%\tools\DeviceExplorer\build\build.cmd
echo ErrorLevel after build.cmd for DeviceExplorer is %errorlevel%
if not %errorlevel%==0 exit /b %errorlevel%

devenv %client-build-root%\tools\DeviceExplorer\DeviceExplorerWithInstaller.sln /Build "Release"
echo ErrorLevel after devenv is %errorlevel%
if not %errorlevel%==0 exit /b %errorlevel%
Expand Down
2 changes: 1 addition & 1 deletion build/release/bump_version/versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"device": "1.0.2"
},
"c_nuget": {
"device": "1.0.2"
"device": "1.0.3"
},
"csharp": {
"device": "1.0.3",
Expand Down
24 changes: 12 additions & 12 deletions build/release/release_c_nuget.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -47,21 +47,21 @@ rem ----------------------------------------------------------------------------
rem -- Publish csharp NuGet Packages
rem -----------------------------------------------------------------------------
if not defined nuget_feed (
echo Y | call %build-root%\build\release\push_nugets.cmd --path %build-root%\c\azure-c-shared-utility\c\build_all\packaging\windows
if %errorlevel% neq 0 exit /b %errorlevel%
echo Y | call %build-root%\build\release\push_nugets.cmd --path %build-root%\c\azure-uamqp-c\build_all\packaging\windows
if %errorlevel% neq 0 exit /b %errorlevel%
echo Y | call %build-root%\build\release\push_nugets.cmd --path %build-root%\c\azure-umqtt-c\build_all\packaging\windows
if %errorlevel% neq 0 exit /b %errorlevel%
REM echo Y | call %build-root%\build\release\push_nugets.cmd --path %build-root%\c\azure-c-shared-utility\c\build_all\packaging\windows
REM if %errorlevel% neq 0 exit /b %errorlevel%
REM echo Y | call %build-root%\build\release\push_nugets.cmd --path %build-root%\c\azure-uamqp-c\build_all\packaging\windows
REM if %errorlevel% neq 0 exit /b %errorlevel%
REM echo Y | call %build-root%\build\release\push_nugets.cmd --path %build-root%\c\azure-umqtt-c\build_all\packaging\windows
REM if %errorlevel% neq 0 exit /b %errorlevel%
echo Y | call %build-root%\build\release\push_nugets.cmd --path %build-root%\c\build_all\packaging\windows
if %errorlevel% neq 0 exit /b %errorlevel%
) else (
echo Y Y | call %build-root%\build\release\push_nugets.cmd --path %build-root%\c\azure-c-shared-utility\c\build_all\packaging\windows --feed %nuget_feed%
if %errorlevel% neq 0 exit /b %errorlevel%
echo Y Y | call %build-root%\build\release\push_nugets.cmd --path %build-root%\c\azure-uamqp-c\build_all\packaging\windows --feed %nuget_feed%
if %errorlevel% neq 0 exit /b %errorlevel%
echo Y Y | call %build-root%\build\release\push_nugets.cmd --path %build-root%\c\azure-umqtt-c\build_all\packaging\windows --feed %nuget_feed%
if %errorlevel% neq 0 exit /b %errorlevel%
REM echo Y Y | call %build-root%\build\release\push_nugets.cmd --path %build-root%\c\azure-c-shared-utility\c\build_all\packaging\windows --feed %nuget_feed%
REM if %errorlevel% neq 0 exit /b %errorlevel%
REM echo Y Y | call %build-root%\build\release\push_nugets.cmd --path %build-root%\c\azure-uamqp-c\build_all\packaging\windows --feed %nuget_feed%
REM if %errorlevel% neq 0 exit /b %errorlevel%
REM echo Y Y | call %build-root%\build\release\push_nugets.cmd --path %build-root%\c\azure-umqtt-c\build_all\packaging\windows --feed %nuget_feed%
REM if %errorlevel% neq 0 exit /b %errorlevel%
echo Y Y | call %build-root%\build\release\push_nugets.cmd --path %build-root%\c\build_all\packaging\windows --feed %nuget_feed%
if %errorlevel% neq 0 exit /b %errorlevel%
)
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?><package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>Microsoft.Azure.IoTHub.AmqpTransport</id>
<version>1.0.2</version>
<version>1.0.3</version>
<title>Microsoft Azure IoTHub AMQP transport</title>
<authors>Apache Software Foundation, Microsoft Corp</authors>
<owners>Azure-IoT</owners>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?><package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>Microsoft.Azure.IoTHub.HttpTransport</id>
<version>1.0.2</version>
<version>1.0.3</version>
<title>Microsoft Azure IoTHub HTTP transport</title>
<authors>Microsoft Corp</authors>
<owners>Azure-IoT</owners>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?><package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>Microsoft.Azure.IoTHub.IoTHubClient</id>
<version>1.0.2</version>
<version>1.0.3</version>
<title>Microsoft Azure IoTHub IoTHubClient</title>
<authors>Microsoft Corp</authors>
<owners>Azure-IoT</owners>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?><package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>Microsoft.Azure.IoTHub.MqttTransport</id>
<version>1.0.2</version>
<version>1.0.3</version>
<title>Microsoft Azure IoTHub MQTT transport</title>
<authors>Microsoft Corp</authors>
<owners>Azure-IoT</owners>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?><package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>Microsoft.Azure.IoTHub.Serializer</id>
<version>1.0.2</version>
<version>1.0.3</version>
<title>Microsoft Azure IoTHub Serializer</title>
<authors>Microsoft Corp</authors>
<owners>Azure-IoT</owners>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.Azure.C.SharedUtility" version="1.0.2" targetFramework="native" />
<package id="Microsoft.Azure.IoTHub.AmqpTransport" version="1.0.2" targetFramework="native" />
<package id="Microsoft.Azure.IoTHub.IoTHubClient" version="1.0.1" targetFramework="native" />
<package id="Microsoft.Azure.IoTHub.AmqpTransport" version="1.0.3" targetFramework="native" />
<package id="Microsoft.Azure.IoTHub.IoTHubClient" version="1.0.3" targetFramework="native" />
<package id="Microsoft.Azure.uamqp" version="1.0.2" targetFramework="native" />
</packages>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.Azure.C.SharedUtility" version="1.0.2" targetFramework="native" />
<package id="Microsoft.Azure.IoTHub.HttpTransport" version="1.0.2" targetFramework="native" />
<package id="Microsoft.Azure.IoTHub.IoTHubClient" version="1.0.1" targetFramework="native" />
<package id="Microsoft.Azure.IoTHub.HttpTransport" version="1.0.3" targetFramework="native" />
<package id="Microsoft.Azure.IoTHub.IoTHubClient" version="1.0.3" targetFramework="native" />
</packages>
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.Azure.C.SharedUtility" version="1.0.2" targetFramework="native" />
<package id="Microsoft.Azure.IoTHub.IoTHubClient" version="1.0.1" targetFramework="native" />
<package id="Microsoft.Azure.IoTHub.MqttTransport" version="1.0.2" targetFramework="native" />
<package id="Microsoft.Azure.IoTHub.IoTHubClient" version="1.0.3" targetFramework="native" />
<package id="Microsoft.Azure.IoTHub.MqttTransport" version="1.0.3" targetFramework="native" />
<package id="Microsoft.Azure.umqtt" version="1.0.1" targetFramework="native" />
</packages>

0 comments on commit 937642c

Please sign in to comment.