Skip to content

Commit 9d5b765

Browse files
committed
New nuget. 1.0.41
1 parent 716f632 commit 9d5b765

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

Build/CommonAssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
//
1616
// You can specify all the values or you can default the Revision and Build Numbers
1717
// by using the '*' as shown below:
18-
[assembly: AssemblyVersion("1.0.40.0")]
19-
[assembly: AssemblyFileVersion("1.0.40.0")]
18+
[assembly: AssemblyVersion("1.0.41.0")]
19+
[assembly: AssemblyFileVersion("1.0.41.0")]

Build/publish-nuget.ps1

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# http://www.jeremyskinner.co.uk/2011/01/12/automating-nuget-package-creation-with-msbuild-and-powershell/
22

3-
msbuild
3+
$scriptpath = split-path -parent $MyInvocation.MyCommand.Path
4+
5+
msbuild $scriptpath/build.proj
46

57
Function Get-DropBox() {
68
$hostFile = Join-Path (Split-Path (Get-ItemProperty HKCU:\Software\Dropbox).InstallPath) "host.db"
@@ -10,12 +12,11 @@ Function Get-DropBox() {
1012

1113
$dropbox = Get-DropBox
1214
$keyfile = "$dropbox\Personal\nuget-key.txt"
13-
$scriptpath = split-path -parent $MyInvocation.MyCommand.Path
1415
$nugetpath = resolve-path "$scriptpath/../.nuget/nuget.exe"
1516
$packagespath = resolve-path "$scriptpath/packages"
1617

1718
if(-not (test-path $keyfile)) {
18-
throw "Could not find the NuGet access key at $keyfile. If you're not Chris, you shouldn't be running this script!"
19+
throw "Could not find the NuGet access key at $keyfile. If you're not the project owner, you shouldn't be running this script!"
1920
}
2021
else {
2122
pushd $packagespath

0 commit comments

Comments
 (0)