Skip to content

Commit 5a77445

Browse files
committed
Upgrade dependencies
1 parent 5949ea5 commit 5a77445

3 files changed

Lines changed: 90 additions & 90 deletions

File tree

Source/HttpMultipartParser.Benchmark/HttpMultipartParser.Benchmark.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="BenchmarkDotNet" Version="0.13.0" />
9+
<PackageReference Include="BenchmarkDotNet" Version="0.13.1" />
1010
</ItemGroup>
1111

1212
<ItemGroup>
Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
2-
3-
<PropertyGroup>
4-
<TargetFrameworks>net461;net472;netcoreapp3.1;net5.0</TargetFrameworks>
5-
<AssemblyName>HttpMultipartParser.UnitTests</AssemblyName>
6-
<RootNamespace>HttpMultipartParser.UnitTests</RootNamespace>
7-
</PropertyGroup>
8-
9-
<ItemGroup>
10-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.10.0" />
11-
<PackageReference Include="xunit" Version="2.4.1" />
12-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
13-
<PrivateAssets>all</PrivateAssets>
14-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
15-
</PackageReference>
16-
</ItemGroup>
17-
18-
<ItemGroup>
19-
<ProjectReference Include="..\HttpMultipartParser\HttpMultipartParser.csproj" />
20-
</ItemGroup>
21-
22-
</Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFrameworks>net461;net472;netcoreapp3.1;net5.0</TargetFrameworks>
5+
<AssemblyName>HttpMultipartParser.UnitTests</AssemblyName>
6+
<RootNamespace>HttpMultipartParser.UnitTests</RootNamespace>
7+
</PropertyGroup>
8+
9+
<ItemGroup>
10+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
11+
<PackageReference Include="xunit" Version="2.4.1" />
12+
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
13+
<PrivateAssets>all</PrivateAssets>
14+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
15+
</PackageReference>
16+
</ItemGroup>
17+
18+
<ItemGroup>
19+
<ProjectReference Include="..\HttpMultipartParser\HttpMultipartParser.csproj" />
20+
</ItemGroup>
21+
22+
</Project>
Lines changed: 67 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -1,67 +1,67 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
2-
3-
<PropertyGroup>
4-
<TargetFrameworks>net461;net472;netstandard2.0;net5.0</TargetFrameworks>
5-
<PlatformTarget>anycpu</PlatformTarget>
6-
<GenerateDocumentationFile>true</GenerateDocumentationFile>
7-
<OutputType>Library</OutputType>
8-
<Version>$(SemVer)</Version>
9-
<DebugType>portable</DebugType>
10-
</PropertyGroup>
11-
12-
<PropertyGroup>
13-
<PublishRepositoryUrl>true</PublishRepositoryUrl>
14-
<IncludeSymbols>true</IncludeSymbols>
15-
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
16-
</PropertyGroup>
17-
18-
<PropertyGroup>
19-
<AssemblyOriginatorKeyFile>HttpMultipartParser.snk</AssemblyOriginatorKeyFile>
20-
<SignAssembly>true</SignAssembly>
21-
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
22-
</PropertyGroup>
23-
24-
<PropertyGroup>
25-
<PackageId>HttpMultipartParser</PackageId>
26-
<AssemblyName>HttpMultipartParser</AssemblyName>
27-
<AssemblyTitle>HttpMultipartParser</AssemblyTitle>
28-
<Authors>Jake Woods, Jeremie Desautels</Authors>
29-
<Company></Company>
30-
<Description>A C# Http Multipart/form-data parser that works correctly on binary data and very large files.</Description>
31-
<Summary>The Http Multipart Parser does it exactly what it claims on the tin: parses multipart/form-data. This particular parser is well suited to parsing large data from streams as it doesn't attempt to read the entire stream at once and produces a set of streams for file data.</Summary>
32-
<Copyright>Copyright © Jake Woods and contributors 2013 - Present</Copyright>
33-
<PackageLicenseExpression>MIT</PackageLicenseExpression>
34-
<PackageProjectUrl>https://github.com/Http-Multipart-Data-Parser/Http-Multipart-Data-Parser</PackageProjectUrl>
35-
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
36-
<PackageTags>http multipart parser form data</PackageTags>
37-
</PropertyGroup>
38-
39-
<ItemGroup>
40-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
41-
<PackageReference Include="Microsoft.IO.RecyclableMemoryStream" Version="2.1.2" />
42-
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="All" />
43-
<PackageReference Include="System.Buffers" Version="4.5.1" />
44-
</ItemGroup>
45-
46-
<ItemGroup Condition=" $(TargetFramework.StartsWith('net4')) ">
47-
<Reference Include="Microsoft.CSharp" />
48-
<Reference Include="System" />
49-
</ItemGroup>
50-
51-
<ItemGroup Condition=" $(TargetFramework.StartsWith('netstandard')) ">
52-
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
53-
</ItemGroup>
54-
55-
<PropertyGroup Condition="'$(Configuration)' == 'Release' ">
56-
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
57-
</PropertyGroup>
58-
59-
<ItemGroup>
60-
<AdditionalFiles Include="$(SolutionDir)stylecop.json" Link="stylecop.json" />
61-
</ItemGroup>
62-
63-
<PropertyGroup>
64-
<CodeAnalysisRuleSet>$(SolutionDir)StyleCopRules.ruleset</CodeAnalysisRuleSet>
65-
</PropertyGroup>
66-
67-
</Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFrameworks>net461;net472;netstandard2.0;net5.0</TargetFrameworks>
5+
<PlatformTarget>anycpu</PlatformTarget>
6+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
7+
<OutputType>Library</OutputType>
8+
<Version>$(SemVer)</Version>
9+
<DebugType>portable</DebugType>
10+
</PropertyGroup>
11+
12+
<PropertyGroup>
13+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
14+
<IncludeSymbols>true</IncludeSymbols>
15+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
16+
</PropertyGroup>
17+
18+
<PropertyGroup>
19+
<AssemblyOriginatorKeyFile>HttpMultipartParser.snk</AssemblyOriginatorKeyFile>
20+
<SignAssembly>true</SignAssembly>
21+
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
22+
</PropertyGroup>
23+
24+
<PropertyGroup>
25+
<PackageId>HttpMultipartParser</PackageId>
26+
<AssemblyName>HttpMultipartParser</AssemblyName>
27+
<AssemblyTitle>HttpMultipartParser</AssemblyTitle>
28+
<Authors>Jake Woods, Jeremie Desautels</Authors>
29+
<Company></Company>
30+
<Description>A C# Http Multipart/form-data parser that works correctly on binary data and very large files.</Description>
31+
<Summary>The Http Multipart Parser does it exactly what it claims on the tin: parses multipart/form-data. This particular parser is well suited to parsing large data from streams as it doesn't attempt to read the entire stream at once and produces a set of streams for file data.</Summary>
32+
<Copyright>Copyright © Jake Woods and contributors 2013 - Present</Copyright>
33+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
34+
<PackageProjectUrl>https://github.com/Http-Multipart-Data-Parser/Http-Multipart-Data-Parser</PackageProjectUrl>
35+
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
36+
<PackageTags>http multipart parser form data</PackageTags>
37+
</PropertyGroup>
38+
39+
<ItemGroup>
40+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
41+
<PackageReference Include="Microsoft.IO.RecyclableMemoryStream" Version="2.2.0" />
42+
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="All" />
43+
<PackageReference Include="System.Buffers" Version="4.5.1" />
44+
</ItemGroup>
45+
46+
<ItemGroup Condition=" $(TargetFramework.StartsWith('net4')) ">
47+
<Reference Include="Microsoft.CSharp" />
48+
<Reference Include="System" />
49+
</ItemGroup>
50+
51+
<ItemGroup Condition=" $(TargetFramework.StartsWith('netstandard')) ">
52+
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
53+
</ItemGroup>
54+
55+
<PropertyGroup Condition="'$(Configuration)' == 'Release' ">
56+
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
57+
</PropertyGroup>
58+
59+
<ItemGroup>
60+
<AdditionalFiles Include="$(SolutionDir)stylecop.json" Link="stylecop.json" />
61+
</ItemGroup>
62+
63+
<PropertyGroup>
64+
<CodeAnalysisRuleSet>$(SolutionDir)StyleCopRules.ruleset</CodeAnalysisRuleSet>
65+
</PropertyGroup>
66+
67+
</Project>

0 commit comments

Comments
 (0)