Skip to content

Commit

Permalink
Wrapping up
Browse files Browse the repository at this point in the history
  • Loading branch information
vpenades committed Jan 27, 2024
1 parent 1079b54 commit 5a33d54
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/publishAlpha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,5 @@ jobs:
# run: dotnet test -c Release --no-build
- name: Pack nugets
run: dotnet pack -c Release --no-build --output .

# - name: Push to NuGet
# run: dotnet nuget push "*.nupkg" --api-key ${{secrets.SharpGLTF_PublishToNuget}} --source https://api.nuget.org/v3/index.json
- name: Push to NuGet
run: dotnet nuget push "*.nupkg" --api-key ${{secrets.SharpGLTF_PublishToNuget}} --source https://api.nuget.org/v3/index.json
4 changes: 4 additions & 0 deletions SharpGLTF.sln
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
.github\workflows\dotnet.yml = .github\workflows\dotnet.yml
.github\workflows\publishAlpha.yml = .github\workflows\publishAlpha.yml
README.md = README.md
SharpGLTF.ruleset = SharpGLTF.ruleset
EndProjectSection
Expand Down Expand Up @@ -35,6 +36,9 @@ EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Example1", "examples\Example1\Example1.csproj", "{68662AA0-8523-4B9E-9230-DE79F2B07EAB}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "examples", "examples", "{83E7E49D-8A28-45E8-9DBD-1F3AEDEF3E42}"
ProjectSection(SolutionItems) = preProject
examples\Directory.Build.props = examples\Directory.Build.props
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PointCloudGalaxy", "examples\PointCloudGalaxy\PointCloudGalaxy.csproj", "{53B7933A-DD1B-4E75-90EC-94E46101C6CC}"
EndProject
Expand Down
18 changes: 18 additions & 0 deletions examples/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<Project>

<!-- Legal =================================================================================== -->

<PropertyGroup>
<Authors>Vicente Penades</Authors>
<Copyright>Copyright (c) $([System.DateTime]::Now.ToString(`yyyy`)) Vicente Penades</Copyright>
<Description>SharpGLTF is a C# library for reading and writing glTF2 3D models</Description>
</PropertyGroup>

<!-- Configuration =================================================================================== -->

<PropertyGroup>
<IsPackable>false</IsPackable>
</PropertyGroup>

</Project>

0 comments on commit 5a33d54

Please sign in to comment.