diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..5b0177e --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,40 @@ +# For more information see: +# https://thegraybook.vvvv.org/reference/extending/publishing.html + +name: push_nuget + +# on push on main +on: + push: + branches: + - main + paths-ignore: + - README.md + +jobs: + build: + runs-on: windows-latest + steps: + - name: Git Checkout + uses: actions/checkout@master +# with: +# lfs: 'true' + + - name: Setup MSBuild.exe + uses: microsoft/setup-msbuild@v2 + + - name: Setup Nuget.exe + uses: nuget/setup-nuget@v2.0.0 + + - name: Publish VL Nuget + uses: vvvv/PublishVLNuget@1.0.43 + with: + csproj: src\VL.NewLibrary.Template.csproj + nuspec: deployment\VL.NewLibrary.Template.nuspec + + # Fill the Icon file + icon-src: https://raw.githubusercontent.com/vvvv/PublicContent/master/nugeticon.png + icon-dst: ./deployment/nugeticon.png + + # Provide the nuget key. See: https://thegraybook.vvvv.org/reference/extending/publishing.html#getting-a-nugetorg-api-key + nuget-key: ${{ secrets.NUGET_KEY }} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f3a10c6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,11 @@ +obj/ +.vs/ + +# .v4p backup files +*~.xml + +# Dynamic plugins .dll +bin/ + +.vl/ +/lib/ \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..13033bf --- /dev/null +++ b/LICENSE @@ -0,0 +1,8 @@ +The MIT License (MIT) +Copyright © 2021 + +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: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +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. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..ab7c71c --- /dev/null +++ b/README.md @@ -0,0 +1,23 @@ +# VL.NewLibrary.Template +What this library is used for + +For use with vvvv, the visual live-programming environment for .NET: http://visualprogramming.net + +## Getting started +- Install as [described here](https://thegraybook.vvvv.org/reference/hde/managing-nugets.html) via commandline: + + `nuget install VL.NewLibrary.Template -pre` + +- 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) + +## Contributing +- Report issues on [the vvvv forum](https://discourse.vvvv.org/c/vvvv-gamma/28) +- For custom development requests, please [get in touch](mailto:devvvvs@vvvv.org) +- 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) + +## Credits +Links to libraries this is based on + +## Sponsoring +Development of this library was partially sponsored by: +* diff --git a/VL.NewLibrary.Template.vl b/VL.NewLibrary.Template.vl new file mode 100644 index 0000000..4942936 --- /dev/null +++ b/VL.NewLibrary.Template.vl @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/deployment/VL.NewLibrary.Template.nuspec b/deployment/VL.NewLibrary.Template.nuspec new file mode 100644 index 0000000..f705205 --- /dev/null +++ b/deployment/VL.NewLibrary.Template.nuspec @@ -0,0 +1,32 @@ + + + + + + + + + VL.NewLibrary.Template + + 0.0.1-alpha + VL.NewLibrary.Template + + + + false + + + VL + LGPL-3.0-only + icon\nugeticon.png + docs\README.md + + + + + + + + + + diff --git a/help/help.xml b/help/help.xml new file mode 100644 index 0000000..6d1a827 --- /dev/null +++ b/help/help.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file