|
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