├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── VL.NewLibrary.Template.vl ├── deployment └── VL.NewLibrary.Template.nuspec └── help └── help.xml /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvvv/VL.NewLibrary.Template/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvvv/VL.NewLibrary.Template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvvv/VL.NewLibrary.Template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvvv/VL.NewLibrary.Template/HEAD/README.md -------------------------------------------------------------------------------- /VL.NewLibrary.Template.vl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvvv/VL.NewLibrary.Template/HEAD/VL.NewLibrary.Template.vl -------------------------------------------------------------------------------- /deployment/VL.NewLibrary.Template.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvvv/VL.NewLibrary.Template/HEAD/deployment/VL.NewLibrary.Template.nuspec -------------------------------------------------------------------------------- /help/help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvvv/VL.NewLibrary.Template/HEAD/help/help.xml --------------------------------------------------------------------------------