forked from zone117x/MimeMapping
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MimeMapping.csproj
60 lines (50 loc) · 2.13 KB
/
MimeMapping.csproj
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard1.1;netstandard2.0;netstandard2.1</TargetFrameworks>
<Description>Constants for (almost) all MIME types and method to determine MIME type from a file name. Contains just over 1000 mime types.
Generated from the Apache server mime.types file and the H5PB nginx mime.types file. Works similar to .NET's System.Web.MimeMapping.GetMimeMapping.
See:
http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types
https://github.com/h5bp/server-configs-nginx/blob/master/mime.types
https://msdn.microsoft.com/en-us/library/system.web.mimemapping.getmimemapping(v=vs.110).aspx
</Description>
<PackageProjectUrl>https://github.com/zone117x/MimeMapping</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/zone117x/MimeMapping/blob/master/LICENSE.md</PackageLicenseUrl>
<PackageTags>mimetype contenttype mime type mimemapping GetMimeMapping media-types rfc 4288</PackageTags>
<Version>1.0.2</Version>
<Authors>Matthew Little</Authors>
<Company />
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\netstandard1.1\MimeMapping.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Test\**" />
<EmbeddedResource Remove="Test\**" />
<None Remove="Test\**" />
</ItemGroup>
<ItemGroup>
<None Remove=".editorconfig" />
<None Remove=".gitignore" />
<None Remove="LICENSE.md" />
<None Remove="MimeMapping.nuspec" />
<None Remove="README.md" />
</ItemGroup>
<ItemGroup>
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
</ItemGroup>
<ItemGroup>
<None Update="KnownMimeTypes.tt">
<Generator>TextTemplatingFileGenerator</Generator>
<LastGenOutput>KnownMimeTypes.cs</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup>
<Compile Update="KnownMimeTypes.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>KnownMimeTypes.tt</DependentUpon>
</Compile>
</ItemGroup>
</Project>