File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 15
15
//
16
16
// You can specify all the values or you can default the Revision and Build Numbers
17
17
// 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" ) ]
Original file line number Diff line number Diff line change 1
1
# http://www.jeremyskinner.co.uk/2011/01/12/automating-nuget-package-creation-with-msbuild-and-powershell/
2
2
3
- msbuild
3
+ $scriptpath = split-path - parent $MyInvocation.MyCommand.Path
4
+
5
+ msbuild $scriptpath / build.proj
4
6
5
7
Function Get-DropBox () {
6
8
$hostFile = Join-Path (Split-Path (Get-ItemProperty HKCU:\Software\Dropbox).InstallPath) " host.db"
@@ -10,12 +12,11 @@ Function Get-DropBox() {
10
12
11
13
$dropbox = Get-DropBox
12
14
$keyfile = " $dropbox \Personal\nuget-key.txt"
13
- $scriptpath = split-path - parent $MyInvocation.MyCommand.Path
14
15
$nugetpath = resolve-path " $scriptpath /../.nuget/nuget.exe"
15
16
$packagespath = resolve-path " $scriptpath /packages"
16
17
17
18
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!"
19
20
}
20
21
else {
21
22
pushd $packagespath
You can’t perform that action at this time.
0 commit comments