Skip to content

Commit

Permalink
1.3 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
bradymholt committed Jun 6, 2017
1 parent f74ec3b commit 9adfa4c
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 11 deletions.
4 changes: 3 additions & 1 deletion DbUp.Support.SqlServer.Scripting.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.23107.0
VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DbUp.Support.SqlServer.Scripting", "DbUp.Support.SqlServer.Scripting\DbUp.Support.SqlServer.Scripting.csproj", "{A1EC7074-3C1D-4424-BC80-8BF770758774}"
EndProject
Expand All @@ -11,6 +11,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
ProjectSection(SolutionItems) = preProject
build\tools\dbup-sqlserver-scripting.psm1 = build\tools\dbup-sqlserver-scripting.psm1
build\pack\DbUp.Support.SqlServer.Scripting.nuspec = build\pack\DbUp.Support.SqlServer.Scripting.nuspec
build\Gemfile = build\Gemfile
build\Rakefile = build\Rakefile
README.md = README.md
build\version.txt = build\version.txt
EndProjectSection
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public DefinitionScriptProvider(string defintionFolderPath = "..\\..\\Definition

if (_defintionFolderPath == null)
{
throw new DirectoryNotFoundException($"Path: {defintionFolderPath} not found");
throw new DirectoryNotFoundException("Path: " + defintionFolderPath + " not found");
}

_contentReplaceRegex = new Regex(contentReplaceRegex, RegexOptions.Multiline);
Expand Down
5 changes: 3 additions & 2 deletions build/Gemfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
source 'https://rubygems.org'
source 'http://rubygems.org'
gem 'albacore', '~>1.0'
gem 'nokogiri'
gem 'nokogiri'
gem 'rake', '~>10.0'
16 changes: 10 additions & 6 deletions build/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,22 +1,26 @@
GEM
remote: https://rubygems.org/
remote: http://rubygems.org/
specs:
albacore (1.0.0)
nokogiri (~> 1.5)
rake (~> 10.0)
rubyzip (~> 1.0)
mini_portile2 (2.0.0)
nokogiri (1.6.7.2-x86-mingw32)
mini_portile2 (~> 2.0.0.rc2)
mini_portile2 (2.1.0)
nokogiri (1.7.1-x64-mingw32)
mini_portile2 (~> 2.1.0)
nokogiri (1.7.1-x86-mingw32)
mini_portile2 (~> 2.1.0)
rake (10.5.0)
rubyzip (1.2.0)
rubyzip (1.2.1)

PLATFORMS
x64-mingw32
x86-mingw32

DEPENDENCIES
albacore (~> 1.0)
nokogiri
rake (~> 10.0)

BUNDLED WITH
1.12.5
1.14.6
2 changes: 1 addition & 1 deletion build/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ task :build do |t|
end
end

task :package => [:build] do |t, args|
task :package do |t, args|
desc "copy lib"
sh "xcopy /Y /S /EXCLUDE:exclude.txt ..\\#{project_name}\\bin\\Release\\#{project_name}* .\\pack\\lib\\net35\\"
desc "create the nuget package"
Expand Down
1 change: 1 addition & 0 deletions build/version.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
1.3:New support for building database from scratch using new DefinitionScriptProvider
1.2:Added support for User Defined Types
1.1:Support for DbUp 3.3.4, misc bug fixes
1.0.4:Use dbup-consolescripts 1.0.9 and fix error with spaces in path
Expand Down

0 comments on commit 9adfa4c

Please sign in to comment.