Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
joreg committed Sep 5, 2023
0 parents commit afd4cc5
Show file tree
Hide file tree
Showing 7 changed files with 133 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# 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

- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v1.0.0

- name: Setup Nuget.exe
uses: nuget/setup-nuget@v1

- name: Publish VL Nuget
uses: vvvv/PublishVLNuget@1.0.29
with:
csproj: src\VL.NewLibrary.Template.csproj
nuspec: deployment\VL.NewLibrary.Template.nuspec

# Fill the Icon file
icon-src: https://foo.bar/nugeticon.png
icon-dst: ./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 }}

11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
obj/
.vs/

# .v4p backup files
*~.xml

# Dynamic plugins .dll
bin/

.vl/
/lib/
8 changes: 8 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
The MIT License (MIT)
Copyright © 2021 <copyright holders>

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.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# VL.NewLibrary.Template
Lorem Ipsum.

Try it with vvvv, the visual live-programming environment for .NET
Download: http://visualprogramming.net

## Using the library
In order to use this library with VL you have to install the nuget that is available via nuget.org. For information on how to use nugets with VL, see [Managing Nugets](https://thegraybook.vvvv.org/reference/libraries/dependencies.html#manage-nugets) in the VL documentation. As described there you go to the commandline and then type:

nuget install VL.NewLibrary.Template -pre

Demos are available via the Help Browser!
27 changes: 27 additions & 0 deletions VL.NewLibrary.Template.vl
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
<Document xmlns:p="property" Id="EWHWcwf3oBvPnhn254YyBa" LanguageVersion="2022.5.0-0416-73f6eb1214" Version="0.128">
<Patch Id="Rgz0iK0cdl5O6XLZAnSI2k">
<Canvas Id="EtMz6eWyJpjMOVOROl6714" DefaultCategory="VL.NewLibrary.Template" CanvasType="FullCategory" />
<!--
************************ Application ************************
-->
<Node Name="Application" Bounds="100,100" Id="GzS10oTkIGnMGZknNaV2y2">
<p:NodeReference>
<Choice Kind="ContainerDefinition" Name="Process" />
<FullNameCategoryReference ID="Primitive" />
</p:NodeReference>
<Patch Id="PbUNtDBhKLVPbHQvb8Ta2L">
<Canvas Id="QOaMfDZHJrCLJ8x5mM6Dq2" CanvasType="Group" />
<Patch Id="DBYmxfeIOlcLboDdIT5h0Z" Name="Create" />
<Patch Id="DogxJckKCZBOH8kuk619TC" Name="Update" />
<ProcessDefinition Id="Tj3xex7K12gLJd6jX9L1AG">
<Fragment Id="EyvBKHDCCxfLfKfYFfCAen" Patch="DBYmxfeIOlcLboDdIT5h0Z" Enabled="true" />
<Fragment Id="D3Clk786tbBPenDaPo3VHE" Patch="DogxJckKCZBOH8kuk619TC" Enabled="true" />
</ProcessDefinition>
</Patch>
</Node>
</Patch>
<NugetDependency Id="Ko9OqCOVyY7Pz8mbJrOqb0" Location="VL.CoreLib" Version="2021.3.3" />
</Document>
29 changes: 29 additions & 0 deletions deployment/VL.NewLibrary.Template.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?xml version="1.0"?>

<!-- For more info see: -->
<!-- https://thegraybook.vvvv.org/reference/extending/publishing.html -->

<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
<metadata>
<id>VL.NewLibrary.Template</id>
<!-- For more about versions see: https://thegraybook.vvvv.org/reference/extending/publishing.html#version -->
<version>0.0.1-alpha</version>
<title>VL.NewLibrary.Template</title>
<!-- Provide authors, owners and projectUrl -->
<authors></authors>
<owners></owners>
<projectUrl></projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<!-- Provide summary and description -->
<summary></summary>
<description></description>
<tags>nuget</tags>
<license type="expression">MIT</license>
<icon>icon\nugeticon.png</icon>
</metadata>
<files>
<file src="..\*.vl" target="" exclude="" />
<file src="..\help\**" target="help\" exclude="" />
<file src="nugeticon.png" target="icon\" />
</files>
</package>
7 changes: 7 additions & 0 deletions help/help.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<Pack>

<!-- For more info see: -->
<!-- https://thegraybook.vvvv.org/reference/extending/providing-help.html -->

</Pack>

0 comments on commit afd4cc5

Please sign in to comment.