-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMimeTypesMapper.csproj
More file actions
57 lines (49 loc) · 1.85 KB
/
MimeTypesMapper.csproj
File metadata and controls
57 lines (49 loc) · 1.85 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
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net48</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Version>1.0.5</Version>
<PackageProjectUrl>https://github.com/pcantaluppi/MimeTypesMapper</PackageProjectUrl>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageIcon>Assets/icon.png</PackageIcon>
<IncludeContentInPack>true</IncludeContentInPack>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net8.0'">
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net48'">
<LangVersion>10.0</LangVersion>
</PropertyGroup>
<ItemGroup>
<EditorConfigFiles Remove=".editorconfig" />
</ItemGroup>
<ItemGroup>
<None Remove="Assets\Icon.png" />
<None Remove="license.txt" />
<None Remove="readme.md" />
</ItemGroup>
<ItemGroup>
<Content Include="Assets\Icon.png">
<Pack>True</Pack>
<PackagePath>Assets/icon.png</PackagePath>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="license.txt">
<Pack>True</Pack>
<PackagePath>LICENSE.txt</PackagePath>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="readme.md">
<Pack>True</Pack>
<PackagePath>readme.md</PackagePath>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
</ItemGroup>
</Project>