summaryrefslogtreecommitdiff
path: root/wrappers
diff options
context:
space:
mode:
authorStevenWdV <stevenwdv@gmail.com>2021-11-25 15:22:42 +0100
committerStevenWdV <stevenwdv@gmail.com>2021-11-25 15:22:42 +0100
commitc0ba63117980d0afb4e1882f7c2f3073c932b81f (patch)
tree17ee2c20709708e635344c7c0678132242b7a9ac /wrappers
parentc7fbc7e1237f0cc907070cd85167ac5728b0b518 (diff)
Add Python README.md, improve other READMEs
Diffstat (limited to 'wrappers')
-rw-r--r--wrappers/csharp/README.md5
-rw-r--r--wrappers/python/README.md9
2 files changed, 10 insertions, 4 deletions
diff --git a/wrappers/csharp/README.md b/wrappers/csharp/README.md
index a00922a..4b045ac 100644
--- a/wrappers/csharp/README.md
+++ b/wrappers/csharp/README.md
@@ -1,24 +1,21 @@
First build the shared Go library. Next:
Build `EduVpnCommon`:
-
```shell
make
```
Build as nupkg, including eduvpn_verify library:
-
```shell
make pack
```
Currently, directly referencing the project may not work if you have multiple dynamic libraries compiled in
the `exports` folder. If you instead add the `.nupkg`, e.g. with one of the
-methods [here](https://stackoverflow.com/q/43400069) or [here](https://stackoverflow.com/q/10240029) it automatically
+methods [here](https://stackoverflow.com/q/43400069) or [here](https://stackoverflow.com/q/10240029), it automatically
copies the correct library.
Test:
-
```shell
make test
```
diff --git a/wrappers/python/README.md b/wrappers/python/README.md
new file mode 100644
index 0000000..f10e5ad
--- /dev/null
+++ b/wrappers/python/README.md
@@ -0,0 +1,9 @@
+First build the shared Go library. Next:
+
+No dependencies, just reference `discovery.py` and call `verify`.
+
+Test:
+
+```shell
+make test
+```