summaryrefslogtreecommitdiff
path: root/cpp/bld-winsdk.ps1
diff options
context:
space:
mode:
authorCharles E. Rolke <chug@apache.org>2011-12-09 16:40:56 +0000
committerCharles E. Rolke <chug@apache.org>2011-12-09 16:40:56 +0000
commit354f94a5484942c817db7c8040a844ac234a81ca (patch)
treef0d62bdcba6bb15d927fc99dc04e2b4ecaddad3c /cpp/bld-winsdk.ps1
parent331628ce8fe9b7cbf132c087eb03917a9dd3ec9c (diff)
downloadqpid-python-354f94a5484942c817db7c8040a844ac234a81ca.tar.gz
QPID-3671 WinSDK is incomplete. Adds .NET PDB files and fixes Readme-winsdk.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1212505 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/bld-winsdk.ps1')
-rw-r--r--cpp/bld-winsdk.ps17
1 files changed, 1 insertions, 6 deletions
diff --git a/cpp/bld-winsdk.ps1 b/cpp/bld-winsdk.ps1
index 51c1879974..530a1a180f 100644
--- a/cpp/bld-winsdk.ps1
+++ b/cpp/bld-winsdk.ps1
@@ -306,8 +306,6 @@ function BuildAPlatform
Copy-Item "$src\" -destination "$dst\" -recurse -force
Get-ChildItem * -include *.csv -recurse | remove-item
- # Remove-Item -recurse "$install_dir/dotnet_examples/examples/msvc9"
- # Remove-Item -recurse "$install_dir/dotnet_examples/examples/msvc10"
cmd /c "rd /s /q ""$install_dir/dotnet_examples/examples/msvc9"""
cmd /c "rd /s /q ""$install_dir/dotnet_examples/examples/msvc10"""
@@ -346,12 +344,9 @@ function BuildAPlatform
Copy-Item -force -path "./src/RelWithDebInfo/org.apache.qpid.messaging*.dll" -destination "$install_dir/bin/Release/"
Copy-Item -force -path "./src/RelWithDebInfo/org.apache.qpid.messaging*.pdb" -destination "$install_dir/bin/Release/"
- # TODO: What happened to the .NET binding PDB files?
-
# Create a new zip for the whole kit.
- # Exclude *.pdb so as not include the debug symbols twice
if (Test-Path $zipfile) {Remove-Item $zipfile}
- &'7z' a $zipfile ".\$install_dir\*" -xr!*pdb
+ &'7z' a $zipfile ".\$install_dir\*"
}
################################