Skip to content

Commit 5a33d54

Browse files
committed
Wrapping up
1 parent 1079b54 commit 5a33d54

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

.github/workflows/publishAlpha.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,5 @@ jobs:
2121
# run: dotnet test -c Release --no-build
2222
- name: Pack nugets
2323
run: dotnet pack -c Release --no-build --output .
24-
25-
# - name: Push to NuGet
26-
# run: dotnet nuget push "*.nupkg" --api-key ${{secrets.SharpGLTF_PublishToNuget}} --source https://api.nuget.org/v3/index.json
24+
- name: Push to NuGet
25+
run: dotnet nuget push "*.nupkg" --api-key ${{secrets.SharpGLTF_PublishToNuget}} --source https://api.nuget.org/v3/index.json

SharpGLTF.sln

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
77
ProjectSection(SolutionItems) = preProject
88
.editorconfig = .editorconfig
99
.github\workflows\dotnet.yml = .github\workflows\dotnet.yml
10+
.github\workflows\publishAlpha.yml = .github\workflows\publishAlpha.yml
1011
README.md = README.md
1112
SharpGLTF.ruleset = SharpGLTF.ruleset
1213
EndProjectSection
@@ -35,6 +36,9 @@ EndProject
3536
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Example1", "examples\Example1\Example1.csproj", "{68662AA0-8523-4B9E-9230-DE79F2B07EAB}"
3637
EndProject
3738
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "examples", "examples", "{83E7E49D-8A28-45E8-9DBD-1F3AEDEF3E42}"
39+
ProjectSection(SolutionItems) = preProject
40+
examples\Directory.Build.props = examples\Directory.Build.props
41+
EndProjectSection
3842
EndProject
3943
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PointCloudGalaxy", "examples\PointCloudGalaxy\PointCloudGalaxy.csproj", "{53B7933A-DD1B-4E75-90EC-94E46101C6CC}"
4044
EndProject

examples/Directory.Build.props

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project>
3+
4+
<!-- Legal =================================================================================== -->
5+
6+
<PropertyGroup>
7+
<Authors>Vicente Penades</Authors>
8+
<Copyright>Copyright (c) $([System.DateTime]::Now.ToString(`yyyy`)) Vicente Penades</Copyright>
9+
<Description>SharpGLTF is a C# library for reading and writing glTF2 3D models</Description>
10+
</PropertyGroup>
11+
12+
<!-- Configuration =================================================================================== -->
13+
14+
<PropertyGroup>
15+
<IsPackable>false</IsPackable>
16+
</PropertyGroup>
17+
18+
</Project>

0 commit comments

Comments
 (0)