Skip to content

Commit 4db9892

Browse files
committed
upgrade nuget packages
1 parent ecd40fc commit 4db9892

8 files changed

+16
-20
lines changed

main/NPOI.Core.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
<AssemblyOriginatorKeyFile>npoi.snk</AssemblyOriginatorKeyFile>
1010
<PackageId>NPOI</PackageId>
1111
<RepositoryUrl>https://github.com/tonyqus/npoi</RepositoryUrl>
12-
<OutputPath>..\solution\Lib</OutputPath>
12+
<OutputPath></OutputPath>
1313
</PropertyGroup>
1414

1515
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
16-
<DocumentationFile>..\solution\Lib\NPOI.xml</DocumentationFile>
16+
<DocumentationFile>C:\github\npoi\main\NPOI.xml</DocumentationFile>
1717
</PropertyGroup>
1818

1919

main/NPOI.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,6 @@
8282
<Prefer32Bit>false</Prefer32Bit>
8383
</PropertyGroup>
8484
<ItemGroup>
85-
<Reference Include="BouncyCastle.Crypto, Version=1.8.6.0, Culture=neutral, PublicKeyToken=0e99375e54769942, processorArchitecture=MSIL">
86-
<HintPath>..\solution\packages\Portable.BouncyCastle.1.8.6\lib\net40\BouncyCastle.Crypto.dll</HintPath>
87-
</Reference>
8885
<Reference Include="System">
8986
<HintPath>C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.dll</HintPath>
9087
</Reference>
@@ -1360,8 +1357,11 @@
13601357
</BootstrapperPackage>
13611358
</ItemGroup>
13621359
<ItemGroup>
1360+
<PackageReference Include="Portable.BouncyCastle">
1361+
<Version>1.8.9</Version>
1362+
</PackageReference>
13631363
<PackageReference Include="SharpZipLib">
1364-
<Version>1.3.1</Version>
1364+
<Version>1.3.2</Version>
13651365
</PackageReference>
13661366
</ItemGroup>
13671367
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />

ooxml/NPOI.OOXML.Core.csproj

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,16 @@
1010
</PropertyGroup>
1111

1212
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
13-
<DocumentationFile>..\solution\Lib\NPOI.OOXML.xml</DocumentationFile>
13+
<DocumentationFile>C:\github\npoi\ooxml\NPOI.OOXML.xml</DocumentationFile>
1414
</PropertyGroup>
1515

1616
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
1717
<OutputPath>..\solution\Lib</OutputPath>
1818
</PropertyGroup>
1919

2020
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
21-
<OutputPath>..\solution\Lib</OutputPath>
21+
<OutputPath></OutputPath>
22+
<WarningLevel>5</WarningLevel>
2223
</PropertyGroup>
2324

2425
<ItemGroup>

ooxml/NPOI.OOXML.csproj

-6
Original file line numberDiff line numberDiff line change
@@ -82,12 +82,6 @@
8282
<Prefer32Bit>false</Prefer32Bit>
8383
</PropertyGroup>
8484
<ItemGroup>
85-
<Reference Include="BouncyCastle.Crypto, Version=1.8.6.0, Culture=neutral, PublicKeyToken=0e99375e54769942, processorArchitecture=MSIL">
86-
<HintPath>..\solution\packages\Portable.BouncyCastle.1.8.6\lib\net40\BouncyCastle.Crypto.dll</HintPath>
87-
</Reference>
88-
<Reference Include="ICSharpCode.SharpZipLib, Version=1.3.1.9, Culture=neutral, PublicKeyToken=1b03e6acf1164f73, processorArchitecture=MSIL">
89-
<HintPath>..\solution\packages\SharpZipLib.1.3.1\lib\net45\ICSharpCode.SharpZipLib.dll</HintPath>
90-
</Reference>
9185
<Reference Include="System" />
9286
<Reference Include="System.Data" />
9387
<Reference Include="System.Drawing" />

openxml4Net/NPOI.OpenXml4Net.Core.csproj

+4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
<OutputPath>..\solution\Lib</OutputPath>
1313
</PropertyGroup>
1414

15+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
16+
<WarningLevel>5</WarningLevel>
17+
</PropertyGroup>
18+
1519
<ItemGroup>
1620
<ProjectReference Include="..\main\NPOI.Core.csproj" />
1721
</ItemGroup>

openxml4Net/NPOI.OpenXml4Net.csproj

-3
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,6 @@
8282
<Prefer32Bit>false</Prefer32Bit>
8383
</PropertyGroup>
8484
<ItemGroup>
85-
<Reference Include="ICSharpCode.SharpZipLib, Version=1.3.1.9, Culture=neutral, PublicKeyToken=1b03e6acf1164f73, processorArchitecture=MSIL">
86-
<HintPath>..\solution\packages\SharpZipLib.1.3.1\lib\net45\ICSharpCode.SharpZipLib.dll</HintPath>
87-
</Reference>
8885
<Reference Include="System" />
8986
<Reference Include="System.Data" />
9087
<Reference Include="System.Drawing" />

testcases/main/NPOI.TestCases.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -719,7 +719,7 @@
719719
<Version>3.13.1</Version>
720720
</PackageReference>
721721
<PackageReference Include="SharpZipLib">
722-
<Version>1.3.1</Version>
722+
<Version>1.3.2</Version>
723723
</PackageReference>
724724
</ItemGroup>
725725
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />

testcases/ooxml/NPOI.OOXML.TestCases.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -312,10 +312,10 @@
312312
<Version>3.13.1</Version>
313313
</PackageReference>
314314
<PackageReference Include="Portable.BouncyCastle">
315-
<Version>1.8.6</Version>
315+
<Version>1.8.9</Version>
316316
</PackageReference>
317317
<PackageReference Include="SharpZipLib">
318-
<Version>1.3.1</Version>
318+
<Version>1.3.2</Version>
319319
</PackageReference>
320320
</ItemGroup>
321321
<ItemGroup />

0 commit comments

Comments
 (0)