Skip to content

Instantly share code, notes, and snippets.

@alexanderfast
Created February 12, 2013 15:47
Show Gist options
  • Save alexanderfast/4770803 to your computer and use it in GitHub Desktop.
Save alexanderfast/4770803 to your computer and use it in GitHub Desktop.
When running: git clean -f ; git reset --hard ; rake
Microsoft (R) Build Engine Version 4.0.30319.1
[Microsoft .NET Framework, Version 4.0.30319.296]
Copyright (C) Microsoft Corporation 2007. All rights reserved.
Build started 2013-02-12 16:40:45.
Project "C:\dev\commandline\CommandLine.sln" on node 1 (Build target(s)).
ValidateSolutionConfiguration:
Building solution configuration "Release|Any CPU".
Project "C:\dev\commandline\CommandLine.sln" (1) is building "C:\dev\commandline\src\libcmdline\CommandLine.csproj" (2) on node 1 (default targets).
PrepareForBuild:
Creating directory "C:/dev/commandline/build/out\".
Creating directory "obj\Release\".
Creating directory "bin\Release\".
GenerateTargetFrameworkMonikerAttribute:
Skipping target "GenerateTargetFrameworkMonikerAttribute" because all output files are up-to-date with respect to the input files.
CoreCompile:
c:\Windows\Microsoft.NET\Framework\v4.0.30319\Csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /errorreport:prompt /warn:4 /doc:bin\Release\CommandLine.XML /define:TRACE /reference:"C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\mscorlib.dll" /reference:"C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Core.dll" /reference:"C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.dll" /debug:pdbonly /keyfile:CommandLine.snk /optimize+ /out:obj\Release\CommandLine.dll /target:library ..\SharedAssemblyInfo.cs Attributes\BaseOptionAttribute.cs Attributes\OptionAttribute.cs Attributes\OptionArrayAttribute.cs Attributes\HelpOptionAttribute.cs Attributes\OptionListAttribute.cs Attributes\ParserStateAttribute.cs Attributes\ValueListAttribute.cs Attributes\ValueOptionAttribute.cs Core\PropertyWriter.cs IHideObjectMembers.cs IParserSettings.cs ParserConfigurator.cs ParserContext.cs Helpers\Assumes.cs Core\SR.strings.cs Helpers\ReflectionCache.cs Extensions\SwitchExtensions.cs Extensions\StringExtensions.cs Helpers\ReflectionUtil.cs Helpers\Pair.cs Core\ValueMapper.cs Core\LongOptionParser.cs Core\OptionGroupParser.cs Core\OptionInfo.cs Core\OptionMap.cs Core\OneCharStringEnumerator.cs Core\StringArrayEnumerator.cs Core\ArgumentParser.cs Core\IArgumentEnumerator.cs Core\PresentParserState.cs Properties\AssemblyInfo.cs Text\HelpText.cs Text\BaseSentenceBuilder.cs Text\EnglishSentenceBuilder.cs Text\CopyrightInfo.cs Text\HeadingInfo.cs Attributes\MultiLineTextAttribute.cs Attributes\AssemblyLicenseAttribute.cs Attributes\AssemblyUsageAttribute.cs Text\FormatOptionHelpTextEventArgs.cs Attributes\HelpVerbOptionAttribute.cs Attributes\VerbOptionAttribute.cs BadOptionInfo.cs Parser.cs ParserException.cs ParserSettings.cs IParser.cs IParserState.cs ParserState.cs ParsingError.cs Extensions\TargetExtensions.cs "C:\Users\alexander.fast\AppData\Local\Temp\.NETFramework,Version=v4.0.AssemblyAttributes.cs"
Attributes\ValueOptionAttribute.cs(46,20): warning CS1591: Missing XML comment for publicly visible type or member 'CommandLine.ValueOptionAttribute.Index' [C:\dev\commandline\src\libcmdline\CommandLine.csproj]
CopyFilesToOutputDirectory:
Copying file from "obj\Release\CommandLine.dll" to "C:/dev/commandline/build/out\CommandLine.dll".
CommandLine -> C:\dev\commandline\build\out\CommandLine.dll
Copying file from "obj\Release\CommandLine.pdb" to "C:/dev/commandline/build/out\CommandLine.pdb".
Copying file from "bin\Release\CommandLine.XML" to "C:/dev/commandline/build/out\CommandLine.XML".
Done Building Project "C:\dev\commandline\src\libcmdline\CommandLine.csproj" (default targets).
Project "C:\dev\commandline\CommandLine.sln" (1) is building "C:\dev\commandline\src\tests\CommandLine.Tests.csproj" (3) on node 1 (default targets).
PrepareForBuild:
Creating directory "obj\Release\".
GenerateTargetFrameworkMonikerAttribute:
Skipping target "GenerateTargetFrameworkMonikerAttribute" because all output files are up-to-date with respect to the input files.
CoreCompile:
c:\Windows\Microsoft.NET\Framework\v4.0.30319\Csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /errorreport:prompt /warn:4 /define:UNIT_TESTS /reference:C:\dev\commandline\build\out\CommandLine.dll /reference:C:\dev\commandline\packages\FluentAssertions.2.0.0.1\lib\net40\FluentAssertions.dll /reference:"C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\mscorlib.dll" /reference:"C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Core.dll" /reference:"C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.dll" /reference:"C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Xml.dll" /reference:"C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Xml.Linq.dll" /reference:C:\dev\commandline\packages\xunit.1.9.1\lib\net20\xunit.dll /debug- /keyfile:CommandLine.snk /optimize- /out:obj\Release\CommandLine.Tests.dll /target:library ..\SharedAssemblyInfo.cs Attributes\AttributesFixture.cs Attributes\HelpOptionAttributeFixture.cs Attributes\ValueListAttributeFixture.cs Attributes\ValueOptionAttributeFixture.cs Core\ArgumentParserFixture.cs Core\EnumeratorsFixture.cs Core\OptionMapFixture.cs Mocks\CommandLineOptionsBase.cs Mocks\OptionsWithValueOptionExplicitIndex.cs Mocks\OptionsWithValueOptionImplicitIndex.cs Mocks\SimpleOptionsWithValueOptionAndValueList.cs Mocks\SimpleOptionsWithValueOption.cs Mocks\SimpleOptionsForStrict.cs Mocks\OptionsWithVerbsHelp.cs Mocks\OptionsWithVerbs.cs Parser\ParserConfiguratorFixture.cs Parser\ParserFixture.cs Parser\ParserSettingsFixture.cs Parser\MutuallyExclusiveParsingFixture.cs Parser\NullableTypesParsingFixture.cs Parser\OptionArrayAttributeParsingFixture.cs Parser\SingletonFixture.cs Parser\StrictFixture.cs Parser\UnknownArgumentsFixture.cs Parser\ValueListAttributeParsingFixture.cs Parser\ValueOptionAttributeParsingFixture.cs Parser\VerbsFixture.cs Properties\AssemblyInfo.cs BaseFixture.cs ParserBaseFixture.cs DebugStringUtil.cs Mocks\BooleanSetOptions.cs Mocks\ComplexOptions.cs Mocks\MixedCaseOptions.cs Mocks\NullableTypesOptions.cs Mocks\NumberSetOptions.cs Mocks\OptionsBase.cs Mocks\OptionsWithDefaultSet.cs Mocks\OptionsWithMultipleSet.cs Mocks\OptionsWithMultipleSetAndOneOption.cs Mocks\OptionsWithValueListMaximumThree.cs Mocks\OptionsWithValueListMaximumZero.cs Mocks\SimpleOptions.cs Mocks\SimpleOptionsWithArray.cs Mocks\SimpleOptionsWithArrayAndValueList.cs Mocks\SimpleOptionsWithBadOptionArray.cs Mocks\SimpleOptionsWithEnum.cs Mocks\SimpleOptionsWithHelpOption.cs Mocks\SimpleOptionsWithOptionList.cs Mocks\SimpleOptionsWithValueList.cs Mocks\SimpleOptionsWithDefaults.cs Mocks\SimpleOptionsWithBadDefaults.cs Mocks\SimpleOptionsWithDefaultArray.cs Mocks\RPEOptions.cs Mocks\SimpleOptionsForAutoBuid.cs Mocks\OptionsForPlugInScenario.cs Mocks\OptionsWithUIntArray.cs Text\CopyrightInfoFixture.cs Text\HeadingInfoFixture.cs Text\HelpTextFixture.cs Text\MultiLineTextAttributeFixture.cs Text\VerbsHelpTextFixture.cs Helpers\ReflectionUtilFixture.cs "C:\Users\alexander.fast\AppData\Local\Temp\.NETFramework,Version=v4.0.AssemblyAttributes.cs"
_CopyFilesMarkedCopyLocal:
Copying file from "C:\dev\commandline\packages\FluentAssertions.2.0.0.1\lib\net40\FluentAssertions.dll" to "C:/dev/commandline/build/out\FluentAssertions.dll".
Copying file from "C:\dev\commandline\packages\xunit.1.9.1\lib\net20\xunit.dll" to "C:/dev/commandline/build/out\xunit.dll".
Copying file from "C:\dev\commandline\packages\FluentAssertions.2.0.0.1\lib\net40\FluentAssertions.pdb" to "C:/dev/commandline/build/out\FluentAssertions.pdb".
Copying file from "C:\dev\commandline\packages\FluentAssertions.2.0.0.1\lib\net40\FluentAssertions.xml" to "C:/dev/commandline/build/out\FluentAssertions.xml".
Copying file from "C:\dev\commandline\packages\xunit.1.9.1\lib\net20\xunit.xml" to "C:/dev/commandline/build/out\xunit.xml".
CopyFilesToOutputDirectory:
Copying file from "obj\Release\CommandLine.Tests.dll" to "C:/dev/commandline/build/out\CommandLine.Tests.dll".
CommandLine.Tests -> C:\dev\commandline\build\out\CommandLine.Tests.dll
Done Building Project "C:\dev\commandline\src\tests\CommandLine.Tests.csproj" (default targets).
Project "C:\dev\commandline\CommandLine.sln" (1) is building "C:\dev\commandline\src\demo\CommandLine.Demo.csproj" (4) on node 1 (default targets).
PrepareForBuild:
Creating directory "obj\x86\Release\".
GenerateTargetFrameworkMonikerAttribute:
Skipping target "GenerateTargetFrameworkMonikerAttribute" because all output files are up-to-date with respect to the input files.
CoreCompile:
c:\Windows\Microsoft.NET\Framework\v4.0.30319\Csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /platform:x86 /errorreport:prompt /warn:4 /reference:C:\dev\commandline\build\out\CommandLine.dll /reference:"C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\mscorlib.dll" /reference:"C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Core.dll" /reference:"C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.dll" /debug- /optimize+ /out:obj\x86\Release\DemoApp.exe /target:exe ..\SharedAssemblyInfo.cs Program.cs Properties\AssemblyInfo.cs Program.Options.cs "C:\Users\alexander.fast\AppData\Local\Temp\.NETFramework,Version=v4.0.AssemblyAttributes.cs"
CopyFilesToOutputDirectory:
Copying file from "obj\x86\Release\DemoApp.exe" to "C:/dev/commandline/build/out\DemoApp.exe".
CommandLine.Demo -> C:\dev\commandline\build\out\DemoApp.exe
Done Building Project "C:\dev\commandline\src\demo\CommandLine.Demo.csproj" (default targets).
Done Building Project "C:\dev\commandline\CommandLine.sln" (Build target(s)).
Build succeeded.
"C:\dev\commandline\CommandLine.sln" (Build target) (1) ->
"C:\dev\commandline\src\libcmdline\CommandLine.csproj" (default target) (2) ->
(CoreCompile target) ->
Attributes\ValueOptionAttribute.cs(46,20): warning CS1591: Missing XML comment for publicly visible type or member 'CommandLine.ValueOptionAttribute.Index' [C:\dev\commandline\src\libcmdline\CommandLine.csproj]
1 Warning(s)
0 Error(s)
Time Elapsed 00:00:01.90
xUnit.net console test runner (64-bit .NET 4.0.30319.296)
Copyright (C) 2007-11 Microsoft Corporation.
xunit.dll: Version 1.9.1.1600
Test assembly: C:\dev\commandline\build\out\CommandLine.Tests.dll
Tests complete: 1 of 163
Tests complete: 2 of 163
Tests complete: 3 of 163
Tests complete: 4 of 163
Tests complete: 5 of 163
Tests complete: 6 of 163
Tests complete: 7 of 163
Tests complete: 8 of 163
Tests complete: 9 of 163
Tests complete: 10 of 163
Tests complete: 11 of 163
Tests complete: 12 of 163
Tests complete: 13 of 163
Tests complete: 14 of 163
Tests complete: 15 of 163
Tests complete: 16 of 163
Tests complete: 17 of 163
Tests complete: 18 of 163
Tests complete: 19 of 163
Tests complete: 20 of 163
Tests complete: 21 of 163
Tests complete: 22 of 163
Tests complete: 23 of 163
Tests complete: 24 of 163
Tests complete: 25 of 163
Tests complete: 26 of 163
Tests complete: 27 of 163
Tests complete: 28 of 163
Tests complete: 29 of 163
Tests complete: 30 of 163
Tests complete: 31 of 163
Tests complete: 32 of 163
Tests complete: 33 of 163
Tests complete: 34 of 163
Tests complete: 35 of 163
Tests complete: 36 of 163
Tests complete: 37 of 163
Tests complete: 38 of 163
Tests complete: 39 of 163
Tests complete: 40 of 163
Tests complete: 41 of 163
Tests complete: 42 of 163
Tests complete: 43 of 163
Tests complete: 44 of 163
Tests complete: 45 of 163
Tests complete: 46 of 163
Tests complete: 47 of 163
Tests complete: 48 of 163
Tests complete: 49 of 163
Tests complete: 50 of 163
Tests complete: 51 of 163
Tests complete: 52 of 163
Tests complete: 53 of 163
Tests complete: 54 of 163
Tests complete: 55 of 163
Tests complete: 56 of 163
Tests complete: 57 of 163
Tests complete: 58 of 163
Tests complete: 59 of 163
Tests complete: 60 of 163
Tests complete: 61 of 163
Tests complete: 62 of 163
Tests complete: 63 of 163
Tests complete: 64 of 163
Tests complete: 65 of 163
Tests complete: 66 of 163
Tests complete: 67 of 163
Tests complete: 68 of 163
Tests complete: 69 of 163
Tests complete: 70 of 163
Tests complete: 71 of 163
Tests complete: 72 of 163
Tests complete: 73 of 163
Tests complete: 74 of 163
Tests complete: 75 of 163
Tests complete: 76 of 163
Tests complete: 77 of 163
Tests complete: 78 of 163
Tests complete: 79 of 163
Tests complete: 80 of 163
Tests complete: 81 of 163
Tests complete: 82 of 163
Tests complete: 83 of 163
Tests complete: 84 of 163
Tests complete: 85 of 163
Tests complete: 86 of 163
Tests complete: 87 of 163
Tests complete: 88 of 163
Tests complete: 89 of 163
Tests complete: 90 of 163
Tests complete: 91 of 163
Tests complete: 92 of 163
Tests complete: 93 of 163
Tests complete: 94 of 163
Tests complete: 95 of 163
Tests complete: 96 of 163
Tests complete: 97 of 163
Tests complete: 98 of 163
Tests complete: 99 of 163
Tests complete: 100 of 163
Tests complete: 101 of 163
Tests complete: 102 of 163
Tests complete: 103 of 163
Tests complete: 104 of 163(in C:/dev/commandline)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment