Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
ltramma committed Jul 2, 2019
2 parents 0a52a07 + ff57824 commit d2b4da2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
[assembly: AssemblyCulture("")]

// These should be replaced with correct values by the release process
[assembly: AssemblyVersion("0.1.3")]
[assembly: AssemblyFileVersion("0.1.3")]
[assembly: AssemblyInformationalVersion("0.1.3")]
[assembly: AssemblyVersion("0.1.4")]
[assembly: AssemblyFileVersion("0.1.4")]
[assembly: AssemblyInformationalVersion("0.1.4")]
5 changes: 3 additions & 2 deletions rakefile.rb
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,10 @@
desc "Pushes the plugin packages into the specified folder"
task :pack, [:config] do |t, args|
args.with_defaults(:config => :Release)
version = File.open('version') {|f| f.readline}
Dir.chdir('BadMedicine.Core') do
sh "nuget pack BadMedicine.nuspec -Properties Configuration=#{args.config} -IncludeReferencedProjects -Symbols -Version #{$VERSION}#{$SUFFIX}"
sh "nuget push HIC.BadMedicine.#{$VERSION}#{$SUFFIX}.nupkg -Source https://api.nuget.org/v3/index.json -ApiKey #{NUGETKEY}"
sh "nuget pack BadMedicine.nuspec -Properties Configuration=#{args.config} -IncludeReferencedProjects -Symbols -Version #{version}"
sh "nuget push HIC.BadMedicine.#{version}.nupkg -Source https://api.nuget.org/v3/index.json -ApiKey #{NUGETKEY}"
end
end

Expand Down

0 comments on commit d2b4da2

Please sign in to comment.