1234567891011121314151617181920212223242526272829303132 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <pack>nuget</pack>
- </PropertyGroup>
- <PropertyGroup>
- <TargetFramework>netstandard2.0</TargetFramework>
- <Version>2.1.16-preview8</Version>
- </PropertyGroup>
- <PropertyGroup>
- <Authors>Lith</Authors>
- <Description>对Http.FormFile MultipartForm的处理</Description>
- <PackageProjectUrl>https://github.com/serset/Sers</PackageProjectUrl>
- </PropertyGroup>
- <PropertyGroup>
- <DocumentationFile>bin\Debug\netstandard2.0\Vit.Net.Http.FormFile.xml</DocumentationFile>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Microsoft.AspNetCore.Http" Version="2.1.0" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Vit.Core\Vit.Core\Vit.Core.csproj" />
- </ItemGroup>
- </Project>
|