Bumps nanoFramework.CoreLibrary from 1.12.0-preview.19 to 1.12.0</br>Bumps nanoFramework.Runtime.Events from 1.10.0-preview.13 to 1.10.0</br>Bumps nanoFramework.System.Collections from 1.4.0-preview.27 to 1.4.0</br>Bumps nanoFramework.System.IO.Streams from 1.0.0-preview.19 to 1.0.0</br>Bumps nanoFramework.System.Math from 1.4.4-preview.22 to 1.4.4</br>Bumps nanoFramework.System.Net from 1.8.0-preview.43 to 1.8.1</br>Bumps nanoFramework.System.Text from 1.1.3-preview.24 to 1.1.3</br>Bumps nanoFramework.System.Threading from 1.0.4-preview.23 to 1.0.4</br>Bumps nanoFramework.ResourceManager from 1.1.4-preview.13 to 1.1.4</br>Bumps nanoFramework.System.Device.Gpio from 1.0.3-preview.18 to 1.0.4</br>
[version update]
### ⚠️ This is an automated update. ⚠️
Bumps nanoFramework.CoreLibrary from 1.12.0-preview.18 to 1.12.0-preview.19</br>Bumps nanoFramework.Runtime.Events from 1.10.0-preview.11 to 1.10.0-preview.13</br>Bumps nanoFramework.System.Collections from 1.4.0-preview.24 to 1.4.0-preview.27</br>Bumps nanoFramework.System.IO.Streams from 1.0.0-preview.17 to 1.0.0-preview.19</br>Bumps nanoFramework.System.Math from 1.4.4-preview.19 to 1.4.4-preview.22</br>Bumps nanoFramework.System.Net from 1.8.0-preview.39 to 1.8.0-preview.43</br>Bumps nanoFramework.ResourceManager from 1.1.4-preview.11 to 1.1.4-preview.13</br>Bumps nanoFramework.System.Device.Gpio from 1.0.3-preview.16 to 1.0.3-preview.18</br>
[version update]
### ⚠️ This is an automated update. ⚠️
Bumps nanoFramework.System.IO.Streams from 1.0.0-preview.15 to 1.0.0-preview.17</br>Bumps nanoFramework.System.Net from 1.8.0-preview.35 to 1.8.0-preview.39</br>
[version update]
### ⚠️ This is an automated update. ⚠️
Co-authored-by: josesimoes <jose.simoes@eclo.solutions>
* Update dependencies
* Change VS image to 2019
- nanoFramework build is now using VS2019.
* Revert unwanted changes in amqp sln
* Fix VS path
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
The reconnect example sends an unpopulated Begin performative to the
remote which violates the AMQP specification wherein the fields carrying
the next-outgoingid, incomingWindow and outgoingWindow are mandatory.
This results in failed connection attempts on remotes where these values
are validated and the begin attempt is rejected.
The example is modified here with a workaround that populates these
values with defaults similar to those in the Session class itself. In the
future it might be sensible to add another constructor that doesn't need
the Begin as the internal Default mechanism can construct on with the
Connection provided. The onBegin callback is really the main thing that
is of use in this context.
- Required to allow automated nuget updates. Can't be done with current structure with shared packages.config.
- Moved output folders of nanoFramework projects to the project folder.
- Update nanoFramework NuGets to the latest versions.
* Issue_402: Account for onOpened callback being called before connection.CreateAsync returns a value
* Issue_402: Account for race between CreateAsync and onOpened
Remove conditional code identified in review as questionable.
Instead just set connection variable every time.
Co-authored-by: Chug <chug@apache.org>
* Accept strongly typed Address in ContainerHost constructor
* Do not use obsolete ContainerHost constructor in tests
* Do not use obsolete ContainerHost constructor in example apps
- Update platform define symbol.
- Update NuGets.
- Update call to AuthenticateAsClient with new SslProtocols enum.
- Update appveyor to install nF build components without VS extension.
- Update NuGets to latest stable versions.
- Update SSL API calls to match latest changes.
- Update dependencies in nuspecs.
- Add ServiceBus example.
Signed-off-by: José Simões <jose.simoes@eclo.solutions>
- Remove target framework from nuspecs dependency group because this is not an officilly supported framework ID.
- Add missing owner to the nuspec.
- Add NuGet badges to readme.
- Update NuGets to latest available.
- Add projects for libs (standard and micro versions)
- Tweak code files, mostly adding compiler defs to include correct namespace
- Add test project
- Add example projects
- Add nuspecs
- Update docs
- Update build queue to include nF projects
- Tweak AppVeyor yaml:
+ added a build matrix with one job running VS2015 image an the existing build
+ add a second job to the matrix running a VS2017 image and doing the nanoFramework part of the build
- Clone main solution and edit the new one for VS2017 removing all the projects, except the nanoFramework related (left the bulk of the structure there to be picked up when moving stuff to VS2017)
Signed-off-by: José Simões <jose.simoes@eclo.solutions>