Skip to content

Commit e3ed9ec

Browse files
committed
Fix defunct nuget reference
1 parent a09813b commit e3ed9ec

File tree

4 files changed

+4
-153
lines changed

4 files changed

+4
-153
lines changed

CSharpVitamins.Tabulation.sln

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1111
ProjectSection(SolutionItems) = preProject
1212
.gitattributes = .gitattributes
1313
.gitignore = .gitignore
14+
build\build.ps1 = build\build.ps1
1415
LICENSE.md = LICENSE.md
1516
readme.md = readme.md
1617
EndProjectSection

CSharpVitamins.Tabulation/.nuget/nuget.config

Lines changed: 0 additions & 6 deletions
This file was deleted.

CSharpVitamins.Tabulation/.nuget/nuget.targets

Lines changed: 0 additions & 144 deletions
This file was deleted.

build/build.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ if ($semver) {
1010

1111
Write-Host "> pack '$semver'..."
1212

13-
& .\.nuget\nuget.exe pack -version $semver -prop Configuration=Release -verbosity detailed -symbol -outputdirectory ..\build\
13+
& nuget.exe pack -version $semver -prop Configuration=Release -verbosity detailed -symbol -outputdirectory ..\build\
1414

1515
if ($?) {
1616
$packaged = $true;
@@ -38,7 +38,7 @@ if ($packaged) {
3838

3939
Write-Host "> pushing '$semver' to nuget..."
4040

41-
& .\.nuget\nuget.exe push ..\build\CSharpVitamins.Tabulation.$semver.*.nupkg
41+
& nuget.exe push ..\build\CSharpVitamins.Tabulation.$semver.*.nupkg
4242

4343
if ($?) {
4444
Write-Host "> pushed okay" -ForegroundColor Green
@@ -52,4 +52,4 @@ if ($packaged) {
5252

5353
}
5454

55-
Write-Host "finito!"
55+
Write-Host "finito!"

0 commit comments

Comments
 (0)