Skip to content

Commit 7edd8c7

Browse files
committed
Updated to use nuspec for pack
1 parent 8348803 commit 7edd8c7

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

Build.ps1

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,13 @@ function Invoke-NuGetPackSpec($nuspec, $version)
4343

4444
function Invoke-NuGetPack($version)
4545
{
46-
ls src/**/*.csproj |
47-
Where-Object { -not ($_.Name -like "*net40*") } |
48-
ForEach-Object { Invoke-NuGetPackProj $_ }
46+
# ls src/**/*.csproj |
47+
# Where-Object { -not ($_.Name -like "*net40*") } |
48+
# ForEach-Object { Invoke-NuGetPackProj $_ }
49+
50+
pushd .\src\Serilog.Sinks.Seq
51+
Invoke-NuGetPackSpec "Serilog.Sinks.Seq.nuspec" $version
52+
popd
4953
}
5054

5155
function Invoke-Build($majorMinor, $patch, $customLogger, $notouch)

0 commit comments

Comments
 (0)