Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
bytewizer committed Oct 11, 2021
2 parents ebc54ef + 3fcce1e commit e2c2d52
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class Program

**main** :: This is the branch containing the latest release build. No contributions should be made directly to this branch. The development branch will periodically be merged to the main branch, and be released to [NuGet](https://www.nuget.org/packages?q=bytewizer.tinyclr).

**develop** :: This is the development branch to which contributions should be proposed by contributors as pull requests. Development build packages are available as attached artifacts on successful build [workflows](https://github.com/bytewizer/blueswireless/actions/workflows/actions.yml).
**develop** :: This is the development branch to which contributions should be proposed by contributors as pull requests. Development build packages are available as [Github Packages](https://github.com/bytewizer?tab=packages).

## Contributions

Expand Down
16 changes: 8 additions & 8 deletions playground/Bytewizer.TinyCLR.Notecard/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ static void Main()
var notecard = new NotecardController(controller);

// Set product id with json request (this only needs to be done once)
//var request1 = new JsonRequest("hub.set");
//request1.Add("product", "[your-product-uid]"); // replace your this with your project uid

//var results1 = notecard.Request(request1);
//if (results1.IsSuccess)
//{
// Debug.WriteLine(results1.Response);
//}
var request1 = new JsonRequest("hub.set");
request1.Add("product", "[your-product-uid]"); // replace your this with your project uid

var results1 = notecard.Request(request1);
if (results1.IsSuccess)
{
Debug.WriteLine(results1.Response);
}

// Create a json body object
var body = new JsonObject();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup>
<Description>Blues Wireless driver built for TinyCLR IoT devices.</Description>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
Expand Down
1 change: 1 addition & 0 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<Authors>Microcompiler</Authors>
<Company>Bytewizer Technology</Company>
<PackageIcon>package-logo.png</PackageIcon>
<RepositoryUrl>https://github.com/bytewizer/blueswireless.git</RepositoryUrl>
<PackageId>$(AssemblyName)</PackageId>
<PackageTags>ghi tinyclr tinyclros sitcore iot blues wireless</PackageTags>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
Expand Down

0 comments on commit e2c2d52

Please sign in to comment.