Skip to content

Commit

Permalink
relax dependency on ConfigR to 1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
adamralph committed May 21, 2016
1 parent 849fca7 commit c741671
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rakefile.rb
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
original_file = "#{file}.original"
File.rename file, original_file
original_content = File.read(original_file)
content = original_content.gsub(/\[0.0.0\]/, "[#{nuspec[:version]}]")
content = original_content.gsub(/\[0.0.0/, "[#{nuspec[:version]}")
File.open(file, "w") {|file| file.puts content }
begin
cmd = Exec.new
Expand Down
2 changes: 1 addition & 1 deletion src/ConfigR.Roslyn.CSharp/ConfigR.Roslyn.CSharp.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<tags>configuration C# Roslyn</tags>
<dependencies>
<dependency id="Microsoft.CodeAnalysis.CSharp.Scripting" version="[1.2.1,2)" />
<dependency id="ConfigR" version="[0.0.0]" />
<dependency id="ConfigR" version="[0.0.0,2.0.0)" />
</dependencies>
<frameworkAssemblies>
<frameworkAssembly assemblyName="Microsoft.CSharp" />
Expand Down

0 comments on commit c741671

Please sign in to comment.