Skip to content

Commit

Permalink
Removing 3rd party binary dlls from Source Control and referenced the…
Browse files Browse the repository at this point in the history
…m correctly using NuGet when possible.
  • Loading branch information
Pauli Østerø committed Oct 29, 2015
1 parent 89fe34a commit 2984fd7
Show file tree
Hide file tree
Showing 49 changed files with 2,569 additions and 141,413 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,5 @@

/Bin/Composite.dll
/Bin/Composite.Workflows.dll

/Packages/
Binary file removed Bin/ICSharpCode.SharpZipLib.dll
Binary file not shown.
Binary file removed Bin/Microsoft.CodeAnalysis.CSharp.dll
Binary file not shown.
Binary file removed Bin/Microsoft.CodeAnalysis.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed Bin/Microsoft.Framework.DependencyInjection.dll
Binary file not shown.
Binary file removed Bin/Microsoft.Web.Infrastructure.dll
Binary file not shown.
Binary file removed Bin/System.Collections.Immutable.dll
Binary file not shown.
Binary file removed Bin/System.Reflection.Metadata.dll
Binary file not shown.
Binary file removed Bin/System.Web.Helpers.dll
Binary file not shown.
Binary file removed Bin/System.Web.Razor.dll
Binary file not shown.
Binary file removed Bin/System.Web.WebPages.Deployment.dll
Binary file not shown.
Binary file removed Bin/System.Web.WebPages.Razor.dll
Binary file not shown.
Binary file removed Bin/System.Web.WebPages.dll
Binary file not shown.
16 changes: 9 additions & 7 deletions Composite.Workflows/Composite.Workflows.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="ICSharpCode.SharpZipLib, Version=0.85.5.452, Culture=neutral, PublicKeyToken=1b03e6acf1164f73, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\bin\ICSharpCode.SharpZipLib.dll</HintPath>
<Reference Include="ICSharpCode.SharpZipLib, Version=0.86.0.518, Culture=neutral, PublicKeyToken=1b03e6acf1164f73, processorArchitecture=MSIL">
<HintPath>..\packages\SharpZipLib.0.86.0\lib\20\ICSharpCode.SharpZipLib.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Microsoft.Practices.EnterpriseLibrary.Common, Version=3.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
Expand Down Expand Up @@ -113,9 +113,9 @@
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Web.Services" />
<Reference Include="System.Web.WebPages, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\Bin\System.Web.WebPages.dll</HintPath>
<Reference Include="System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System.Workflow.Activities">
<RequiredTargetFramework>3.0</RequiredTargetFramework>
Expand Down Expand Up @@ -1358,7 +1358,9 @@
<Name>Composite</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup />
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.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.
Expand Down
7 changes: 7 additions & 0 deletions Composite.Workflows/packages.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.AspNet.Razor" version="3.2.3" targetFramework="net45" />
<package id="Microsoft.AspNet.WebPages" version="3.2.3" targetFramework="net45" />
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net45" />
<package id="SharpZipLib" version="0.86.0" targetFramework="net45" />
</packages>
5,013 changes: 2,506 additions & 2,507 deletions Composite/Composite.csproj

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions Composite/packages.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.AspNet.Razor" version="3.2.3" targetFramework="net45" />
<package id="Microsoft.AspNet.WebPages" version="3.2.3" targetFramework="net45" />
<package id="Microsoft.Framework.DependencyInjection" version="1.0.0-beta8" targetFramework="net45" />
<package id="Microsoft.Framework.DependencyInjection.Abstractions" version="1.0.0-beta8" targetFramework="net45" />
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net45" />
<package id="SharpZipLib" version="0.86.0" targetFramework="net45" />
</packages>

This file was deleted.

Binary file not shown.
Binary file not shown.
Loading

0 comments on commit 2984fd7

Please sign in to comment.