-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCaseInsensitiveStaticFile.csproj
More file actions
26 lines (22 loc) · 930 Bytes
/
CaseInsensitiveStaticFile.csproj
File metadata and controls
26 lines (22 loc) · 930 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Version>0.0.1</Version>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>JamesYang@NZ</Authors>
<Description>An ASP.NET Core Middleware that enables case-insensitive static files.</Description>
<PackageLicenseFile>License.md</PackageLicenseFile>
<PackageProjectUrl>https://github.com/XiaoFaye/CaseInsensitiveStaticFile</PackageProjectUrl>
<PackageTags>asp-net-core, middleware, staticfile, case-insensitive</PackageTags>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
</ItemGroup>
<ItemGroup>
<None Include="License.md">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>