-
Notifications
You must be signed in to change notification settings - Fork 48
/
Directory.Build.props
31 lines (25 loc) · 1.18 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
30
31
<Project>
<Import Project="version.props" />
<PropertyGroup>
<Authors>Andrew Lock</Authors>
<Copyright>Copyright © AndrewLock</Copyright>
<NeutralLanguage>en-GB</NeutralLanguage>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/andrewlock/NetEscapades.EnumGenerators</PackageProjectUrl>
<PackageTags>enums attribute generator generation codegen codegenerator codegeneration netescapades</PackageTags>
<CheckEolTargetFramework>false</CheckEolTargetFramework>
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
<UseArtifactsOutput>true</UseArtifactsOutput>
</PropertyGroup>
<PropertyGroup>
<NoPackageAnalysis>true</NoPackageAnalysis>
<LangVersion>latest</LangVersion>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<PackageOutputPath>$(MSBuildThisFileDirectory)\artifacts</PackageOutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DotNet.ReproducibleBuilds" Version="1.1.1" PrivateAssets="All"/>
</ItemGroup>
<Import Project="releasenotes.props" />
</Project>