albacore 2.2.1 → 2.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/albacore/cli.rb +124 -28
- data/lib/albacore/package_repo.rb +7 -5
- data/lib/albacore/project.rb +53 -19
- data/lib/albacore/version.rb +1 -1
- data/spec/fpm_app_spec_spec.rb +8 -2
- data/spec/testdata/PaketProject/.gitignore +2 -0
- data/spec/testdata/PaketProject/.semver +6 -0
- data/spec/testdata/PaketProject/Gemfile +3 -0
- data/spec/testdata/PaketProject/Rakefile +81 -0
- data/spec/testdata/PaketProject/paket.dependencies +4 -0
- data/spec/testdata/PaketProject/paket.lock +8 -0
- data/spec/testdata/PaketProject/src/Hylla.sln +26 -0
- data/spec/testdata/PaketProject/src/Hylla/AssemblyInfo.fs +18 -0
- data/spec/testdata/PaketProject/src/Hylla/Component1.fs +5 -0
- data/spec/testdata/PaketProject/src/Hylla/Hylla.fsproj +47 -0
- data/spec/testdata/PaketProject/src/Hylla/Script.fsx +6 -0
- data/spec/testdata/PaketProject/src/Hylla/paket.dependencies +1 -0
- data/spec/testdata/PaketProject/tools/paket.bootstrapper.exe +0 -0
- metadata +28 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d73600782ef3dd490a61bb2a68d0c040615dc19c
|
4
|
+
data.tar.gz: 553105fda613048253f6c698e34e829e4adfeaf0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 75026ce21819f93b5b4765f39fb0e75d2ad26efa67f92ba8dc246a513e7f58131ca05ab14badb10c2dcf06ad6b66dede7737fc14becfb2819d741a187efb7be0
|
7
|
+
data.tar.gz: dc1fdde71466d41c75b7095d28700360a0f33358801c58b20d0d905bb8b2bee9bd9867cca153d57b492efae39e34224652888574da099c6ae245714e77f8e98b
|
data/lib/albacore/cli.rb
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
require 'albacore/version'
|
2
2
|
require 'albacore/cross_platform_cmd'
|
3
3
|
require 'albacore/cli_dsl'
|
4
|
+
require 'open-uri'
|
4
5
|
|
5
6
|
module Albacore
|
6
7
|
class Cli
|
@@ -40,73 +41,168 @@ PLEASE READ https://github.com/Albacore/albacore/wiki/Albacore-binary
|
|
40
41
|
|
41
42
|
# Create a new Rakefile file if the file does not exist.
|
42
43
|
command :initialize, :init do
|
43
|
-
files = [Albacore.rakefile, Albacore.
|
44
|
+
files = [Albacore.rakefile, Albacore.semver_file]
|
44
45
|
if files.any? { |file| File.exist? file }
|
45
46
|
puts "One of #{files.inspect} already exists"
|
46
47
|
else
|
47
|
-
|
48
|
+
write_semver! unless ENV['TEST']
|
49
|
+
write_gemfile
|
50
|
+
bundle!
|
51
|
+
write_gitignore
|
52
|
+
write_rakefile!
|
53
|
+
download_paket unless ENV['TEST']
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
# Output instructions for using the semvar command.
|
58
|
+
command :help do
|
59
|
+
puts help_text
|
60
|
+
end
|
61
|
+
|
62
|
+
private
|
63
|
+
def write_semver!
|
64
|
+
Albacore::CrossPlatformCmd.system 'semver init'
|
65
|
+
end
|
66
|
+
|
67
|
+
def write_gemfile
|
68
|
+
unless File.exists? Albacore.gemfile
|
48
69
|
File.open Albacore.gemfile, 'w+' do |io|
|
49
70
|
io.puts <<-DATA
|
50
71
|
source 'https://rubygems.org'
|
51
72
|
gem 'albacore', '~> #{Albacore::VERSION}'
|
52
73
|
DATA
|
53
74
|
end
|
54
|
-
|
55
|
-
|
56
|
-
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
def bundle!
|
79
|
+
Albacore::CrossPlatformCmd.system 'bundle'
|
80
|
+
end
|
81
|
+
|
82
|
+
def write_gitignore
|
83
|
+
unless File.exists? '.gitignore'
|
84
|
+
File.open '.gitignore', 'w+' do |io|
|
85
|
+
io.puts %{
|
86
|
+
paket.exe
|
87
|
+
bin/
|
88
|
+
obj/
|
89
|
+
.DS_Store
|
90
|
+
*.db
|
91
|
+
*.suo
|
92
|
+
*.userprefs
|
93
|
+
AssemblyVersionInfo.cs
|
94
|
+
AssemblyVersionInfo.fs
|
95
|
+
AssemblyVersionInfo.vb
|
96
|
+
}
|
97
|
+
end
|
98
|
+
end
|
99
|
+
end
|
100
|
+
|
101
|
+
def write_rakefile!
|
102
|
+
# guesses:
|
103
|
+
sln = Dir.glob('**/*.sln').first || 'MyProj.sln'
|
104
|
+
|
105
|
+
File.open Albacore.rakefile, 'w+' do |io|
|
106
|
+
io.puts <<-DATA
|
57
107
|
require 'bundler/setup'
|
58
108
|
|
59
109
|
require 'albacore'
|
110
|
+
# require 'albacore/tasks/releases'
|
60
111
|
require 'albacore/tasks/versionizer'
|
61
112
|
require 'albacore/ext/teamcity'
|
62
113
|
|
114
|
+
Configuration = 'Release'
|
115
|
+
|
63
116
|
Albacore::Tasks::Versionizer.new :versioning
|
64
117
|
|
118
|
+
desc 'create assembly infos'
|
119
|
+
asmver_files :assembly_info do |a|
|
120
|
+
a.files = FileList['**/*proj'] # optional, will find all projects recursively by default
|
121
|
+
|
122
|
+
a.attributes assembly_description: 'TODO',
|
123
|
+
assembly_configuration: Configuration,
|
124
|
+
assembly_company: 'Foretag AB',
|
125
|
+
assembly_copyright: "(c) #{Time.now.year} by John Doe",
|
126
|
+
assembly_version: ENV['LONG_VERSION'],
|
127
|
+
assembly_file_version: ENV['LONG_VERSION'],
|
128
|
+
assembly_informational_version: ENV['BUILD_VERSION']
|
129
|
+
end
|
130
|
+
|
65
131
|
desc 'Perform fast build (warn: doesn\\'t d/l deps)'
|
66
|
-
build :
|
132
|
+
build :quick_compile do |b|
|
67
133
|
b.logging = 'detailed'
|
68
|
-
b.sln = '
|
134
|
+
b.sln = '#{sln}'
|
135
|
+
end
|
136
|
+
|
137
|
+
task :paket_bootstrap do
|
138
|
+
system 'tools/paket.bootstrapper.exe', clr_command: true unless \
|
139
|
+
File.exists? 'tools/paket.exe'
|
69
140
|
end
|
70
141
|
|
71
142
|
desc 'restore all nugets as per the packages.config files'
|
72
|
-
|
73
|
-
|
74
|
-
p.exe = 'tools/NuGet.exe'
|
143
|
+
task :restore => :paket_bootstrap do
|
144
|
+
system 'tools/paket.exe', 'restore', clr_command: true
|
75
145
|
end
|
76
146
|
|
77
147
|
desc 'Perform full build'
|
78
|
-
build :
|
79
|
-
b.sln
|
80
|
-
# alt: b.file = 'src/MyProj.sln'
|
148
|
+
build :compile => [:versioning, :restore, :assembly_info] do |b|
|
149
|
+
b.sln = '#{sln}'
|
81
150
|
end
|
82
151
|
|
83
152
|
directory 'build/pkg'
|
84
153
|
|
85
154
|
desc 'package nugets - finds all projects and package them'
|
86
|
-
nugets_pack :create_nugets => ['build/pkg', :versioning, :
|
155
|
+
nugets_pack :create_nugets => ['build/pkg', :versioning, :compile] do |p|
|
87
156
|
p.files = FileList['src/**/*.{csproj,fsproj,nuspec}'].
|
88
157
|
exclude(/Tests/)
|
89
158
|
p.out = 'build/pkg'
|
90
|
-
p.exe = 'tools/NuGet.exe'
|
159
|
+
p.exe = 'packages/NuGet.CommandLine/tools/NuGet.exe'
|
91
160
|
p.with_metadata do |m|
|
92
|
-
m.
|
93
|
-
m.
|
94
|
-
m.
|
95
|
-
|
96
|
-
|
97
|
-
|
161
|
+
# m.id = 'MyProj'
|
162
|
+
m.title = 'TODO'
|
163
|
+
m.description = 'TODO'
|
164
|
+
m.authors = 'John Doe, Foretag AB'
|
165
|
+
m.project_url = 'http://example.com'
|
166
|
+
m.tags = ''
|
167
|
+
m.version = ENV['NUGET_VERSION']
|
98
168
|
end
|
99
169
|
end
|
100
170
|
|
101
|
-
|
102
|
-
|
103
|
-
|
171
|
+
namespace :tests do
|
172
|
+
#task :unit do
|
173
|
+
# system "src/MyProj.Tests/bin/\#{Configuration}"/MyProj.Tests.exe"
|
174
|
+
#end
|
175
|
+
end
|
176
|
+
|
177
|
+
# task :tests => :'tests:unit'
|
178
|
+
|
179
|
+
task :default => :create_nugets #, :tests ]
|
180
|
+
|
181
|
+
#task :ensure_nuget_key do
|
182
|
+
# raise 'missing env NUGET_KEY value' unless ENV['NUGET_KEY']
|
183
|
+
#end
|
184
|
+
|
185
|
+
#Albacore::Tasks::Release.new :release,
|
186
|
+
# pkg_dir: 'build/pkg',
|
187
|
+
# depend_on: [:create_nugets, :ensure_nuget_key],
|
188
|
+
# nuget_exe: 'packages/NuGet.CommandLine/tools/NuGet.exe',
|
189
|
+
# api_key: ENV['NUGET_KEY']
|
190
|
+
DATA
|
104
191
|
end
|
105
|
-
end
|
106
192
|
|
107
|
-
|
108
|
-
|
109
|
-
|
193
|
+
def download_paket
|
194
|
+
download_tool 'https://github.com/fsprojects/Paket/releases/download/0.16.2/paket.bootstrapper.exe', 'paket.bootstrapper.exe' unless File.exists? './tools/paket.bootstrapper.exe'
|
195
|
+
end
|
196
|
+
|
197
|
+
def download_tool uri, file_name
|
198
|
+
target = "./tools/#{file_name}"
|
199
|
+
|
200
|
+
File.open(target, "wb") do |saved_file|
|
201
|
+
open(uri, "rb") do |read_file|
|
202
|
+
saved_file.write(read_file.read)
|
203
|
+
end
|
204
|
+
end
|
205
|
+
end
|
110
206
|
end
|
111
207
|
end
|
112
208
|
end
|
@@ -9,15 +9,17 @@ module Albacore
|
|
9
9
|
|
10
10
|
# initialize that package repository with a path to all the packages
|
11
11
|
def initialize path
|
12
|
-
@
|
12
|
+
@paths = (path.respond_to?(:map) ? path : [ path ]) || []
|
13
13
|
end
|
14
14
|
|
15
15
|
# find the latest package based on the package id
|
16
16
|
def find_latest pkg_id
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
17
|
+
@paths.map do |path|
|
18
|
+
trace "finding latest from #{path}, id: #{pkg_id}"
|
19
|
+
sorted = Dir.glob(File.join(path, "#{pkg_id}*/**/*.dll")) # find the latest
|
20
|
+
path = sorted.first
|
21
|
+
Package.new pkg_id, path
|
22
|
+
end.compact.first
|
21
23
|
end
|
22
24
|
end
|
23
25
|
end
|
data/lib/albacore/project.rb
CHANGED
@@ -88,35 +88,31 @@ module Albacore
|
|
88
88
|
def output_dll conf
|
89
89
|
Paths.join(output_path(conf) || fallback_output_path, "#{asmname}.dll")
|
90
90
|
end
|
91
|
-
|
91
|
+
|
92
92
|
# find the NodeList reference list
|
93
93
|
def find_refs
|
94
94
|
# should always be there
|
95
95
|
@proj_xml_node.css("Project Reference")
|
96
96
|
end
|
97
|
-
|
97
|
+
|
98
98
|
def faulty_refs
|
99
99
|
find_refs.to_a.keep_if{ |r| r.children.css("HintPath").empty? }
|
100
100
|
end
|
101
|
-
|
101
|
+
|
102
102
|
def has_faulty_refs?
|
103
103
|
faulty_refs.any?
|
104
104
|
end
|
105
|
-
|
105
|
+
|
106
106
|
def has_packages_config?
|
107
107
|
File.exists? package_config
|
108
108
|
end
|
109
109
|
|
110
|
+
def has_paket_deps?
|
111
|
+
File.exists? paket_deps
|
112
|
+
end
|
113
|
+
|
110
114
|
def declared_packages
|
111
|
-
return []
|
112
|
-
doc = Nokogiri.XML(open(package_config))
|
113
|
-
doc.xpath("//packages/package").collect { |p|
|
114
|
-
OpenStruct.new(:id => p[:id],
|
115
|
-
:version => p[:version],
|
116
|
-
:target_framework => p[:targetFramework],
|
117
|
-
:semver => Albacore::SemVer.parse(p[:version], '%M.%m.%p', false)
|
118
|
-
)
|
119
|
-
}
|
115
|
+
return nuget_packages || paket_packages || []
|
120
116
|
end
|
121
117
|
|
122
118
|
def declared_projects
|
@@ -143,36 +139,74 @@ module Albacore
|
|
143
139
|
}.flatten
|
144
140
|
end
|
145
141
|
|
142
|
+
# Find all packages that have been declared and can be found in ./src/packages.
|
143
|
+
# This is mostly useful if you have that repository structure.
|
146
144
|
# returns enumerable Package
|
147
145
|
def find_packages
|
148
146
|
declared_packages.collect do |package|
|
149
|
-
guess = ::Albacore::PackageRepo.new(
|
147
|
+
guess = ::Albacore::PackageRepo.new(%w|./packages ./src/packages|).find_latest package.id
|
150
148
|
debug "#{name}: guess: #{guess} [albacore: project]"
|
151
149
|
guess
|
152
150
|
end
|
153
151
|
end
|
154
|
-
|
152
|
+
|
155
153
|
# get the path of the project file
|
156
154
|
def path
|
157
155
|
File.join @proj_path_base, @proj_filename
|
158
156
|
end
|
159
|
-
|
157
|
+
|
160
158
|
# save the xml
|
161
159
|
def save(output = nil)
|
162
160
|
output = path unless output
|
163
161
|
File.open(output, 'w') { |f| @proj_xml_node.write_xml_to f }
|
164
162
|
end
|
165
|
-
|
166
|
-
# get the path of 'packages.config'
|
163
|
+
|
164
|
+
# get the full path of 'packages.config'
|
167
165
|
def package_config
|
168
166
|
File.join @proj_path_base, 'packages.config'
|
169
167
|
end
|
170
|
-
|
168
|
+
|
169
|
+
# Get the full path of 'paket.references'
|
170
|
+
def paket_deps
|
171
|
+
File.join @proj_path_base, 'paket.dependencies'
|
172
|
+
end
|
173
|
+
|
174
|
+
# Gets the path of the project file
|
171
175
|
def to_s
|
172
176
|
path
|
173
177
|
end
|
174
178
|
|
175
179
|
private
|
180
|
+
def nuget_packages
|
181
|
+
return nil unless has_packages_config?
|
182
|
+
doc = Nokogiri.XML(open(package_config))
|
183
|
+
doc.xpath("//packages/package").collect { |p|
|
184
|
+
OpenStruct.new(:id => p[:id],
|
185
|
+
:version => p[:version],
|
186
|
+
:target_framework => p[:targetFramework],
|
187
|
+
:semver => Albacore::SemVer.parse(p[:version], '%M.%m.%p', false)
|
188
|
+
)
|
189
|
+
}
|
190
|
+
|
191
|
+
end
|
192
|
+
|
193
|
+
def paket_packages
|
194
|
+
return nil unless has_paket_deps?
|
195
|
+
info { "extracting paket dependencies from '#{to_s}' and paket.dependencies in its folder" }
|
196
|
+
File.open 'paket.lock', 'r' do |io|
|
197
|
+
io.readlines.map(&:chomp).map do |line|
|
198
|
+
if (m = line.match /^\s+(?<id>[\w\.]+) \((?<ver>[\.\d\w]+)\)$/i)
|
199
|
+
debug { "found package #{m[:id]}" }
|
200
|
+
ver = Albacore::SemVer.parse(m[:ver], '%M.%m.%p', false)
|
201
|
+
OpenStruct.new(:id => m[:id],
|
202
|
+
:version => m[:ver],
|
203
|
+
:target_framework => 'net40',
|
204
|
+
:semver => ver)
|
205
|
+
end
|
206
|
+
end.compact
|
207
|
+
end
|
208
|
+
end
|
209
|
+
|
176
210
|
def sanity_checks
|
177
211
|
warn { "project '#{@proj_filename}' has no name" } unless name
|
178
212
|
end
|
data/lib/albacore/version.rb
CHANGED
data/spec/fpm_app_spec_spec.rb
CHANGED
@@ -89,8 +89,14 @@ describe ::Albacore::FpmAppSpec, 'when generating command from valid AppSpec' do
|
|
89
89
|
expect(flags['--license']).to eq 'MIT'
|
90
90
|
end
|
91
91
|
|
92
|
-
|
93
|
-
|
92
|
+
if ::Rake::Win32.windows?
|
93
|
+
it 'should generate command "look in this directory" flag' do
|
94
|
+
expect(flags['-C']).should match /^.:\/a\/b$/
|
95
|
+
end
|
96
|
+
else
|
97
|
+
it 'should generate command "look in this directory" flag' do
|
98
|
+
expect(flags['-C']).to eq '/a/b'
|
99
|
+
end
|
94
100
|
end
|
95
101
|
|
96
102
|
it 'should generate command depends' do
|
@@ -0,0 +1,81 @@
|
|
1
|
+
require 'bundler/setup'
|
2
|
+
|
3
|
+
require 'albacore'
|
4
|
+
# require 'albacore/tasks/releases'
|
5
|
+
require 'albacore/tasks/versionizer'
|
6
|
+
require 'albacore/ext/teamcity'
|
7
|
+
|
8
|
+
Configuration = 'Release'
|
9
|
+
|
10
|
+
Albacore::Tasks::Versionizer.new :versioning
|
11
|
+
|
12
|
+
desc 'create assembly infos'
|
13
|
+
asmver_files :assembly_info do |a|
|
14
|
+
a.files = FileList['**/*proj'] # optional, will find all projects recursively by default
|
15
|
+
|
16
|
+
a.attributes assembly_description: 'TODO',
|
17
|
+
assembly_configuration: Configuration,
|
18
|
+
assembly_company: 'Foretag AB',
|
19
|
+
assembly_copyright: "(c) 2014 by John Doe",
|
20
|
+
assembly_version: ENV['LONG_VERSION'],
|
21
|
+
assembly_file_version: ENV['LONG_VERSION'],
|
22
|
+
assembly_informational_version: ENV['BUILD_VERSION']
|
23
|
+
end
|
24
|
+
|
25
|
+
desc 'Perform fast build (warn: doesn\'t d/l deps)'
|
26
|
+
build :quick_compile do |b|
|
27
|
+
b.logging = 'detailed'
|
28
|
+
b.sln = 'src/Hylla.sln'
|
29
|
+
end
|
30
|
+
|
31
|
+
task :paket_bootstrap do
|
32
|
+
system 'tools/paket.bootstrapper.exe', clr_command: true unless File.exists? 'tools/paket.exe'
|
33
|
+
end
|
34
|
+
|
35
|
+
desc 'restore all nugets as per the packages.config files'
|
36
|
+
task :restore => :paket_bootstrap do
|
37
|
+
system 'tools/paket.exe', 'restore', clr_command: true
|
38
|
+
end
|
39
|
+
|
40
|
+
desc 'Perform full build'
|
41
|
+
build :compile => [:versioning, :restore, :assembly_info] do |b|
|
42
|
+
b.sln = 'src/Hylla.sln'
|
43
|
+
end
|
44
|
+
|
45
|
+
directory 'build/pkg'
|
46
|
+
|
47
|
+
desc 'package nugets - finds all projects and package them'
|
48
|
+
nugets_pack :create_nugets => ['build/pkg', :versioning, :compile] do |p|
|
49
|
+
p.files = FileList['src/**/*.{csproj,fsproj,nuspec}'].
|
50
|
+
exclude(/Tests/)
|
51
|
+
p.out = 'build/pkg'
|
52
|
+
p.exe = 'packages/NuGet.CommandLine/tools/NuGet.exe'
|
53
|
+
p.with_metadata do |m|
|
54
|
+
m.title = 'TODO'
|
55
|
+
m.description = 'TODO'
|
56
|
+
m.authors = 'John Doe, Foretag AB'
|
57
|
+
m.project_url = 'http://example.com'
|
58
|
+
m.tags = ''
|
59
|
+
m.version = ENV['NUGET_VERSION']
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
namespace :tests do
|
64
|
+
#task :unit do
|
65
|
+
# system "src/MyProj.Tests/bin/#{Configuration}"/MyProj.Tests.exe"
|
66
|
+
#end
|
67
|
+
end
|
68
|
+
|
69
|
+
# task :tests => :'tests:unit'
|
70
|
+
|
71
|
+
task :default => :create_nugets #, :tests ]
|
72
|
+
|
73
|
+
#task :ensure_nuget_key do
|
74
|
+
# raise 'missing env NUGET_KEY value' unless ENV['NUGET_KEY']
|
75
|
+
#end
|
76
|
+
|
77
|
+
#Albacore::Tasks::Release.new :release,
|
78
|
+
# pkg_dir: 'build/pkg',
|
79
|
+
# depend_on: [:create_nugets, :ensure_nuget_key],
|
80
|
+
# nuget_exe: 'packages/NuGet.CommandLine/tools/NuGet.exe',
|
81
|
+
# api_key: ENV['NUGET_KEY']
|
@@ -0,0 +1,26 @@
|
|
1
|
+
|
2
|
+
Microsoft Visual Studio Solution File, Format Version 12.00
|
3
|
+
# Visual Studio 2012
|
4
|
+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".paket", ".paket", "{C39E13AD-D7CD-4E02-B879-2C631DA2F89A}"
|
5
|
+
ProjectSection(SolutionItems) = preProject
|
6
|
+
..\paket.dependencies = ..\paket.dependencies
|
7
|
+
..\paket.lock = ..\paket.lock
|
8
|
+
EndProjectSection
|
9
|
+
EndProject
|
10
|
+
Project("{f2a71f9b-5d33-465a-a702-920d77279786}") = "Hylla", "Hylla\Hylla.fsproj", "{EE039365-7C14-4574-B1A8-D64FB1E83DB2}"
|
11
|
+
EndProject
|
12
|
+
Global
|
13
|
+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
14
|
+
Debug|Any CPU = Debug|Any CPU
|
15
|
+
Release|Any CPU = Release|Any CPU
|
16
|
+
EndGlobalSection
|
17
|
+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
18
|
+
{EE039365-7C14-4574-B1A8-D64FB1E83DB2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
19
|
+
{EE039365-7C14-4574-B1A8-D64FB1E83DB2}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
20
|
+
{EE039365-7C14-4574-B1A8-D64FB1E83DB2}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
21
|
+
{EE039365-7C14-4574-B1A8-D64FB1E83DB2}.Release|Any CPU.Build.0 = Release|Any CPU
|
22
|
+
EndGlobalSection
|
23
|
+
GlobalSection(MonoDevelopProperties) = preSolution
|
24
|
+
StartupItem = Hylla.fsproj
|
25
|
+
EndGlobalSection
|
26
|
+
EndGlobal
|
@@ -0,0 +1,18 @@
|
|
1
|
+
module Hylla.AssemblyInfo
|
2
|
+
|
3
|
+
open System.Reflection
|
4
|
+
open System.Runtime.CompilerServices
|
5
|
+
|
6
|
+
[<AssemblyTitle("Hylla")>]
|
7
|
+
[<AssemblyDescription("")>]
|
8
|
+
[<AssemblyConfiguration("")>]
|
9
|
+
[<AssemblyCompany("")>]
|
10
|
+
[<AssemblyProduct("")>]
|
11
|
+
[<AssemblyCopyright("Henrik Feldt 2014")>]
|
12
|
+
[<AssemblyTrademark("")>]
|
13
|
+
[<AssemblyVersion("1.0.0.0")>]
|
14
|
+
()
|
15
|
+
// The assembly version has the format {Major}.{Minor}.{Build}.{Revision}
|
16
|
+
//[<assembly: AssemblyDelaySign(false)>]
|
17
|
+
//[<assembly: AssemblyKeyFile("")>]
|
18
|
+
|
@@ -0,0 +1,47 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
3
|
+
<PropertyGroup>
|
4
|
+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
5
|
+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
6
|
+
<ProjectGuid>{EE039365-7C14-4574-B1A8-D64FB1E83DB2}</ProjectGuid>
|
7
|
+
<OutputType>Library</OutputType>
|
8
|
+
<RootNamespace>Hylla</RootNamespace>
|
9
|
+
<AssemblyName>Hylla</AssemblyName>
|
10
|
+
</PropertyGroup>
|
11
|
+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
12
|
+
<DebugSymbols>true</DebugSymbols>
|
13
|
+
<DebugType>full</DebugType>
|
14
|
+
<Optimize>false</Optimize>
|
15
|
+
<OutputPath>bin\Debug</OutputPath>
|
16
|
+
<DefineConstants>DEBUG</DefineConstants>
|
17
|
+
<ErrorReport>prompt</ErrorReport>
|
18
|
+
<ConsolePause>false</ConsolePause>
|
19
|
+
<Tailcalls>false</Tailcalls>
|
20
|
+
<PlatformTarget>
|
21
|
+
</PlatformTarget>
|
22
|
+
</PropertyGroup>
|
23
|
+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
24
|
+
<DebugSymbols>false</DebugSymbols>
|
25
|
+
<DebugType>none</DebugType>
|
26
|
+
<Optimize>true</Optimize>
|
27
|
+
<OutputPath>bin\Release</OutputPath>
|
28
|
+
<ErrorReport>prompt</ErrorReport>
|
29
|
+
<PlatformTarget>
|
30
|
+
</PlatformTarget>
|
31
|
+
<ConsolePause>false</ConsolePause>
|
32
|
+
<Tailcalls>true</Tailcalls>
|
33
|
+
</PropertyGroup>
|
34
|
+
<ItemGroup>
|
35
|
+
<Reference Include="mscorlib" />
|
36
|
+
<Reference Include="FSharp.Core" />
|
37
|
+
<Reference Include="System" />
|
38
|
+
<Reference Include="System.Core" />
|
39
|
+
<Reference Include="System.Numerics" />
|
40
|
+
</ItemGroup>
|
41
|
+
<ItemGroup>
|
42
|
+
<Compile Include="AssemblyInfo.fs" />
|
43
|
+
<Compile Include="Component1.fs" />
|
44
|
+
<Compile Include="Script.fsx" />
|
45
|
+
</ItemGroup>
|
46
|
+
<Import Project="$(MSBuildExtensionsPath32)\..\Microsoft SDKs\F#\3.1\Framework\v4.0\Microsoft.FSharp.Targets" />
|
47
|
+
</Project>
|
@@ -0,0 +1 @@
|
|
1
|
+
Intelliplan.JsonNet
|
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: albacore
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Henrik Feldt
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-11-
|
12
|
+
date: 2014-11-26 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|
@@ -339,6 +339,19 @@ files:
|
|
339
339
|
- spec/testdata/EmptyProject/Properties/AssemblyInfo.cs
|
340
340
|
- spec/testdata/Gemfile
|
341
341
|
- spec/testdata/NuGet.exe
|
342
|
+
- spec/testdata/PaketProject/.gitignore
|
343
|
+
- spec/testdata/PaketProject/.semver
|
344
|
+
- spec/testdata/PaketProject/Gemfile
|
345
|
+
- spec/testdata/PaketProject/Rakefile
|
346
|
+
- spec/testdata/PaketProject/paket.dependencies
|
347
|
+
- spec/testdata/PaketProject/paket.lock
|
348
|
+
- spec/testdata/PaketProject/src/Hylla.sln
|
349
|
+
- spec/testdata/PaketProject/src/Hylla/AssemblyInfo.fs
|
350
|
+
- spec/testdata/PaketProject/src/Hylla/Component1.fs
|
351
|
+
- spec/testdata/PaketProject/src/Hylla/Hylla.fsproj
|
352
|
+
- spec/testdata/PaketProject/src/Hylla/Script.fsx
|
353
|
+
- spec/testdata/PaketProject/src/Hylla/paket.dependencies
|
354
|
+
- spec/testdata/PaketProject/tools/paket.bootstrapper.exe
|
342
355
|
- spec/testdata/Project/Library1.fs
|
343
356
|
- spec/testdata/Project/Project.appspec
|
344
357
|
- spec/testdata/Project/Project.fsproj
|
@@ -561,6 +574,19 @@ test_files:
|
|
561
574
|
- spec/testdata/EmptyProject/Properties/AssemblyInfo.cs
|
562
575
|
- spec/testdata/Gemfile
|
563
576
|
- spec/testdata/NuGet.exe
|
577
|
+
- spec/testdata/PaketProject/.gitignore
|
578
|
+
- spec/testdata/PaketProject/.semver
|
579
|
+
- spec/testdata/PaketProject/Gemfile
|
580
|
+
- spec/testdata/PaketProject/Rakefile
|
581
|
+
- spec/testdata/PaketProject/paket.dependencies
|
582
|
+
- spec/testdata/PaketProject/paket.lock
|
583
|
+
- spec/testdata/PaketProject/src/Hylla.sln
|
584
|
+
- spec/testdata/PaketProject/src/Hylla/AssemblyInfo.fs
|
585
|
+
- spec/testdata/PaketProject/src/Hylla/Component1.fs
|
586
|
+
- spec/testdata/PaketProject/src/Hylla/Hylla.fsproj
|
587
|
+
- spec/testdata/PaketProject/src/Hylla/Script.fsx
|
588
|
+
- spec/testdata/PaketProject/src/Hylla/paket.dependencies
|
589
|
+
- spec/testdata/PaketProject/tools/paket.bootstrapper.exe
|
564
590
|
- spec/testdata/Project/Library1.fs
|
565
591
|
- spec/testdata/Project/Project.appspec
|
566
592
|
- spec/testdata/Project/Project.fsproj
|