Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/tuyanet.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-11-04 13:13:51 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-11-04 13:13:51 +0300
commitee74dc9b6a2724561cc768341c51bba2f6d57312 (patch)
tree3a32f4665ce0bf050ae2b95e8c113fa4f3c7b007
parent737afd17444fb0b0794e9c7f07c6f9be05f584e9 (diff)
XML docs
-rw-r--r--.github/workflows/build.yml6
-rw-r--r--.github/workflows/docs.yml2
-rw-r--r--README.md2
-rw-r--r--TuyaNet.csproj1
4 files changed, 8 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 7e19622..61ef145 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -3,9 +3,9 @@ name: Build and pack
on:
# Runs on pushes targeting the default branch
push:
- branches: ["master"]
+ branches: ["main"]
pull_request:
- branches: [ master ]
+ branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
@@ -24,6 +24,8 @@ jobs:
with:
dotnet-version: 6.0.x
- name: Build
+ run: dotnet build -c Release
+ - name: Pack
run: dotnet pack -o ${{ env.OUTPUT_DIR }}
- name: Upload artifact
uses: actions/upload-artifact@v3
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml
index 39452e2..cf7c3a8 100644
--- a/.github/workflows/docs.yml
+++ b/.github/workflows/docs.yml
@@ -3,7 +3,7 @@ name: Deploy documentation
on:
# Runs on pushes targeting the default branch
push:
- branches: ["master"]
+ branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
diff --git a/README.md b/README.md
index e3aac81..19d1e8b 100644
--- a/README.md
+++ b/README.md
@@ -2,6 +2,8 @@
.NET Standard 2.0 library to interface with Tuya WiFi smart devices over LAN, without using the cloud.
+Full documentation: https://clusterm.github.io/tuyanet/
+
## Description
This library controls and monitors [Tuya](https://en.tuya.com/) compatible WiFi Smart Devices (Plugs, Switches, Lights, Window Covers, etc.) using the local area network (LAN). [Tuya](https://en.tuya.com/) devices are designed to communicate with the Tuya Cloud but most also expose a local area network API, allowing us to directly control the devices without using the cloud.
diff --git a/TuyaNet.csproj b/TuyaNet.csproj
index 1e3fc84..efe8631 100644
--- a/TuyaNet.csproj
+++ b/TuyaNet.csproj
@@ -18,6 +18,7 @@
<AssemblyVersion>1.0.2.0</AssemblyVersion>
<FileVersion>1.0.2.0</FileVersion>
<Version>1.0.3</Version>
+ <DocumentationFile>TuyaNet.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>