Skip to content

Commit

Permalink
Merge pull request #13 from JSkimming/fixed-yaml-package
Browse files Browse the repository at this point in the history
Fixed CloudFlare.NET.Yaml nuget package
  • Loading branch information
JSkimming committed Aug 26, 2015
2 parents c29a99a + 5383fc4 commit 4462600
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 7 deletions.
3 changes: 3 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@ after_build:
- nuget pack "%APPVEYOR_BUILD_FOLDER%\src\CloudFlare.NET\CloudFlare.NET.csproj" -version "%GitVersion_NuGetVersion%" -prop "target=%CONFIGURATION%" -Symbols
- appveyor PushArtifact "CloudFlare.NET.%GitVersion_NuGetVersion%.nupkg"
- appveyor PushArtifact "CloudFlare.NET.%GitVersion_NuGetVersion%.symbols.nupkg"
- nuget pack "%APPVEYOR_BUILD_FOLDER%\src\CloudFlare.NET.Yaml\CloudFlare.NET.Yaml.csproj" -version "%GitVersion_NuGetVersion%" -prop "target=%CONFIGURATION%" -Symbols
- appveyor PushArtifact "CloudFlare.NET.Yaml.%GitVersion_NuGetVersion%.nupkg"
- appveyor PushArtifact "CloudFlare.NET.Yaml.%GitVersion_NuGetVersion%.symbols.nupkg"

#---------------------------------#
# tests configuration #
Expand Down
3 changes: 3 additions & 0 deletions pack.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@

@echo "%~dp0src\.nuget\NuGet.exe" pack "%~dp0src\CloudFlare.NET\CloudFlare.NET.csproj" -Properties Configuration=%config% -NonInteractive -Symbols -OutputDirectory "%~dp0src\CloudFlare.NET\bin\%config%"
@"%~dp0src\.nuget\NuGet.exe" pack "%~dp0src\CloudFlare.NET\CloudFlare.NET.csproj" -Properties Configuration=%config% -NonInteractive -Symbols -OutputDirectory "%~dp0src\CloudFlare.NET\bin\%config%"

@echo "%~dp0src\.nuget\NuGet.exe" pack "%~dp0src\CloudFlare.NET.Yaml\CloudFlare.NET.Yaml.csproj" -Properties Configuration=%config% -NonInteractive -Symbols -OutputDirectory "%~dp0src\CloudFlare.NET.Yaml\bin\%config%"
@"%~dp0src\.nuget\NuGet.exe" pack "%~dp0src\CloudFlare.NET.Yaml\CloudFlare.NET.Yaml.csproj" -Properties Configuration=%config% -NonInteractive -Symbols -OutputDirectory "%~dp0src\CloudFlare.NET.Yaml\bin\%config%"
5 changes: 4 additions & 1 deletion src/CloudFlare.NET.Yaml/CloudFlare.NET.Yaml.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package >
<metadata>
<id>$id$</id>
<version>0.0.2</version>
<version>0.0.4</version>
<title>$title$</title>
<authors>James Skimming</authors>
<owners>James Skimming</owners>
Expand All @@ -11,5 +11,8 @@
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>$description$</description>
<tags>CloudFlare YAML API Client</tags>
<dependencies>
<dependency id="CloudFlare.NET" version="0.0.3" />
</dependencies>
</metadata>
</package>
4 changes: 2 additions & 2 deletions src/CloudFlare.NET.Yaml/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.0.2.0")]
[assembly: AssemblyFileVersion("0.0.2.0")]
[assembly: AssemblyVersion("0.0.4.0")]
[assembly: AssemblyFileVersion("0.0.4.0")]
3 changes: 2 additions & 1 deletion src/CloudFlare.NET.Yaml/packages.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="AsyncFixer" version="1.0.0.0" targetFramework="portable45-net45+win8+wp8+wpa81" />
<package id="AsyncFixer" version="1.0.0.0" targetFramework="portable45-net45+win8+wp8+wpa81" developmentDependency="true" />
<package id="Microsoft.AspNet.WebApi.Client" version="5.2.0" targetFramework="portable45-net45+win8+wp8+wpa81" />
<package id="Microsoft.Bcl" version="1.1.9" targetFramework="portable45-net45+win8+wp8+wpa81" />
<package id="Microsoft.Bcl.Build" version="1.0.21" targetFramework="portable45-net45+win8+wp8+wpa81" />
<package id="Microsoft.Net.Http" version="2.2.22" targetFramework="portable45-net45+win8+wp8+wpa81" />
Expand Down
2 changes: 1 addition & 1 deletion src/CloudFlare.NET/CloudFlare.NET.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package >
<metadata>
<id>$id$</id>
<version>0.0.2</version>
<version>0.0.4</version>
<title>$title$</title>
<authors>James Skimming</authors>
<owners>James Skimming</owners>
Expand Down
4 changes: 2 additions & 2 deletions src/CloudFlare.NET/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.0.2.0")]
[assembly: AssemblyFileVersion("0.0.2.0")]
[assembly: AssemblyVersion("0.0.4.0")]
[assembly: AssemblyFileVersion("0.0.4.0")]

0 comments on commit 4462600

Please sign in to comment.