Skip to content

Commit

Permalink
moving some nunit bits to nuget others to libs/nunit.runners because …
Browse files Browse the repository at this point in the history
…nuget

package restore doesn't play nice with solution packages
  • Loading branch information
ot-matt-florence committed Jun 1, 2012
1 parent fa2d079 commit 54fbb0d
Show file tree
Hide file tree
Showing 63 changed files with 645 additions and 136 deletions.
14 changes: 11 additions & 3 deletions NSpec/NSpec.csproj
Expand Up @@ -34,9 +34,14 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="nunit.framework, Version=2.5.7.10213, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\libs\nunit.framework.dll</HintPath>
<Reference Include="nunit.framework">
<HintPath>..\packages\NUnit.2.5.7.10213\lib\nunit.framework.dll</HintPath>
</Reference>
<Reference Include="nunit.mocks">
<HintPath>..\packages\NUnit.2.5.7.10213\lib\nunit.mocks.dll</HintPath>
</Reference>
<Reference Include="pnunit.framework">
<HintPath>..\packages\NUnit.2.5.7.10213\lib\pnunit.framework.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down Expand Up @@ -85,6 +90,9 @@
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(SolutionDir)\.nuget\nuget.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Expand Down
4 changes: 4 additions & 0 deletions NSpec/packages.config
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="NUnit" version="2.5.7.10213" />
</packages>
260 changes: 133 additions & 127 deletions NSpecSpecs/NSpecSpecs.csproj
@@ -1,134 +1,140 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{DC55CE3B-BB8C-42BB-A363-D3F1ED825A86}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NSpecSpecs</RootNamespace>
<AssemblyName>NSpecSpecs</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\NSpec\</SolutionDir>
<RestorePackages>true</RestorePackages>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Mono.Cecil">
<HintPath>..\packages\Mono.Cecil.0.9.5.3\lib\net40\Mono.Cecil.dll</HintPath>
</Reference>
<Reference Include="Mono.Cecil.Mdb">
<HintPath>..\packages\Mono.Cecil.0.9.5.3\lib\net40\Mono.Cecil.Mdb.dll</HintPath>
</Reference>
<Reference Include="Mono.Cecil.Pdb">
<HintPath>..\packages\Mono.Cecil.0.9.5.3\lib\net40\Mono.Cecil.Pdb.dll</HintPath>
</Reference>
<Reference Include="Mono.Cecil.Rocks">
<HintPath>..\packages\Mono.Cecil.0.9.5.3\lib\net40\Mono.Cecil.Rocks.dll</HintPath>
</Reference>
<Reference Include="nunit.framework, Version=2.5.7.10213, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\libs\nunit.framework.dll</HintPath>
</Reference>
<Reference Include="Rhino.Mocks">
<HintPath>..\libs\Rhino.Mocks.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="ClassContextBug\NestContextsTests.cs" />
<Compile Include="ClassContextBug\NestedContexts.cs" />
<Compile Include="DebuggerShim.cs" />
<Compile Include="describe_Assertions.cs" />
<Compile Include="describe_cecil.cs" />
<Compile Include="describe_Conventions.cs" />
<Compile Include="describe_output.cs" />
<Compile Include="describe_RunningSpecs\describe_abstract_class_execution_order.cs" />
<Compile Include="describe_RunningSpecs\describe_class_level_before_for_abstract_class.cs" />
<Compile Include="describe_RunningSpecs\describe_context_level_beforeAll.cs" />
<Compile Include="describe_RunningSpecs\describe_fail_fast.cs" />
<Compile Include="describe_RunningSpecs\describe_Method_Invocation_Sequence.cs" />
<Compile Include="describe_RunningSpecs\describe_LiveFormatter_with_context_filter.cs" />
<Compile Include="describe_RunningSpecs\describe_abstract_class_examples.cs" />
<Compile Include="describe_RunningSpecs\describe_example.cs" />
<Compile Include="describe_RunningSpecs\describe_Levels.cs" />
<Compile Include="describe_RunningSpecs\describe_Levels_Inheritance.cs" />
<Compile Include="describe_RunningSpecs\describe_tag_filtering.cs" />
<Compile Include="describe_RunningSpecs\describe_context_level_tagging.cs" />
<Compile Include="describe_RunningSpecs\describe_example_level_tagging.cs" />
<Compile Include="describe_RunningSpecs\Exceptions\describe_expected_exception_in_act.cs" />
<Compile Include="describe_RunningSpecs\describe_class_level_after.cs" />
<Compile Include="describe_RunningSpecs\describe_method_level_examples.cs" />
<Compile Include="describe_RunningSpecs\Exceptions\describe_unexpected_exception_in_act.cs" />
<Compile Include="describe_RunningSpecs\describe_xdescribe.cs" />
<Compile Include="describe_RunningSpecs\describe_class_level_before.cs" />
<Compile Include="describe_RunningSpecs\describe_xcontext.cs" />
<Compile Include="describe_DomainExtensions.cs" />
<Compile Include="describe_RunningSpecs\describe_action_indexer_add_operator.cs" />
<Compile Include="describe_Context.cs" />
<Compile Include="describe_Example.cs" />
<Compile Include="describe_RunningSpecs\Exceptions\describe_expected_exception.cs" />
<Compile Include="describe_RunningSpecs\describe_implicit_befores.cs" />
<Compile Include="describe_RunningSpecs\describe_todo.cs" />
<Compile Include="describe_ContextCollection.cs" />
<Compile Include="describe_DefaultConventions.cs" />
<Compile Include="SpecExtensions.cs" />
<Compile Include="describe_RunningSpecs\Exceptions\when_method_level_before_contains_exception.cs" />
<Compile Include="describe_Tags.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="describe_RunningSpecs\Exceptions\when_act_contains_exception.cs" />
<Compile Include="describe_RunningSpecs\Exceptions\when_after_contains_exception.cs" />
<Compile Include="describe_RunningSpecs\Exceptions\when_before_contains_exception.cs" />
<Compile Include="describe_ContextBuilder.cs" />
<Compile Include="describe_RunningSpecs\describe_method_level_befores.cs" />
<Compile Include="describe_SpecFinder.cs" />
<Compile Include="describe_RunningSpecs\when_running_specs.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NSpec\NSpec.csproj">
<Project>{36862628-1F0C-4EA5-8963-C79BAF958DC1}</Project>
<Name>NSpec</Name>
</ProjectReference>
<ProjectReference Include="..\SampleSpecs\SampleSpecs.csproj">
<Project>{DCE738AF-2C14-4279-96FB-16930BD1F459}</Project>
<Name>SampleSpecs</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(SolutionDir)\.nuget\nuget.targets" />
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{DC55CE3B-BB8C-42BB-A363-D3F1ED825A86}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NSpecSpecs</RootNamespace>
<AssemblyName>NSpecSpecs</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\NSpec\</SolutionDir>
<RestorePackages>true</RestorePackages>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Mono.Cecil">
<HintPath>..\packages\Mono.Cecil.0.9.5.3\lib\net40\Mono.Cecil.dll</HintPath>
</Reference>
<Reference Include="Mono.Cecil.Mdb">
<HintPath>..\packages\Mono.Cecil.0.9.5.3\lib\net40\Mono.Cecil.Mdb.dll</HintPath>
</Reference>
<Reference Include="Mono.Cecil.Pdb">
<HintPath>..\packages\Mono.Cecil.0.9.5.3\lib\net40\Mono.Cecil.Pdb.dll</HintPath>
</Reference>
<Reference Include="Mono.Cecil.Rocks">
<HintPath>..\packages\Mono.Cecil.0.9.5.3\lib\net40\Mono.Cecil.Rocks.dll</HintPath>
</Reference>
<Reference Include="nunit.framework, Version=2.5.7.10213, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\NUnit.2.5.7.10213\lib\nunit.framework.dll</HintPath>
</Reference>
<Reference Include="nunit.mocks">
<HintPath>..\packages\NUnit.2.5.7.10213\lib\nunit.mocks.dll</HintPath>
</Reference>
<Reference Include="pnunit.framework">
<HintPath>..\packages\NUnit.2.5.7.10213\lib\pnunit.framework.dll</HintPath>
</Reference>
<Reference Include="Rhino.Mocks">
<HintPath>..\libs\Rhino.Mocks.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="ClassContextBug\NestContextsTests.cs" />
<Compile Include="ClassContextBug\NestedContexts.cs" />
<Compile Include="DebuggerShim.cs" />
<Compile Include="describe_Assertions.cs" />
<Compile Include="describe_cecil.cs" />
<Compile Include="describe_Conventions.cs" />
<Compile Include="describe_output.cs" />
<Compile Include="describe_RunningSpecs\describe_abstract_class_execution_order.cs" />
<Compile Include="describe_RunningSpecs\describe_class_level_before_for_abstract_class.cs" />
<Compile Include="describe_RunningSpecs\describe_context_level_beforeAll.cs" />
<Compile Include="describe_RunningSpecs\describe_fail_fast.cs" />
<Compile Include="describe_RunningSpecs\describe_Method_Invocation_Sequence.cs" />
<Compile Include="describe_RunningSpecs\describe_LiveFormatter_with_context_filter.cs" />
<Compile Include="describe_RunningSpecs\describe_abstract_class_examples.cs" />
<Compile Include="describe_RunningSpecs\describe_example.cs" />
<Compile Include="describe_RunningSpecs\describe_Levels.cs" />
<Compile Include="describe_RunningSpecs\describe_Levels_Inheritance.cs" />
<Compile Include="describe_RunningSpecs\describe_tag_filtering.cs" />
<Compile Include="describe_RunningSpecs\describe_context_level_tagging.cs" />
<Compile Include="describe_RunningSpecs\describe_example_level_tagging.cs" />
<Compile Include="describe_RunningSpecs\Exceptions\describe_expected_exception_in_act.cs" />
<Compile Include="describe_RunningSpecs\describe_class_level_after.cs" />
<Compile Include="describe_RunningSpecs\describe_method_level_examples.cs" />
<Compile Include="describe_RunningSpecs\Exceptions\describe_unexpected_exception_in_act.cs" />
<Compile Include="describe_RunningSpecs\describe_xdescribe.cs" />
<Compile Include="describe_RunningSpecs\describe_class_level_before.cs" />
<Compile Include="describe_RunningSpecs\describe_xcontext.cs" />
<Compile Include="describe_DomainExtensions.cs" />
<Compile Include="describe_RunningSpecs\describe_action_indexer_add_operator.cs" />
<Compile Include="describe_Context.cs" />
<Compile Include="describe_Example.cs" />
<Compile Include="describe_RunningSpecs\Exceptions\describe_expected_exception.cs" />
<Compile Include="describe_RunningSpecs\describe_implicit_befores.cs" />
<Compile Include="describe_RunningSpecs\describe_todo.cs" />
<Compile Include="describe_ContextCollection.cs" />
<Compile Include="describe_DefaultConventions.cs" />
<Compile Include="SpecExtensions.cs" />
<Compile Include="describe_RunningSpecs\Exceptions\when_method_level_before_contains_exception.cs" />
<Compile Include="describe_Tags.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="describe_RunningSpecs\Exceptions\when_act_contains_exception.cs" />
<Compile Include="describe_RunningSpecs\Exceptions\when_after_contains_exception.cs" />
<Compile Include="describe_RunningSpecs\Exceptions\when_before_contains_exception.cs" />
<Compile Include="describe_ContextBuilder.cs" />
<Compile Include="describe_RunningSpecs\describe_method_level_befores.cs" />
<Compile Include="describe_SpecFinder.cs" />
<Compile Include="describe_RunningSpecs\when_running_specs.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NSpec\NSpec.csproj">
<Project>{36862628-1F0C-4EA5-8963-C79BAF958DC1}</Project>
<Name>NSpec</Name>
</ProjectReference>
<ProjectReference Include="..\SampleSpecs\SampleSpecs.csproj">
<Project>{DCE738AF-2C14-4279-96FB-16930BD1F459}</Project>
<Name>SampleSpecs</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(SolutionDir)\.nuget\nuget.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
-->
</Project>
2 changes: 1 addition & 1 deletion NSpecSpecs/describe_output.cs
Expand Up @@ -60,7 +60,7 @@ public string Run(string tag)

