Skip to content

Commit

Permalink
initial nuget
Browse files Browse the repository at this point in the history
  • Loading branch information
joreg committed Nov 29, 2023
1 parent c538d69 commit d31bfdd
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 23 deletions.
18 changes: 7 additions & 11 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,17 @@ jobs:
uses: actions/checkout@master

- name: Setup MSBuild.exe
uses: microsoft/[email protected].0
uses: microsoft/[email protected].2

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

- name: Publish VL Nuget
uses: vvvv/[email protected].29
uses: vvvv/[email protected].42
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 }}
csproj: src\VL.Augmenta.csproj
nuspec: deployment\VL.Augmenta.nuspec
icon-src: https://raw.githubusercontent.com/vvvv/PublicContent/master/nugeticon.png
icon-dst: ./deployment/nugeticon.png
nuget-key: ${{ secrets.VVVV_ORG_NUGET_KEY }}

Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,21 @@

<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 -->
<id>VL.Augmenta</id>
<version>0.0.1-alpha</version>
<title>VL.NewLibrary.Template</title>
<!-- Provide authors, owners and projectUrl -->
<authors></authors>
<owners></owners>
<projectUrl></projectUrl>
<title>VL.Augmenta</title>
<authors>vvvv</authors>
<owners>vvvv</owners>
<projectUrl>https://github.com/vvvv/VL.Augmenta</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<!-- Provide summary and description -->
<summary></summary>
<description></description>
<tags>nuget</tags>
<license type="expression">MIT</license>
<description>Provides support for Augmenta tracking in VL. Try it with vvvv: http://visualprogramming.net/</description>
<tags>VL, tracking</tags>
<license type="expression">LGPL-3.0-only</license>
<dependencies>
<dependency id="VL.IO.OSC" version="1.0.23" />
<dependency id="VL.IO.TUIO" version="1.1.0" />
</dependencies>
<icon>icon\nugeticon.png</icon>
</metadata>
<files>
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/Augmenta.sln → src/VL.Augmenta.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.7.34031.279
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Augmenta", "Augmenta.csproj", "{BEE32E87-4D44-4F15-B01E-46C5E7C13739}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VL.Augmenta", "VL.Augmenta.csproj", "{BEE32E87-4D44-4F15-B01E-46C5E7C13739}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down

0 comments on commit d31bfdd

Please sign in to comment.