Skip to content

Commit d1dd69a

Browse files
committed
alpha 11
1 parent 7801cbc commit d1dd69a

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Directory.build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22
<PropertyGroup>
33
<Deterministic>true</Deterministic>
4-
<Version>0.3.0-alpha.10</Version>
4+
<Version>0.3.0-alpha.11</Version>
55
<TargetFramework>net8.0</TargetFramework>
66
<ImplicitUsings>disable</ImplicitUsings>
77
<Nullable>enable</Nullable>

nuget-upload.ps1

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
$nuget_api_key = cat "NUGET_API_KEY"
2+
if (-not $?) { Exit }
23

34
$version=Read-Host("version to upload?")
45

@@ -9,11 +10,11 @@ if ($(Read-Host("correct? (y/n)")) -ne "y") {
910

1011
dotnet clean
1112
if (-not $?) { Exit }
12-
dotnet build
13+
dotnet pack
1314
if (-not $?) { Exit }
1415
dotnet test
1516
if (-not $?) { Exit }
1617

1718
dotnet nuget push $("src/SimulationFramework/bin/Release/SimulationFramework." + $version + ".nupkg") --api-key $nuget_api_key --source https://api.nuget.org/v3/index.json
1819
dotnet nuget push $("src/SimulationFramework.OpenGL/bin/Release/SimulationFramework.OpenGL." + $version + ".nupkg") --api-key $nuget_api_key --source https://api.nuget.org/v3/index.json
19-
dotnet nuget push $("src/SimulationFramework.Desktop/bin/Release/SimulationFramework.Desktop" + $version + ".nupkg") --api-key $nuget_api_key --source https://api.nuget.org/v3/index.json
20+
dotnet nuget push $("src/SimulationFramework.Desktop/bin/Release/SimulationFramework.Desktop." + $version + ".nupkg") --api-key $nuget_api_key --source https://api.nuget.org/v3/index.json

0 commit comments

Comments
 (0)