We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8348803 commit 7edd8c7Copy full SHA for 7edd8c7
Build.ps1
@@ -43,9 +43,13 @@ function Invoke-NuGetPackSpec($nuspec, $version)
43
44
function Invoke-NuGetPack($version)
45
{
46
- ls src/**/*.csproj |
47
- Where-Object { -not ($_.Name -like "*net40*") } |
48
- ForEach-Object { Invoke-NuGetPackProj $_ }
+ # ls src/**/*.csproj |
+ # Where-Object { -not ($_.Name -like "*net40*") } |
+ # ForEach-Object { Invoke-NuGetPackProj $_ }
49
+
50
+ pushd .\src\Serilog.Sinks.Seq
51
+ Invoke-NuGetPackSpec "Serilog.Sinks.Seq.nuspec" $version
52
+ popd
53
}
54
55
function Invoke-Build($majorMinor, $patch, $customLogger, $notouch)
0 commit comments