var output = process.StandardOutput.ReadToEnd();

return output.RegexReplace("in .*SampleSpecs", "in SampleSpecs"); ;
return output.RegexReplace("in .*SampleSpecs", "in SampleSpecs").Replace("\r","");
}

[Test]
Expand Down
7 changes: 4 additions & 3 deletions NSpecSpecs/packages.config
@@ -1,4 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Mono.Cecil" version="0.9.5.3" />
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Mono.Cecil" version="0.9.5.3" />
<package id="NUnit" version="2.5.7.10213" />
</packages>
4 changes: 2 additions & 2 deletions Rakefile
Expand Up @@ -27,7 +27,7 @@ end

desc 'run specs'
task :spec => :build do
sh '"C:\program files (x86)\nunit 2.5.9\bin\net-2.0\nunit-console-x86.exe" /nologo NSpecSpecs/bin/Debug/NSpecSpecs.dll'
sh '"libs\NUnit.Runners.2.6.0.12051\tools\nunit-console-x86.exe" /nologo NSpecSpecs/bin/Debug/NSpecSpecs.dll'
end

desc 'run SampleSpecs with NSpecRunner. you can supply a single spec like so -> rake samples[spec_name]'
Expand Down Expand Up @@ -278,4 +278,4 @@ def update_version file, version_lines
newlines = (File.read file).split("\n")[0..-3] + version_lines

