alpacabuildtool 1.0.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.
Files changed (84) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +48 -0
  3. data/.rubocop.yml +12 -0
  4. data/.semver +6 -0
  5. data/.travis.yml +10 -0
  6. data/CHANGELOG +18 -0
  7. data/Gemfile +7 -0
  8. data/LICENSE +22 -0
  9. data/README.md +235 -0
  10. data/README.rdoc +39 -0
  11. data/Rakefile +74 -0
  12. data/alpacabuildtool.gemspec +34 -0
  13. data/alpacabuildtool.rdoc +5 -0
  14. data/alpacabuildtool.todo +9 -0
  15. data/bin/alpaca +142 -0
  16. data/features/alpaca.feature +8 -0
  17. data/features/step_definitions/alpaca_steps.rb +13 -0
  18. data/features/step_definitions/visual_studio_solutions_steps.rb +47 -0
  19. data/features/support/env.rb +10 -0
  20. data/features/visual_studio_solutions.feature +43 -0
  21. data/lib/alpacabuildtool.rb +4 -0
  22. data/lib/alpacabuildtool/application.rb +195 -0
  23. data/lib/alpacabuildtool/configuration.rb +209 -0
  24. data/lib/alpacabuildtool/data/.alpaca.conf +148 -0
  25. data/lib/alpacabuildtool/data/doom.flf +826 -0
  26. data/lib/alpacabuildtool/data/logo.jpg +0 -0
  27. data/lib/alpacabuildtool/entities/nuspec.rb +107 -0
  28. data/lib/alpacabuildtool/entities/project.rb +54 -0
  29. data/lib/alpacabuildtool/entities/solution.rb +104 -0
  30. data/lib/alpacabuildtool/entities/xml.rb +41 -0
  31. data/lib/alpacabuildtool/entities/xml_node.rb +75 -0
  32. data/lib/alpacabuildtool/log/font.rb +92 -0
  33. data/lib/alpacabuildtool/log/log.rb +15 -0
  34. data/lib/alpacabuildtool/log/rainbowify_formatter.rb +70 -0
  35. data/lib/alpacabuildtool/log/rainbowify_logger.rb +47 -0
  36. data/lib/alpacabuildtool/managers/build_manager.rb +32 -0
  37. data/lib/alpacabuildtool/managers/package_manager.rb +136 -0
  38. data/lib/alpacabuildtool/managers/report_manager.rb +33 -0
  39. data/lib/alpacabuildtool/managers/test_manager.rb +35 -0
  40. data/lib/alpacabuildtool/os.rb +29 -0
  41. data/lib/alpacabuildtool/package_types/project_package.rb +44 -0
  42. data/lib/alpacabuildtool/package_types/tool_package.rb +53 -0
  43. data/lib/alpacabuildtool/tools/git.rb +22 -0
  44. data/lib/alpacabuildtool/tools/msbuild.rb +29 -0
  45. data/lib/alpacabuildtool/tools/nuget.rb +49 -0
  46. data/lib/alpacabuildtool/tools/nunit.rb +28 -0
  47. data/lib/alpacabuildtool/tools/nunit_orange.rb +18 -0
  48. data/lib/alpacabuildtool/tools/open_cover.rb +29 -0
  49. data/lib/alpacabuildtool/tools/report_generator.rb +25 -0
  50. data/lib/alpacabuildtool/tools/tool.rb +84 -0
  51. data/lib/alpacabuildtool/tools/wrapper.rb +66 -0
  52. data/lib/alpacabuildtool/versioning/version.rb +163 -0
  53. data/lib/alpacabuildtool/versioning/versioning.rb +84 -0
  54. data/spec/lib/alpacabuildtool/configuration_spec.rb +201 -0
  55. data/spec/lib/alpacabuildtool/entities/xml_spec.rb +39 -0
  56. data/spec/lib/alpacabuildtool/versioning/version_spec.rb +86 -0
  57. data/spec/lib/alpacabuildtool/versioning/versioning_spec.rb +194 -0
  58. data/spec/spec_helper.rb +3 -0
  59. data/spec/support/coverage.rb +26 -0
  60. data/test_data/sln1/.alpaca.conf +11 -0
  61. data/test_data/sln1/.semver +6 -0
  62. data/test_data/sln1/TestSolution.sln +22 -0
  63. data/test_data/sln1/TestSolution/App.config +6 -0
  64. data/test_data/sln1/TestSolution/Program.cs +16 -0
  65. data/test_data/sln1/TestSolution/Properties/AssemblyInfo.cs +36 -0
  66. data/test_data/sln1/TestSolution/TestSolution.csproj +59 -0
  67. data/test_data/sln2/.alpaca.conf +8 -0
  68. data/test_data/sln2/.semver +6 -0
  69. data/test_data/sln2/ProjectName/ProjectName.csproj +54 -0
  70. data/test_data/sln2/ProjectName/Properties/AssemblyInfo.cs +36 -0
  71. data/test_data/sln2/ProjectName/SomeFolderInProject/SomeClass.cs +16 -0
  72. data/test_data/sln2/ProjectName2/ProjectName2.csproj +58 -0
  73. data/test_data/sln2/ProjectName2/Properties/AssemblyInfo.cs +37 -0
  74. data/test_data/sln2/SolutionName.sln +34 -0
  75. data/test_data/sln2/Unit.Tests/Properties/AssemblyInfo.cs +36 -0
  76. data/test_data/sln2/Unit.Tests/SomeClassTests.cs +21 -0
  77. data/test_data/sln2/Unit.Tests/Unit.Tests.csproj +65 -0
  78. data/test_data/sln2/Unit.Tests/packages.config +4 -0
  79. data/test_data/sln3/TestSolution.nobuild.sln +22 -0
  80. data/test_data/sln3/TestSolution/App.config +6 -0
  81. data/test_data/sln3/TestSolution/Program.cs +16 -0
  82. data/test_data/sln3/TestSolution/Properties/AssemblyInfo.cs +36 -0
  83. data/test_data/sln3/TestSolution/TestSolution.nobuild.csproj +59 -0
  84. metadata +309 -0
