dev_tasks 1.0.38 → 1.0.39

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.
Files changed (44) hide show
  1. data/lib/dev_tasks.rb +3 -219
  2. data/lib/tasks.rb +87 -0
  3. data/spec/dev_tasks_spec.rb +12 -38
  4. data/spec/gem-example/rakefile.rb +16 -0
  5. metadata +20 -41
  6. data/lib/add.rb +0 -30
  7. data/lib/artifacts.x.rb +0 -46
  8. data/lib/build.rb +0 -28
  9. data/lib/color.rb +0 -23
  10. data/lib/commands.rb +0 -63
  11. data/lib/commit.rb +0 -25
  12. data/lib/console.rb +0 -81
  13. data/lib/dependencies.rb +0 -85
  14. data/lib/environment.rb +0 -118
  15. data/lib/htmllog.rb +0 -53
  16. data/lib/jsonlog.rb +0 -18
  17. data/lib/logger.rb +0 -37
  18. data/lib/msbuild.rb +0 -41
  19. data/lib/publish.rb +0 -50
  20. data/lib/pull.rb +0 -15
  21. data/lib/push.rb +0 -12
  22. data/lib/settings.rb +0 -26
  23. data/lib/setup.rb +0 -17
  24. data/lib/spec.json +0 -1
  25. data/lib/svnexports.rb +0 -5
  26. data/lib/teardown.rb +0 -4
  27. data/lib/test.rb +0 -55
  28. data/lib/timer.rb +0 -41
  29. data/lib/upgrade.rb +0 -52
  30. data/lib/verify.rb +0 -38
  31. data/lib/yamllog.rb +0 -18
  32. data/spec/dependencies_spec.rb +0 -28
  33. data/spec/environment_spec.rb +0 -8
  34. data/spec/msbuild_spec.rb +0 -9
  35. data/spec/spec_helper.rb +0 -4
  36. data/spec/test_data/cpp_projects/helloLib/rakefile.rb +0 -9
  37. data/spec/test_data/csharp_projects/JsonNet.Test.csproj +0 -75
  38. data/spec/test_data/csharp_projects/JsonNet.csproj +0 -79
  39. data/spec/test_data/csharp_projects/helloDll/helloDll.Net2.0.csproj +0 -54
  40. data/spec/test_data/csharp_projects/helloDll/helloDll.Net3.5.csproj +0 -54
  41. data/spec/test_data/csharp_projects/helloDll/helloDll.Net4.0.csproj +0 -54
  42. data/spec/test_data/csharp_projects/helloDll/helloDll.Net4.5.csproj +0 -56
  43. data/spec/test_data/csharp_projects/helloDll/rakefile.rb +0 -1
  44. data/spec/test_data/ruby_projects/helloGem/rakefile.rb +0 -3