File.open(file, 'w') {|f| f.write(newlines.join("\n"))}
end
end
Binary file added libs/NUnit.Runners.2.6.0.12051/Logo.ico
Binary file not shown.
15 changes: 15 additions & 0 deletions libs/NUnit.Runners.2.6.0.12051/license.txt
@@ -0,0 +1,15 @@
Copyright � 2002-2012 Charlie Poole
Copyright � 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov
Copyright � 2000-2002 Philip A. Craig

This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.

Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:

1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment (see the following) in the product documentation is required.

Portions Copyright � 2002-2012 Charlie Poole or Copyright � 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov or Copyright � 2000-2002 Philip A. Craig

2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.

3. This notice may not be removed or altered from any source distribution.
4 changes: 4 additions & 0 deletions libs/NUnit.Runners.2.6.0.12051/tools/agent.conf
@@ -0,0 +1,4 @@
<AgentConfig>
<Port>8080</Port>
<PathToAssemblies>.</PathToAssemblies>
</AgentConfig>
18 changes: 18 additions & 0 deletions libs/NUnit.Runners.2.6.0.12051/tools/agent.log.conf
@@ -0,0 +1,18 @@
<log4net>
<!-- A1 is set to be a ConsoleAppender -->
<appender name="A1" type="log4net.Appender.ConsoleAppender">

<!-- A1 uses PatternLayout -->
<layout type="log4net.Layout.PatternLayout">
<!-- Print the date in ISO 8601 format -->
<conversionPattern value="%-5level %logger - %message%newline" />
</layout>
</appender>

<!-- Set root logger level to DEBUG and its only appender to A1 -->
<root>
<level value="Info" />
<appender-ref ref="A1" />
</root>

</log4net>
18 changes: 18 additions & 0 deletions libs/NUnit.Runners.2.6.0.12051/tools/launcher.log.conf
@@ -0,0 +1,18 @@
<log4net>
<!-- A1 is set to be a ConsoleAppender -->
<appender name="A1" type="log4net.Appender.ConsoleAppender">

<!-- A1 uses PatternLayout -->
<layout type="log4net.Layout.PatternLayout">
<!-- Print the date in ISO 8601 format -->
<conversionPattern value="%-5level %logger - %message%newline" />
</layout>
</appender>

<!-- Set root logger level to DEBUG and its only appender to A1 -->
<root>
<level value="Info" />
<appender-ref ref="A1" />
</root>

</log4net>
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit 54fbb0d

Please sign in to comment.