-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathDirectory.Build.props
29 lines (25 loc) · 1.13 KB
/
Directory.Build.props
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
<Project>
<Import Project="version.props" />
<PropertyGroup>
<Authors>Andrew Lock</Authors>
<Product>NetEscapades.AspNetCore.SecurityHeaders</Product>
<Copyright>Copyright © AndrewLock</Copyright>
<NeutralLanguage>en-GB</NeutralLanguage>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/andrewlock/NetEscapades.AspNetCore.SecurityHeaders</PackageProjectUrl>
<RepositoryUrl>https://github.com/andrewlock/NetEscapades.AspNetCore.SecurityHeaders</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<DebugType>embedded</DebugType>
<IsPackable>false</IsPackable>
<LangVersion>latest</LangVersion>
<CheckEolTargetFramework>false</CheckEolTargetFramework>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>
<Import Project="releasenotes.props" />
<ItemGroup>
<None Include="..\..\icon.png" Pack="true" PackagePath="\"/>
<None Include="..\..\README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>