Browse Source

Remove Discord.Net.Providers.UdpClient from pack.ps (#627)

This should fix the appveyor build.
pull/630/head
Bond-009 RogueException 8 years ago
parent
commit
294ffa3729
1 changed files with 1 additions and 3 deletions
  1. +1
    -3
      pack.ps1

+ 1
- 3
pack.ps1 View File

@@ -12,8 +12,6 @@ dotnet pack "src\Discord.Net.Webhook\Discord.Net.Webhook.csproj" -c "Release" -o
if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
dotnet pack "src\Discord.Net.Providers.WS4Net\Discord.Net.Providers.WS4Net.csproj" -c "Release" -o "../../artifacts" --no-build /p:BuildNumber="$Env:BUILD" /p:IsTagBuild="$Env:APPVEYOR_REPO_TAG"
if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
dotnet pack "src\Discord.Net.Providers.UdpClient\Discord.Net.Providers.UdpClient.csproj" -c "Release" -o "../../artifacts" --no-build /p:BuildNumber="$Env:BUILD" /p:IsTagBuild="$Env:APPVEYOR_REPO_TAG"
if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }

if ($Env:APPVEYOR_REPO_TAG -eq "true") {
nuget pack src\Discord.Net\Discord.Net.nuspec -OutputDirectory "artifacts" -properties suffix=""
@@ -21,4 +19,4 @@ if ($Env:APPVEYOR_REPO_TAG -eq "true") {
else {
nuget pack src\Discord.Net\Discord.Net.nuspec -OutputDirectory "artifacts" -properties suffix="-$Env:BUILD"
}
if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }

Loading…
Cancel
Save