File tree Expand file tree Collapse file tree 5 files changed +36
-0
lines changed Expand file tree Collapse file tree 5 files changed +36
-0
lines changed Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" ?>
2
+ <package >
3
+ <metadata >
4
+ <id >angular-file-upload</id >
5
+ <title >Angular file upload</title >
6
+ <version >1.1.9</version >
7
+ <authors >Danial Farid</authors >
8
+ <owners >Danial Farid</owners >
9
+ <!-- licenseUrl>????</licenseUrl -->
10
+ <projectUrl >https://github.com/danialfarid/angular-file-upload</projectUrl >
11
+ <iconUrl >http://angularjs.org/favicon.ico</iconUrl >
12
+ <requireLicenseAcceptance >false</requireLicenseAcceptance >
13
+ <description >Lightweight Angular JS directive to upload files.</description >
14
+ <releaseNotes >Initial release</releaseNotes >
15
+ <copyright >Copyright 2013</copyright >
16
+ <tags >angularjs upload</tags >
17
+ <dependencies >
18
+ </dependencies >
19
+ </metadata >
20
+ </package >
Original file line number Diff line number Diff line change
1
+ $nugetContent = " content"
2
+
3
+ $mvcJs = $nugetContent + " /Scripts"
4
+ $srcJs = $src + " ..\dist\*"
5
+
6
+ if (Test-Path $nugetContent ) { Remove-Item - Recurse - Force $nugetContent }
7
+ mkdir $nugetContent
8
+ mkdir $mvcJs
9
+
10
+ copy-item - Recurse - Force $srcJs $mvcJs
11
+
12
+ .\nuget pack Package.nuspec
Original file line number Diff line number Diff line change
1
+ $pkg = get-item * .nupkg | Sort-Object LastAccessTime - Descending | Select-Object - First 1
2
+
3
+ .\nuget push $pkg.Name
Original file line number Diff line number Diff line change
1
+ .\nuget.exe update - self
You can’t perform that action at this time.
0 commit comments