Skip to content
This repository was archived by the owner on Jun 1, 2022. It is now read-only.

Commit 62cf87f

Browse files
Merge tag 'v1.0.3-pre'
2 parents 85be882 + 522c6ab commit 62cf87f

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

changelog.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
1.0.3 -pre 2013/08/22
2+
Fixed issues:
3+
+ pack: invalid arguments. -> Escaped command
4+
15
1.0.2 -pre 2013/08/19
26
Changes:
37
+ PublishDisabled renamed to -> NugetPublishDisabled
@@ -10,6 +14,7 @@ New Features:
1014
+ PublishToReleaseFolder with <PublishToLocalNugetFeed>true</PublishToLocalNugetFeed>
1115
+ PublishToLocalNugetFeed with <PublishToLocalNugetFeed>true</PublishToLocalNugetFeed>
1216
+ PublishToOfficialNugetFeed with <PublishToOfficialNugetFeed>true</PublishToOfficialNugetFeed>
17+
1318

1419
1.0.1 -pre 2013/08/19
1520

src/MSBNuget.Nuget/MSBNuget.Legacy/MSBNuget.Legacy.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package >
33
<metadata>
44
<id>MSBuild.MSBNuget.Legacy</id>
5-
<version>1.0.2-pre</version>
5+
<version>1.0.3-pre</version>
66
<title>Nuget convention based MSBuild Packager (Legacy)</title>
77
<authors>Daniel Sack</authors>
88
<owners>Daniel Sack</owners>

src/MSBNuget.Nuget/MSBNuget/MSBNuget.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package >
33
<metadata>
44
<id>MSBuild.MSBNuget</id>
5-
<version>1.0.2-pre</version>
5+
<version>1.0.3-pre</version>
66
<title>Nuget convention based MSBuild Packager</title>
77
<authors>Daniel Sack</authors>
88
<owners>Daniel Sack</owners>

src/MSBNuget/nuget.targets

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,8 @@
139139

140140
<Message Text="nuspec: @(nuspecStaged)" Importance="normal"/>
141141
<Message Text=" %(nuspecStaged.Identity) Count: @(nuspecStaged->Count())" Importance="normal" />
142-
<Message Text="nuget pack %(nuspecStaged.Identity) -OutputDirectory $(NugetIntermediatePath) -NoDefaultExcludes" Importance="normal" />
143-
<Exec Command="nuget pack %(nuspecStaged.Identity) -OutputDirectory $(NugetIntermediatePath) -NoDefaultExcludes" />
142+
<!--<Message Text="nuget pack &quot;%(nuspecStaged.Identity)&quot; -OutputDirectory &quot;$(NugetIntermediatePath)&quot; -NoDefaultExcludes" Importance="normal" />-->
143+
<Exec Command="nuget pack &quot;%(nuspecStaged.Identity)&quot; -OutputDirectory &quot;$(NugetIntermediatePath.TrimEnd('\'))&quot; -NoDefaultExcludes" />
144144
</Target>
145145

146146
<Target Name="NugetPublishToFeeds">
@@ -178,7 +178,7 @@
178178
<nupkg Include="$(NugetIntermediatePath)**\*.nupkg"/>
179179
</ItemGroup>
180180

181-
<Exec Command="nuget push %(nupkg.Identity)" />
181+
<Exec Command="nuget push %(nupkg.Identity)" ContinueOnError="true" />
182182
</Target>
183183

184184
</Project>

0 commit comments

Comments
 (0)