Skip to content

Commit

Permalink
remove NPOI, now use nuget
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-kelly committed Aug 27, 2016
1 parent 8b729aa commit 4fb4451
Show file tree
Hide file tree
Showing 11 changed files with 28 additions and 43,593 deletions.
6 changes: 6 additions & 0 deletions TableML/TableML.sln
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TableMLTests", "TableMLTest
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TableMLCompiler", "TableMLCompiler\TableMLCompiler.csproj", "{0EA0F262-7EF3-4696-A99C-F62E0BC2F613}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TableMLCompilerConsole", "TableMLCompilerConsole\TableMLCompilerConsole.csproj", "{D3A252A3-78B0-4651-AD16-C6B6A30F7326}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -27,6 +29,10 @@ Global
{0EA0F262-7EF3-4696-A99C-F62E0BC2F613}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0EA0F262-7EF3-4696-A99C-F62E0BC2F613}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0EA0F262-7EF3-4696-A99C-F62E0BC2F613}.Release|Any CPU.Build.0 = Release|Any CPU
{D3A252A3-78B0-4651-AD16-C6B6A30F7326}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D3A252A3-78B0-4651-AD16-C6B6A30F7326}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D3A252A3-78B0-4651-AD16-C6B6A30F7326}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D3A252A3-78B0-4651-AD16-C6B6A30F7326}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
33 changes: 14 additions & 19 deletions TableML/TableMLCompiler/TableMLCompiler.csproj
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -30,30 +30,22 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="DotLiquid">
<HintPath>..\libs\DotLiquid.dll</HintPath>
</Reference>
<Reference Include="ICSharpCode.SharpZipLib, Version=0.87.5946.34986, Culture=neutral, PublicKeyToken=1b03e6acf1164f73, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\libs\ICSharpCode.SharpZipLib.dll</HintPath>
<Reference Include="System" />
<Reference Include="ICSharpCode.SharpZipLib">
<HintPath>..\packages\SharpZipLib.0.86.0\lib\20\ICSharpCode.SharpZipLib.dll</HintPath>
</Reference>
<Reference Include="NPOI, Version=2.1.3.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\libs\NPOI\NPOI.dll</HintPath>
<Reference Include="NPOI">
<HintPath>..\packages\NPOI.2.2.1\lib\net20\NPOI.dll</HintPath>
</Reference>
<Reference Include="NPOI.OOXML, Version=2.1.3.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\libs\NPOI\NPOI.OOXML.dll</HintPath>
<Reference Include="NPOI.OOXML">
<HintPath>..\packages\NPOI.2.2.1\lib\net20\NPOI.OOXML.dll</HintPath>
</Reference>
<Reference Include="NPOI.OpenXml4Net, Version=2.1.3.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\libs\NPOI\NPOI.OpenXml4Net.dll</HintPath>
<Reference Include="NPOI.OpenXml4Net">
<HintPath>..\packages\NPOI.2.2.1\lib\net20\NPOI.OpenXml4Net.dll</HintPath>
</Reference>
<Reference Include="NPOI.OpenXmlFormats, Version=2.1.3.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\libs\NPOI\NPOI.OpenXmlFormats.dll</HintPath>
<Reference Include="NPOI.OpenXmlFormats">
<HintPath>..\packages\NPOI.2.2.1\lib\net20\NPOI.OpenXmlFormats.dll</HintPath>
</Reference>
<Reference Include="System" />
</ItemGroup>
<Choose>
<When Condition="('$(VisualStudioVersion)' == '10.0' or '$(VisualStudioVersion)' == '') and '$(TargetFrameworkVersion)' == 'v3.5'">
Expand All @@ -77,6 +69,9 @@
<Name>TableML</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<Choose>
<When Condition="'$(VisualStudioVersion)' == '10.0' And '$(IsCodedUITest)' == 'True'">
<ItemGroup>
Expand Down
5 changes: 5 additions & 0 deletions TableML/TableMLCompiler/packages.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="NPOI" version="2.2.1" targetFramework="net35" />
<package id="SharpZipLib" version="0.86.0" targetFramework="net35" />
</packages>
4 changes: 2 additions & 2 deletions TableML/TableMLTests/TableMLTests.csproj
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,17 @@
<ItemGroup>
<Reference Include="System" />
<Reference Include="nunit.framework">
<HintPath>..\packages\NUnit.2.6.4\lib\nunit.framework.dll</HintPath>
<HintPath>..\packages\NUnit.3.4.1\lib\net35\nunit.framework.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
<None Include="TestExcel.xls">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="TestExcel.xlsx">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<Compile Include="TableMLTest.cs">
Expand Down
2 changes: 1 addition & 1 deletion TableML/TableMLTests/packages.config
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="NUnit" version="2.6.4" targetFramework="net45" />
<package id="NUnit" version="3.4.1" targetFramework="net35" />
</packages>
Binary file removed TableML/libs/ICSharpCode.SharpZipLib.dll
Binary file not shown.
Binary file removed TableML/libs/NPOI/NPOI.OOXML.dll
Binary file not shown.
Binary file removed TableML/libs/NPOI/NPOI.OpenXml4Net.dll
Binary file not shown.
Binary file removed TableML/libs/NPOI/NPOI.OpenXmlFormats.dll
Binary file not shown.
Loading

0 comments on commit 4fb4451

Please sign in to comment.