@@ -0,0 +1,3 @@
1
+ require 'support/coverage'
2
+
3
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
@@ -0,0 +1,26 @@
1
+ if ENV['TRAVIS'] || ENV['COVERAGE']
2
+ require 'simplecov'
3
+
4
+ if ENV['TRAVIS']
5
+ require 'coveralls'
6
+ SimpleCov.formatter = Coveralls::SimpleCov::Formatter
7
+ end
8
+
9
+ SimpleCov.start do
10
+ add_filter '/spec/'
11
+
12
+ add_group 'entities', 'lib/alpacabuildtool/entities'
13
+ add_group 'log', 'lib/alpacabuildtool/log'
14
+ add_group 'managers', 'lib/alpacabuildtool/managers'
15
+ add_group 'tools', 'lib/alpacabuildtool/tools'
16
+ add_group 'package_types', 'lib/alpacabuildtool/package_types'
17
+ add_group 'versioning', 'lib/alpacabuildtool/versioning'
18
+ add_group 'lib', 'lib/alpacabuildtool'
19
+ end
20
+ end
21
+
22
+ if ENV['DEV']
23
+ Dir.glob('lib/**/*.rb').each do |file|
24
+ require file.gsub('lib/', '').gsub('.rb', '')
25
+ end
26
+ end
@@ -0,0 +1,11 @@
1
+ MSBuild:
2
+ options:
3
+ clean_configuration: true
4
+ target: ["Build"]
5
+ packages:
6
+ - id: "TestData.FirstSolution"
7
+ type: :tool
8
+ project: "TestSolution"
9
+ authors: ['Vasyl', 'Kate']
10
+ source: "c:\\alpaca-tools"
11
+ description: "First solution tool package"
@@ -0,0 +1,6 @@
1
+ ---
2
+ :major: 0
3
+ :minor: 0
4
+ :patch: 1
5
+ :special: 'alpha'
6
+ :metadata: ''
@@ -0,0 +1,22 @@
1
+ 
2
+ Microsoft Visual Studio Solution File, Format Version 12.00
3
+ # Visual Studio 2013
4
+ VisualStudioVersion = 12.0.30723.0
5
+ MinimumVisualStudioVersion = 10.0.40219.1
6
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestSolution", "TestSolution\TestSolution.csproj", "{B9BAB17F-FD42-452B-8DE3-A85254043711}"
7
+ EndProject
8
+ Global
9
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
10
+ Debug|Any CPU = Debug|Any CPU
11
+ Release|Any CPU = Release|Any CPU
12
+ EndGlobalSection
13
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
14
+ {B9BAB17F-FD42-452B-8DE3-A85254043711}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15
+ {B9BAB17F-FD42-452B-8DE3-A85254043711}.Debug|Any CPU.Build.0 = Debug|Any CPU
16
+ {B9BAB17F-FD42-452B-8DE3-A85254043711}.Release|Any CPU.ActiveCfg = Release|Any CPU
17
+ {B9BAB17F-FD42-452B-8DE3-A85254043711}.Release|Any CPU.Build.0 = Release|Any CPU
18
+ EndGlobalSection
19
+ GlobalSection(SolutionProperties) = preSolution
20
+ HideSolutionNode = FALSE
21
+ EndGlobalSection
22
+ EndGlobal
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="utf-8" ?>
2
+ <configuration>
3
+ <startup>
4
+ <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.1" />
5
+ </startup>
6
+ </configuration>
@@ -0,0 +1,16 @@
1
+ using System;
2
+ using System.Collections.Generic;
3
+ using System.Linq;
4
+ using System.Text;
5
+ using System.Threading.Tasks;
6
+
7
+ namespace TestSolution
8
+ {
9
+ class Program
10
+ {
11
+ static void Main(string[] args)
12
+ {
13
+ Console.WriteLine("hello world");
14
+ }
15
+ }
16
+ }
@@ -0,0 +1,36 @@
1
+ using System.Reflection;
2
+ using System.Runtime.CompilerServices;
3
+ using System.Runtime.InteropServices;
4
+
5
+ // General Information about an assembly is controlled through the following
6
+ // set of attributes. Change these attribute values to modify the information
7
+ // associated with an assembly.
8
+ [assembly: AssemblyTitle("TestSolution")]
9
+ [assembly: AssemblyDescription("")]
10
+ [assembly: AssemblyConfiguration("")]
11
+ [assembly: AssemblyCompany("")]
12
+ [assembly: AssemblyProduct("TestSolution")]
13
+ [assembly: AssemblyCopyright("Copyright © 2015")]
14
+ [assembly: AssemblyTrademark("")]
15
+ [assembly: AssemblyCulture("")]
16
+
17
+ // Setting ComVisible to false makes the types in this assembly not visible
18
+ // to COM components. If you need to access a type in this assembly from
19
+ // COM, set the ComVisible attribute to true on that type.
20
+ [assembly: ComVisible(false)]
21
+
22
+ // The following GUID is for the ID of the typelib if this project is exposed to COM
23
+ [assembly: Guid("05d009d1-c89a-43f8-a609-d6066d6a58be")]
24
+
25
+ // Version information for an assembly consists of the following four values:
26
+ //
27
+ // Major Version
28
+ // Minor Version
29
+ // Build Number
30
+ // Revision
31
+ //
32
+ // You can specify all the values or you can default the Build and Revision Numbers
33
+ // by using the '*' as shown below:
34
+ // [assembly: AssemblyVersion("1.0.*")]
35
+ [assembly: AssemblyVersion("1.0.0.0")]
36
+ [assembly: AssemblyFileVersion("1.0.0.0")]
@@ -0,0 +1,59 @@
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>{B9BAB17F-FD42-452B-8DE3-A85254043711}</ProjectGuid>
8
+ <OutputType>Exe</OutputType>
9
+ <AppDesignerFolder>Properties</AppDesignerFolder>
10
+ <RootNamespace>TestSolution</RootNamespace>
11
+ <AssemblyName>TestSolution</AssemblyName>
12
+ <TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
13
+ <FileAlignment>512</FileAlignment>
14
+ <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
15
+ </PropertyGroup>
16
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17
+ <PlatformTarget>AnyCPU</PlatformTarget>
18
+ <DebugSymbols>true</DebugSymbols>
19
+ <DebugType>full</DebugType>
20
+ <Optimize>false</Optimize>
21
+ <OutputPath>bin\Debug\</OutputPath>
22
+ <DefineConstants>DEBUG;TRACE</DefineConstants>
23
+ <ErrorReport>prompt</ErrorReport>
24
+ <WarningLevel>4</WarningLevel>
25
+ </PropertyGroup>
26
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27
+ <PlatformTarget>AnyCPU</PlatformTarget>
28
+ <DebugType>pdbonly</DebugType>
29
+ <Optimize>true</Optimize>
30
+ <OutputPath>bin\Release\</OutputPath>
31
+ <DefineConstants>TRACE</DefineConstants>
32
+ <ErrorReport>prompt</ErrorReport>
33
+ <WarningLevel>4</WarningLevel>
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="Program.cs" />
46
+ <Compile Include="Properties\AssemblyInfo.cs" />
47
+ </ItemGroup>
48
+ <ItemGroup>
49
+ <None Include="App.config" />
50
+ </ItemGroup>
51
+ <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
52
+ <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
53
+ Other similar extension points exist, see Microsoft.Common.targets.
54
+ <Target Name="BeforeBuild">
55
+ </Target>
56
+ <Target Name="AfterBuild">
57
+ </Target>
58
+ -->
59
+ </Project>
@@ -0,0 +1,8 @@
1
+ packages:
2
+ - id: "TestData.SecondSolution"
3
+ type: :project
4
+ project: "ProjectName2"
5
+ authors: ['Vasyl', 'Kate']
6
+ source: "c:\\alpaca-build"
7
+ description: "Second solution project package"
8
+ readme: "here are readme example"
@@ -0,0 +1,6 @@
1
+ ---
2
+ :major: 2
3
+ :minor: 0
4
+ :patch: 11
5
+ :special: ''
6
+ :metadata: ''
@@ -0,0 +1,54 @@
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>{8C47099D-7BD7-4918-8831-6CF81B293148}</ProjectGuid>
8
+ <OutputType>Library</OutputType>
9
+ <AppDesignerFolder>Properties</AppDesignerFolder>
10
+ <RootNamespace>ProjectName</RootNamespace>
11
+ <AssemblyName>ProjectName</AssemblyName>
12
+ <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13
+ <FileAlignment>512</FileAlignment>
14
+ </PropertyGroup>
15
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16
+ <DebugSymbols>true</DebugSymbols>
17
+ <DebugType>full</DebugType>
18
+ <Optimize>false</Optimize>
19
+ <OutputPath>bin\Debug\</OutputPath>
20
+ <DefineConstants>DEBUG;TRACE</DefineConstants>
21
+ <ErrorReport>prompt</ErrorReport>
22
+ <WarningLevel>4</WarningLevel>
23
+ </PropertyGroup>
24
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
25
+ <DebugType>pdbonly</DebugType>
26
+ <Optimize>true</Optimize>
27
+ <OutputPath>bin\Release\</OutputPath>
28
+ <DefineConstants>TRACE</DefineConstants>
29
+ <ErrorReport>prompt</ErrorReport>
30
+ <WarningLevel>4</WarningLevel>
31
+ </PropertyGroup>
32
+ <ItemGroup>
33
+ <Reference Include="System" />
34
+ <Reference Include="System.Core" />
35
+ <Reference Include="System.Xml.Linq" />
36
+ <Reference Include="System.Data.DataSetExtensions" />
37
+ <Reference Include="Microsoft.CSharp" />
38
+ <Reference Include="System.Data" />
39
+ <Reference Include="System.Xml" />
40
+ </ItemGroup>
41
+ <ItemGroup>
42
+ <Compile Include="Properties\AssemblyInfo.cs" />
43
+ <Compile Include="SomeFolderInProject\SomeClass.cs" />
44
+ </ItemGroup>
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>
@@ -0,0 +1,36 @@
1
+ using System.Reflection;
2
+ using System.Runtime.CompilerServices;
3
+ using System.Runtime.InteropServices;
4
+
5
+ // General Information about an assembly is controlled through the following
6
+ // set of attributes. Change these attribute values to modify the information
7
+ // associated with an assembly.
8
+ [assembly: AssemblyTitle("ProjectName")]
9
+ [assembly: AssemblyDescription("")]
10
+ [assembly: AssemblyConfiguration("")]
11
+ [assembly: AssemblyCompany("")]
12
+ [assembly: AssemblyProduct("ProjectName")]
13
+ [assembly: AssemblyCopyright("Copyright © 2015")]
14
+ [assembly: AssemblyTrademark("")]
15
+ [assembly: AssemblyCulture("")]
16
+
17
+ // Setting ComVisible to false makes the types in this assembly not visible
18
+ // to COM components. If you need to access a type in this assembly from
19
+ // COM, set the ComVisible attribute to true on that type.
20
+ [assembly: ComVisible(false)]
21
+
22
+ // The following GUID is for the ID of the typelib if this project is exposed to COM
23
+ [assembly: Guid("7a978d06-4e0d-4884-ba30-75801dcee2d2")]
24
+
25
+ // Version information for an assembly consists of the following four values:
26
+ //
27
+ // Major Version
28
+ // Minor Version
29
+ // Build Number
30
+ // Revision
31
+ //
32
+ // You can specify all the values or you can default the Build and Revision Numbers
33
+ // by using the '*' as shown below:
34
+ // [assembly: AssemblyVersion("1.0.*")]
35
+ [assembly: AssemblyVersion("1.0.0.0")]
36
+ [assembly: AssemblyFileVersion("1.0.0.0")]
@@ -0,0 +1,16 @@
1
+ using System;
2
+ using System.Collections.Generic;
3
+ using System.Linq;
4
+ using System.Text;
5
+ using System.Threading.Tasks;
6
+
7
+ namespace ProjectName.SomeFolderInProject
8
+ {
9
+ public class SomeClass
10
+ {
11
+ public int DoSomeWork(int a, int b)
12
+ {
13
+ return a + b;
14
+ }
15
+ }
16
+ }
@@ -0,0 +1,58 @@
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>{FAFD92CC-C77A-41DE-AA8F-1E3043AA8310}</ProjectGuid>
8
+ <OutputType>Library</OutputType>
9
+ <AppDesignerFolder>Properties</AppDesignerFolder>
10
+ <RootNamespace>ProjectName2</RootNamespace>
11
+ <AssemblyName>ProjectName2</AssemblyName>
12
+ <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13
+ <FileAlignment>512</FileAlignment>
14
+ </PropertyGroup>
15
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16
+ <DebugSymbols>true</DebugSymbols>
17
+ <DebugType>full</DebugType>
18
+ <Optimize>false</Optimize>
19
+ <OutputPath>bin\Debug\</OutputPath>
20
+ <DefineConstants>DEBUG;TRACE</DefineConstants>
21
+ <ErrorReport>prompt</ErrorReport>
22
+ <WarningLevel>4</WarningLevel>
23
+ </PropertyGroup>
24
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
25
+ <DebugType>pdbonly</DebugType>
26
+ <Optimize>true</Optimize>
27
+ <OutputPath>bin\Release\</OutputPath>
28
+ <DefineConstants>TRACE</DefineConstants>
29
+ <ErrorReport>prompt</ErrorReport>
30
+ <WarningLevel>4</WarningLevel>
31
+ </PropertyGroup>
32
+ <ItemGroup>
33
+ <Reference Include="System" />
34
+ <Reference Include="System.Core" />
35
+ <Reference Include="System.Xml.Linq" />
36
+ <Reference Include="System.Data.DataSetExtensions" />
37
+ <Reference Include="Microsoft.CSharp" />
38
+ <Reference Include="System.Data" />
39
+ <Reference Include="System.Xml" />
40
+ </ItemGroup>
41
+ <ItemGroup>
42
+ <Compile Include="Properties\AssemblyInfo.cs" />
43
+ </ItemGroup>
44
+ <ItemGroup>
45
+ <ProjectReference Include="..\ProjectName\ProjectName.csproj">
46
+ <Project>{8c47099d-7bd7-4918-8831-6cf81b293148}</Project>
47
+ <Name>ProjectName</Name>
48
+ </ProjectReference>
49
+ </ItemGroup>
50
+ <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
51
+ <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
52
+ Other similar extension points exist, see Microsoft.Common.targets.
53
+ <Target Name="BeforeBuild">
54
+ </Target>
55
+ <Target Name="AfterBuild">
56
+ </Target>
57
+ -->
58
+ </Project>
@@ -0,0 +1,37 @@
1
+ using System.Reflection;
2
+ using System.Runtime.CompilerServices;
3
+ using System.Runtime.InteropServices;
4
+
5
+ // General Information about an assembly is controlled through the following
6
+ // set of attributes. Change these attribute values to modify the information
7
+ // associated with an assembly.
8
+ [assembly: AssemblyTitle("ProjectName2")]
9
+ [assembly: AssemblyDescription("")]
10
+ [assembly: AssemblyConfiguration("")]
11
+ [assembly: AssemblyCompany("")]
12
+ [assembly: AssemblyProduct("ProjectName2")]
13
+ [assembly: AssemblyCopyright("Copyright © 2015")]
14
+ [assembly: AssemblyTrademark("")]
15
+ [assembly: AssemblyCulture("")]
16
+
17
+ // Setting ComVisible to false makes the types in this assembly not visible
18
+ // to COM components. If you need to access a type in this assembly from
19
+ // COM, set the ComVisible attribute to true on that type.
20
+ [assembly: ComVisible(false)]
21
+
22
+ // The following GUID is for the ID of the typelib if this project is exposed to COM
23
+ [assembly: Guid("5e44a896-713e-45bf-942d-754f7698770b")]
24
+
25
+ // Version information for an assembly consists of the following four values:
26
+ //
27
+ // Major Version
28
+ // Minor Version
29
+ // Build Number
30
+ // Revision
31
+ // updated AssemblyInfo.cs for no reason
32
+ //
33
+ // You can specify all the values or you can default the Build and Revision Numbers
34
+ // by using the '*' as shown below:
35
+ // [assembly: AssemblyVersion("1.0.*")]
36
+ [assembly: AssemblyVersion("1.0.0.0")]
37
+ [assembly: AssemblyFileVersion("1.0.0.0")]
@@ -0,0 +1,34 @@
1
+ 
2
+ Microsoft Visual Studio Solution File, Format Version 12.00
3
+ # Visual Studio 14
4
+ VisualStudioVersion = 14.0.22310.1
5
+ MinimumVisualStudioVersion = 10.0.40219.1
6
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ProjectName", "ProjectName\ProjectName.csproj", "{8C47099D-7BD7-4918-8831-6CF81B293148}"
7
+ EndProject
8
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ProjectName2", "ProjectName2\ProjectName2.csproj", "{FAFD92CC-C77A-41DE-AA8F-1E3043AA8310}"
9
+ EndProject
10
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unit.Tests", "Unit.Tests\Unit.Tests.csproj", "{3566B5C0-38EE-47AA-B09C-07CC1ECBD8BD}"
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
+ {8C47099D-7BD7-4918-8831-6CF81B293148}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
19
+ {8C47099D-7BD7-4918-8831-6CF81B293148}.Debug|Any CPU.Build.0 = Debug|Any CPU
20
+ {8C47099D-7BD7-4918-8831-6CF81B293148}.Release|Any CPU.ActiveCfg = Release|Any CPU
21
+ {8C47099D-7BD7-4918-8831-6CF81B293148}.Release|Any CPU.Build.0 = Release|Any CPU
22
+ {FAFD92CC-C77A-41DE-AA8F-1E3043AA8310}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
23
+ {FAFD92CC-C77A-41DE-AA8F-1E3043AA8310}.Debug|Any CPU.Build.0 = Debug|Any CPU
24
+ {FAFD92CC-C77A-41DE-AA8F-1E3043AA8310}.Release|Any CPU.ActiveCfg = Release|Any CPU
25
+ {FAFD92CC-C77A-41DE-AA8F-1E3043AA8310}.Release|Any CPU.Build.0 = Release|Any CPU
26
+ {3566B5C0-38EE-47AA-B09C-07CC1ECBD8BD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
27
+ {3566B5C0-38EE-47AA-B09C-07CC1ECBD8BD}.Debug|Any CPU.Build.0 = Debug|Any CPU
28
+ {3566B5C0-38EE-47AA-B09C-07CC1ECBD8BD}.Release|Any CPU.ActiveCfg = Release|Any CPU
29
+ {3566B5C0-38EE-47AA-B09C-07CC1ECBD8BD}.Release|Any CPU.Build.0 = Release|Any CPU
30
+ EndGlobalSection
31
+ GlobalSection(SolutionProperties) = preSolution
32
+ HideSolutionNode = FALSE
33
+ EndGlobalSection
34
+ EndGlobal