data/lib/upgrade.rb DELETED
@@ -1,52 +0,0 @@
1
- #require_relative('./commandarray.rb')
2
- require_relative('./environment.rb')
3
-
4
- class Upgrade < Array#< CommandArray
5
-
6
- def update
7
- if(Environment.scm=='git' && Environment.branch=='develop')
8
- Dir.glob('dep/**/*.dll').each {|f|
9
- src=Environment.dev_root + "/" + f
10
- if(File.exist?(src) && File.mtime(src) > File.mtime(f))
11
- self.add "<%FileUtils.cp('#{src}','#{f}')%>"
12
- end
13
- }
14
- if(defined?(DEV_TASKS))
15
- if(DEV_TASKS[:dependencies].has_key?(:rake))
16
- DEV_TASKS[:dependencies][:rake].each{|rake_dir|
17
-
18
- if(Dir.exists?(rake_dir))
19
- #newest_file_here=Dir.glob("**/*").max_by {|f| File.mtime(f)}
20
- newest_file_rake_dir=nil
21
- Dir.chdir(rake_dir) do
22
- newest_file_rake_dir=rake_dir + '/' + Dir.glob("**/*").max_by {|f| File.mtime(f)}
23
- end
24
-
25
- if(newest_file_rake_dir.nil? || DEV_TASKS[:newest_artifact].nil?)
26
- self.add "<%Environment.rake('#{rake_dir}','default',false)%>"
27
- else
28
- self.add "<%Environment.rake('#{rake_dir}','default',false)%>" if(File.mtime(newest_file_rake_dir) > File.mtime(DEV_TASKS[:newest_artifact]))
29
- end
30
- end
31
- }
32
- end
33
- if(DEV_TASKS[:dependencies].has_key?(:source))
34
- DEV_TASKS[:dependencies][:source].each{|source_dep|
35
-
36
-
37
- dest = "./dep/#{File.basename(source_dep)}"
38
-
39
- if(!File.exists?(dest))
40
- self.add "<%FileUtils.cp('#{source_dep}','#{dest}')%>"
41
- else
42
- if(File.exists?(source_dep))
43
- self.add "<%FileUtils.cp('#{source_dep}','#{dest}')%>" if(File.mtime(source_dep) > File.mtime(dest))
44
- end
45
- end
46
- }
47
- end
48
- end
49
- end
50
- end
51
-
52
- end
data/lib/verify.rb DELETED
@@ -1,38 +0,0 @@
1
- #require_relative('./commandarray.rb')
2
- require_relative('./environment.rb')
3
- require_relative('./console.rb')
4
-
5
- class Verify < Array#< CommandArray
6
-
7
- def update
8
-
9
- if(defined?(DEV_TASKS))
10
- svn_publish_uri=""
11
- if(DEV_TASKS).has_key?(:publish_path)
12
- if(DEV_TASKS[:publish_path].include?('svn://') || DEV_TASKS[:publish_path].include?('file:///'))
13
- latestRev=Environment.svn_latest_revision
14
- svn_publish_uri="#{DEV_TASKS[:publish_path]}/#{DEV_TASKS[:relative_directory]}-#{latestRev}"
15
- svn_info=`svn info #{svn_publish_uri} 2>&1`
16
- if(svn_info.include?('URL:'))
17
- Console.debug "#{svn_publish_uri} already exists."
18
- return
19
- end
20
- end
21
- end
22
-
23
- if(Environment.scm=='svn')
24
- latestRev=Environment.svn_latest_revision
25
- Console.debug "Verify.update, svn_latest_revision=#{latestRev}"
26
- uri=DEV_TASKS[:scm_origin]+"@"+latestRev
27
- dep_dir="#{Environment.dev_root}/dep/#{DEV_TASKS[:relative_directory]}@#{latestRev}"
28
- if(!File.exists?(dep_dir))
29
- add "svn export #{uri} #{dep_dir}@"
30
- add "<%Environment.rake('#{dep_dir}','test',true)%>"
31
- add "<%DEV_TASKS[:commands][:publish].update%>"
32
- else
33
- add "<%puts '#{dep_dir} already exists.'%>"
34
- end
35
- end
36
- end
37
- end
38
- end
data/lib/yamllog.rb DELETED
@@ -1,18 +0,0 @@
1
- require 'yaml'
2
-
3
- class YamlLog
4
- def initialize
5
- end
6
-
7
- def finalize
8
- name='DEV'
9
- ARGV.each do|a|
10
- name="#{name}.#{a}"
11
- end
12
- name="#{name}.yml"
13
- FileUtils.mkdir("#{Environment.dev_root}/log") if !File.exists?("#{Environment.dev_root}/log")
14
- File.open("#{Environment.dev_root}/log/#{name}","w") do |f|
15
- f.write(DEV.to_yaml)
16
- end
17
- end
18
- end
@@ -1,28 +0,0 @@
1
- require_relative '../lib/dependencies.rb'
2
-
3
- describe Dependencies do
4
-
5
- it "should be able to extract C# system dependencies" do
6
- system_deps = Dependencies.csharp_system_dependencies File.read(
7
- "#{File.dirname(__FILE__)}/test_data/csharp_projects/JsonNet.Test.csproj",
8
- :encoding=>'UTF-8')
9
- expect(system_deps.length).to eq(7)
10
- expect(system_deps.include?('System')).to eq(true)
11
- expect(system_deps.include?('System.Xml')).to eq(true)
12
- expect(system_deps.include?('Microsoft.CSharp')).to eq(true)
13
- end
14
-
15
- it "should be able to extract C# file dependencies" do
16
- system_deps = Dependencies.csharp_file_dependencies File.read(
17
- "#{File.dirname(__FILE__)}/test_data/csharp_projects/JsonNet.Test.csproj",
18
- :encoding=>'UTF-8')
19
- expect(system_deps.length).to eq(2)
20
- expect(system_deps.include?('dep\github\lou-parslow\NetLibs\develop\NUnit\2.6.3\bin\framework\nunit.framework.dll')).to eq(true)
21
- end
22
-
23
- it "should be able to extract ruby dependencies" do
24
- system_deps = Dependencies.ruby_dependencies File.read("#{File.dirname(__FILE__)}/test_data/ruby_projects/helloGem/rakefile.rb")
25
- expect(system_deps.length).to eq(2)
26
- expect(system_deps.include?('json')).to eq(true)
27
- end
28
- end
@@ -1,8 +0,0 @@
1
- require_relative '../lib/environment.rb'
2
-
3
- describe Environment do
4
-
5
- it "should have a valid dev_root" do
6
- expect(Environment.dev_root.length).to be > 0
7
- end
8
- end
data/spec/msbuild_spec.rb DELETED
@@ -1,9 +0,0 @@
1
- require_relative '../lib/msbuild.rb'
2
-
3
- describe MSBuild do
4
-
5
- it "should have be able extract 'Any CPU' platform from sln file" do
6
- platforms=MSBuild.get_platforms("#{File.dirname(__FILE__)}/test_data/csharp_projects/helloDll/helloDll.sln")
7
- expect(platforms.include?('Any CPU')).to eq(true)
8
- end
9
- end
data/spec/spec_helper.rb DELETED
@@ -1,4 +0,0 @@
1
- require 'bundler/setup'
2
- Bundler.setup
3
-
4
- require 'dev_tasks'
@@ -1,9 +0,0 @@
1
- require_relative '../../../../lib/dev_tasks.rb'
2
-
3
- DEV[:debug]=true
4
- DEV[:commands][:setup] << "svnadmin --help"
5
- DEV[:commands][:setup] << "svnadmin create repo" if(!File.exists?('repo'))
6
- DEV[:publish_path]="file:///#{DEV[:working_directory]}/repo"
7
- CLEAN.include("**.*.{suo,cache,ncb,user,opensdf}","obj")
8
- CLOBBER.include("bin","repo","#{Environment.dev_root}/tmp/LEP-open")
9
-
@@ -1,75 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
- <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4
- <PropertyGroup>
5
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7
- <ProjectGuid>{3D286CD8-6D09-426C-8059-1A50043885AB}</ProjectGuid>
8
- <OutputType>Library</OutputType>
9
- <AppDesignerFolder>Properties</AppDesignerFolder>
10
- <RootNamespace>JsonNet</RootNamespace>
11
- <AssemblyName>JsonNet.Test</AssemblyName>
12
- <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
13
- <FileAlignment>512</FileAlignment>
14
- <TargetFrameworkProfile />
15
- </PropertyGroup>
16
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17
- <DebugSymbols>true</DebugSymbols>
18
- <DebugType>full</DebugType>
19
- <Optimize>false</Optimize>
20
- <OutputPath>bin\Debug\</OutputPath>
21
- <DefineConstants>DEBUG;TRACE</DefineConstants>
22
- <ErrorReport>prompt</ErrorReport>
23
- <WarningLevel>4</WarningLevel>
24
- </PropertyGroup>
25
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26
- <DebugType>pdbonly</DebugType>
27
- <Optimize>true</Optimize>
28
- <OutputPath>bin\Net4.0\</OutputPath>
29
- <IntermediateOutputPath>obj\Net4.0\</IntermediateOutputPath>
30
- <DefineConstants>TRACE</DefineConstants>
31
- <ErrorReport>prompt</ErrorReport>
32
- <WarningLevel>4</WarningLevel>
33
- </PropertyGroup>
34
- <ItemGroup>
35
- <Reference Include="nunit.framework, Version=2.6.3.13283, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
36
- <SpecificVersion>False</SpecificVersion>
37
- <HintPath>dep\github\lou-parslow\NetLibs\develop\NUnit\2.6.3\bin\framework\nunit.framework.dll</HintPath>
38
- </Reference>
39
- <Reference Include="QcNet, Version=1.0.0.0, Culture=neutral, PublicKeyToken=d4f6c7a98d7682da, processorArchitecture=MSIL">
40
- <SpecificVersion>False</SpecificVersion>
41
- <HintPath>dep\github\lou-parslow\QcNet\develop\bin\Net4.0\QcNet.dll</HintPath>
42
- </Reference>
43
- <Reference Include="System" />
44
- <Reference Include="System.Core" />
45
- <Reference Include="System.Xml.Linq" />
46
- <Reference Include="System.Data.DataSetExtensions" />
47
- <Reference Include="Microsoft.CSharp" />
48
- <Reference Include="System.Data" />
49
- <Reference Include="System.Xml" />
50
- </ItemGroup>
51
- <ItemGroup>
52
- <Compile Include="Factory_Test.cs" />
53
- <Compile Include="JsonNet.Test.cs" />
54
- <Compile Include="Properties\AssemblyInfo.cs" />
55
- <Compile Include="ValueQC.cs" />
56
- <Compile Include="Value_Test.cs" />
57
- </ItemGroup>
58
- <ItemGroup>
59
- <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
60
- </ItemGroup>
61
- <ItemGroup>
62
- <ProjectReference Include="JsonNet.csproj">
63
- <Project>{ad4a8825-e043-4dc1-b945-756111e426a4}</Project>
64
- <Name>JsonNet</Name>
65
- </ProjectReference>
66
- </ItemGroup>
67
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
68
- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
69
- Other similar extension points exist, see Microsoft.Common.targets.
70
- <Target Name="BeforeBuild">
71
- </Target>
72
- <Target Name="AfterBuild">
73
- </Target>
74
- -->
75
- </Project>
@@ -1,79 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
- <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4
- <PropertyGroup>
5
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7
- <ProjectGuid>{AD4A8825-E043-4DC1-B945-756111E426A4}</ProjectGuid>
8
- <OutputType>Library</OutputType>
9
- <AppDesignerFolder>Properties</AppDesignerFolder>
10
- <RootNamespace>JsonNet</RootNamespace>
11
- <AssemblyName>JsonNet</AssemblyName>
12
- <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
13
- <FileAlignment>512</FileAlignment>
14
- <TargetFrameworkProfile />
15
- </PropertyGroup>
16
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17
- <DebugSymbols>true</DebugSymbols>
18
- <DebugType>full</DebugType>
19
- <Optimize>false</Optimize>
20
- <OutputPath>bin\Debug\</OutputPath>
21
- <DefineConstants>DEBUG;TRACE</DefineConstants>
22
- <ErrorReport>prompt</ErrorReport>
23
- <WarningLevel>4</WarningLevel>
24
- </PropertyGroup>
25
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26
- <DebugType>pdbonly</DebugType>
27
- <Optimize>true</Optimize>
28
- <OutputPath>bin\Net4.0\</OutputPath>
29
- <IntermediateOutputPath>obj\Net4.0\</IntermediateOutputPath>
30
- <DefineConstants>TRACE</DefineConstants>
31
- <ErrorReport>prompt</ErrorReport>
32
- <WarningLevel>4</WarningLevel>
33
- </PropertyGroup>
34
- <PropertyGroup>
35
- <SignAssembly>true</SignAssembly>
36
- </PropertyGroup>
37
- <PropertyGroup>
38
- <AssemblyOriginatorKeyFile>JsonNet.snk</AssemblyOriginatorKeyFile>
39
- </PropertyGroup>
40
- <ItemGroup>
41
- <Reference Include="System" />
42
- <Reference Include="System.Core" />
43
- <Reference Include="System.Xml.Linq" />
44
- <Reference Include="System.Data.DataSetExtensions" />
45
- <Reference Include="Microsoft.CSharp" />
46
- <Reference Include="System.Data" />
47
- <Reference Include="System.Xml" />
48
- </ItemGroup>
49
- <ItemGroup>
50
- <Compile Include="Factory.cs" />
51
- <Compile Include="Internal\Array.cs" />
52
- <Compile Include="Internal\Base.cs" />
53
- <Compile Include="Internal\Dynamic.cs" />
54
- <Compile Include="Internal\Hash.cs" />
55
- <Compile Include="Internal\IO.cs" />
56
- <Compile Include="Internal\Primitive.cs" />
57
- <Compile Include="Internal\Reader.cs" />
58
- <Compile Include="Internal\ValueCompare.cs" />
59
- <Compile Include="Internal\ValueEnumerator.cs" />
60
- <Compile Include="Internal\ValueHashCode.cs" />
61
- <Compile Include="Internal\ValuePropertyDescriptor.cs" />
62
- <Compile Include="Internal\Writer.cs" />
63
- <Compile Include="JsonNet.cs" />
64
- <Compile Include="Properties\AssemblyInfo.cs" />
65
- <Compile Include="Value.cs" />
66
- <Compile Include="ValueType.cs" />
67
- </ItemGroup>
68
- <ItemGroup>
69
- <None Include="JsonNet.snk" />
70
- </ItemGroup>
71
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
72
- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
73
- Other similar extension points exist, see Microsoft.Common.targets.
74
- <Target Name="BeforeBuild">
75
- </Target>
76
- <Target Name="AfterBuild">
77
- </Target>
78
- -->
79
- </Project>
@@ -1,54 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
- <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4
- <PropertyGroup>
5
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7
- <ProjectGuid>{88CB4D41-A34A-4FB6-B63E-B87B678F2EA4}</ProjectGuid>
8
- <OutputType>Library</OutputType>
9
- <AppDesignerFolder>Properties</AppDesignerFolder>
10
- <RootNamespace>helloDll</RootNamespace>
11
- <AssemblyName>helloDll</AssemblyName>
12
- <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
13
- <FileAlignment>512</FileAlignment>
14
- <TargetFrameworkProfile />
15
- </PropertyGroup>
16
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17
- <DebugSymbols>true</DebugSymbols>
18
- <DebugType>full</DebugType>
19
- <Optimize>false</Optimize>
20
- <OutputPath>bin\Net2.0\Debug\</OutputPath>
21
- <DefineConstants>DEBUG;TRACE</DefineConstants>
22
- <ErrorReport>prompt</ErrorReport>
23
- <WarningLevel>4</WarningLevel>
24
- </PropertyGroup>
25
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26
- <DebugType>pdbonly</DebugType>
27
- <Optimize>true</Optimize>
28
- <OutputPath>bin\Net2.0\Release\</OutputPath>
29
- <DefineConstants>TRACE</DefineConstants>
30
- <ErrorReport>prompt</ErrorReport>
31
- <WarningLevel>4</WarningLevel>
32
- </PropertyGroup>
33
- <ItemGroup>
34
- <Reference Include="System" />
35
- <Reference Include="System.Core" />
36
- <Reference Include="System.Xml.Linq" />
37
- <Reference Include="System.Data.DataSetExtensions" />
38
- <Reference Include="Microsoft.CSharp" />
39
- <Reference Include="System.Data" />
40
- <Reference Include="System.Xml" />
41
- </ItemGroup>
42
- <ItemGroup>
43
- <Compile Include="helloDll.cs" />
44
- <Compile Include="Properties\AssemblyInfo.cs" />
45
- </ItemGroup>
46
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
47
- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
48
- Other similar extension points exist, see Microsoft.Common.targets.
49
- <Target Name="BeforeBuild">
50
- </Target>
51
- <Target Name="AfterBuild">
52
- </Target>
53
- -->
54
- </Project>
@@ -1,54 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
- <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4
- <PropertyGroup>
5
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7
- <ProjectGuid>{A8EB578F-5F3B-4314-93A5-A6F80D236835}</ProjectGuid>
8
- <OutputType>Library</OutputType>
9
- <AppDesignerFolder>Properties</AppDesignerFolder>
10
- <RootNamespace>helloDll</RootNamespace>
11
- <AssemblyName>helloDll</AssemblyName>
12
- <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
13
- <FileAlignment>512</FileAlignment>
14
- <TargetFrameworkProfile />
15
- </PropertyGroup>
16
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17
- <DebugSymbols>true</DebugSymbols>
18
- <DebugType>full</DebugType>
19
- <Optimize>false</Optimize>
20
- <OutputPath>bin\Net3.5\Debug\</OutputPath>
21
- <DefineConstants>DEBUG;TRACE</DefineConstants>
22
- <ErrorReport>prompt</ErrorReport>
23
- <WarningLevel>4</WarningLevel>
24
- </PropertyGroup>
25
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26
- <DebugType>pdbonly</DebugType>
27
- <Optimize>true</Optimize>
28
- <OutputPath>bin\Net3.5\Release\</OutputPath>
29
- <DefineConstants>TRACE</DefineConstants>
30
- <ErrorReport>prompt</ErrorReport>
31
- <WarningLevel>4</WarningLevel>
32
- </PropertyGroup>
33
- <ItemGroup>
34
- <Reference Include="System" />
35
- <Reference Include="System.Core" />
36
- <Reference Include="System.Xml.Linq" />
37
- <Reference Include="System.Data.DataSetExtensions" />
38
- <Reference Include="Microsoft.CSharp" />
39
- <Reference Include="System.Data" />
40
- <Reference Include="System.Xml" />
41
- </ItemGroup>
42
- <ItemGroup>
43
- <Compile Include="helloDll.cs" />
44
- <Compile Include="Properties\AssemblyInfo.cs" />
45
- </ItemGroup>
46
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
47
- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
48
- Other similar extension points exist, see Microsoft.Common.targets.
49
- <Target Name="BeforeBuild">
50
- </Target>
51
- <Target Name="AfterBuild">
52
- </Target>
53
- -->
54
- </Project>
@@ -1,54 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
- <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4
- <PropertyGroup>
5
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7
- <ProjectGuid>{3721A12A-3E37-4DF9-B2AC-68C928397A2A}</ProjectGuid>
8
- <OutputType>Library</OutputType>
9
- <AppDesignerFolder>Properties</AppDesignerFolder>
10
- <RootNamespace>helloDll</RootNamespace>
11
- <AssemblyName>helloDll</AssemblyName>
12
- <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
13
- <FileAlignment>512</FileAlignment>
14
- <TargetFrameworkProfile />
15
- </PropertyGroup>
16
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17
- <DebugSymbols>true</DebugSymbols>
18
- <DebugType>full</DebugType>
19
- <Optimize>false</Optimize>
20
- <OutputPath>bin\Net4.0\Debug\</OutputPath>
21
- <DefineConstants>DEBUG;TRACE</DefineConstants>
22
- <ErrorReport>prompt</ErrorReport>
23
- <WarningLevel>4</WarningLevel>
24
- </PropertyGroup>
25
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26
- <DebugType>pdbonly</DebugType>
27
- <Optimize>true</Optimize>
28
- <OutputPath>bin\Net4.0\Release\</OutputPath>
29
- <DefineConstants>TRACE</DefineConstants>
30
- <ErrorReport>prompt</ErrorReport>
31
- <WarningLevel>4</WarningLevel>
32
- </PropertyGroup>
33
- <ItemGroup>
34
- <Reference Include="System" />
35
- <Reference Include="System.Core" />
36
- <Reference Include="System.Xml.Linq" />
37
- <Reference Include="System.Data.DataSetExtensions" />
38
- <Reference Include="Microsoft.CSharp" />
39
- <Reference Include="System.Data" />
40
- <Reference Include="System.Xml" />
41
- </ItemGroup>
42
- <ItemGroup>
43
- <Compile Include="helloDll.cs" />
44
- <Compile Include="Properties\AssemblyInfo.cs" />
45
- </ItemGroup>
46
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
47
- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
48
- Other similar extension points exist, see Microsoft.Common.targets.
49
- <Target Name="BeforeBuild">
50
- </Target>
51
- <Target Name="AfterBuild">
52
- </Target>
53
- -->
54
- </Project>
@@ -1,56 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
- <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4
- <PropertyGroup>
5
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7
- <ProjectGuid>{2D0F3AF6-BC32-4E7A-950C-24DA25A31883}</ProjectGuid>
8
- <OutputType>Library</OutputType>
9
- <AppDesignerFolder>Properties</AppDesignerFolder>
10
- <RootNamespace>helloDll</RootNamespace>
11
- <AssemblyName>helloDll</AssemblyName>
12
- <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13
- <FileAlignment>512</FileAlignment>
14
- <TargetFrameworkProfile />
15
- </PropertyGroup>
16
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17
- <DebugSymbols>true</DebugSymbols>
18
- <DebugType>full</DebugType>
19
- <Optimize>false</Optimize>
20
- <OutputPath>bin\Net4.5\Debug\</OutputPath>
21
- <DefineConstants>DEBUG;TRACE</DefineConstants>
22
- <ErrorReport>prompt</ErrorReport>
23
- <WarningLevel>4</WarningLevel>
24
- <Prefer32Bit>false</Prefer32Bit>
25
- </PropertyGroup>
26
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27
- <DebugType>pdbonly</DebugType>
28
- <Optimize>true</Optimize>
29
- <OutputPath>bin\Net4.5\Release\</OutputPath>
30
- <DefineConstants>TRACE</DefineConstants>
31
- <ErrorReport>prompt</ErrorReport>
32
- <WarningLevel>4</WarningLevel>
33
- <Prefer32Bit>false</Prefer32Bit>
34
- </PropertyGroup>
35
- <ItemGroup>
36
- <Reference Include="System" />
37
- <Reference Include="System.Core" />
38
- <Reference Include="System.Xml.Linq" />
39
- <Reference Include="System.Data.DataSetExtensions" />
40
- <Reference Include="Microsoft.CSharp" />
41
- <Reference Include="System.Data" />
42
- <Reference Include="System.Xml" />
43
- </ItemGroup>
44
- <ItemGroup>
45
- <Compile Include="helloDll.cs" />
46
- <Compile Include="Properties\AssemblyInfo.cs" />
47
- </ItemGroup>
48
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
49
- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
50
- Other similar extension points exist, see Microsoft.Common.targets.
51
- <Target Name="BeforeBuild">
52
- </Target>
53
- <Target Name="AfterBuild">
54
- </Target>
55
- -->
56
- </Project>
@@ -1 +0,0 @@
1
- require_relative '../../../../lib/dev_tasks.rb'
@@ -1,3 +0,0 @@
1
- require_relative '../../../../lib/dev_tasks.rb'
2
- require 'json'
3
- require 'yaml'