-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathManagedCode.MimeTypes.csproj
More file actions
32 lines (26 loc) · 1.37 KB
/
ManagedCode.MimeTypes.csproj
File metadata and controls
32 lines (26 loc) · 1.37 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Nullable>enable</Nullable>
<LangVersion>14</LangVersion>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
<CompilerGeneratedFilesOutputPath>$(BaseIntermediateOutputPath)Generated</CompilerGeneratedFilesOutputPath>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\ManagedCode.MimeTypes.Generator\ManagedCode.MimeTypes.Generator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="mimeTypes.json" />
<AdditionalFiles Include="mimeTypes.metadata.json" Condition="Exists('mimeTypes.metadata.json')" />
</ItemGroup>
<!--NuGet-->
<PropertyGroup>
<Title>ManagedCode.MimeTypes</Title>
<PackageId>ManagedCode.MimeTypes</PackageId>
<Description>Official IANA and Apache MIME/media type lookup, metadata, categorisation, and content detection for .NET</Description>
<PackageTags>managedcode, mimetypes, mime, media-types, iana, apache, content-detection, file-signatures, magic-numbers, mime-sniffing</PackageTags>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
</ItemGroup>
</Project>