├── .gitignore
├── help
└── help.xml
├── LICENSE
├── .github
└── workflows
│ └── main.yml
├── VL.NewLibrary.Template.vl
├── deployment
└── VL.NewLibrary.Template.nuspec
└── README.md
/.gitignore:
--------------------------------------------------------------------------------
1 | obj/
2 | .vs/
3 |
4 | # .v4p backup files
5 | *~.xml
6 |
7 | # Dynamic plugins .dll
8 | bin/
9 |
10 | .vl/
11 | /lib/
--------------------------------------------------------------------------------
/help/help.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 | Copyright © 2021
3 |
4 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5 |
6 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
7 |
8 | THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
--------------------------------------------------------------------------------
/.github/workflows/main.yml:
--------------------------------------------------------------------------------
1 | # For more information see:
2 | # https://thegraybook.vvvv.org/reference/extending/publishing.html
3 |
4 | name: push_nuget
5 |
6 | # on push on main
7 | on:
8 | push:
9 | branches:
10 | - main
11 | paths-ignore:
12 | - README.md
13 |
14 | jobs:
15 | build:
16 | runs-on: windows-latest
17 | steps:
18 | - name: Git Checkout
19 | uses: actions/checkout@master
20 | # with:
21 | # submodules: 'true'
22 | # lfs: 'true'
23 |
24 | - name: Setup MSBuild.exe
25 | uses: microsoft/setup-msbuild@v2
26 |
27 | - name: Setup Nuget.exe
28 | uses: nuget/setup-nuget@v2.0.0
29 |
30 | - name: Publish VL Nuget
31 | uses: vvvv/PublishVLNuget@1.0.43
32 | with:
33 | csproj: src\VL.NewLibrary.Template.csproj
34 | nuspec: deployment\VL.NewLibrary.Template.nuspec
35 |
36 | # Fill the Icon file
37 | icon-src: https://raw.githubusercontent.com/vvvv/PublicContent/master/nugeticon.png
38 | icon-dst: ./deployment/nugeticon.png
39 |
40 | # Provide the nuget key. See: https://thegraybook.vvvv.org/reference/extending/publishing.html#getting-a-nugetorg-api-key
41 | nuget-key: ${{ secrets.NUGET_KEY }}
42 |
--------------------------------------------------------------------------------
/VL.NewLibrary.Template.vl:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/deployment/VL.NewLibrary.Template.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | VL.NewLibrary.Template
10 |
11 | 0.0.1-alpha
12 | VL.NewLibrary.Template
13 |
14 |
15 |
16 |
17 | false
18 |
19 |
20 | VL
21 | LGPL-3.0-only
22 | icon\nugeticon.png
23 | docs\README.md
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # VL.NewLibrary.Template
2 |
3 | - [ ] A clear and concise description of what this package is and does, also what problem it solves.
4 | - [ ] In case this is a wrapper, links to original code and which version of it is used
5 | - [ ] In case this is for a device/protocol, links to the device/protocol-specs
6 | - [ ] Required dependencies/drivers to download and install in the getting started section below
7 | - [ ] If available, links to documentation (other than helppatches), tutorial videos, blog posts, ...
8 | - [ ] Note that you can also [include images](https://devblogs.microsoft.com/nuget/add-a-readme-to-your-nuget-package/#markdown-and-image-support)!
9 | - [ ] Mention any limitations
10 |
11 | For use with vvvv, the visual live-programming environment for .NET: http://vvvv.org
12 |
13 | ## Getting started
14 | - Install as [described here](https://thegraybook.vvvv.org/reference/hde/managing-nugets.html) via commandline:
15 |
16 | `nuget install VL.NewLibrary.Template -pre`
17 |
18 | - Usage examples and more information are included in the pack and can be found via the [Help Browser](https://thegraybook.vvvv.org/reference/hde/findinghelp.html)
19 |
20 | ## Contributing
21 | - Report issues on [the vvvv forum](https://forum.vvvv.org/c/vvvv-gamma/28)
22 | - For custom development requests, please [get in touch](mailto:devvvvs@vvvv.org)
23 | - When making a pull-request, please make sure to read the general [guidelines on contributing to vvvv libraries](https://thegraybook.vvvv.org/reference/extending/contributing.html)
24 |
25 | ## Credits
26 | Links to libraries this is based on
27 |
28 | ## Sponsoring
29 | Development of this library was partially sponsored by:
30 | *
31 |
--------------------------------------------------------------------------------