-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
30 lines (28 loc) · 1.65 KB
/
Copy pathDirectory.Build.props
File metadata and controls
30 lines (28 loc) · 1.65 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
<Project>
<!--
Shared metadata for all projects in the repository. Per-project values
(PackageId, Product, Description, Version) live in the individual .csproj
files. Packaging-only properties are harmless on non-packable projects.
-->
<PropertyGroup>
<Authors>Aliaksandr Kukrash</Authors>
<Company />
<Copyright>Copyright 2026 Aliaksandr Kukrash</Copyright>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/multiarc/Heddle</PackageProjectUrl>
<RepositoryUrl>https://github.com/multiarc/Heddle</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>template;template-engine;text;codegen;razor-alternative</PackageTags>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<!-- Symbol package format for the library packages that opt in with IncludeSymbols (below).
Kept out of the CI `dotnet pack` command line: a global -p:IncludeSymbols=true also forces
a symbol package for the RID-specific-tool wrapper packages, which have no assembly, so NuGet
fails with NU5017. Setting IncludeSymbols per-project lets the tools/generator opt out. -->
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<!-- net6.0 is intentionally kept as a supported target for back-compat despite being out of Microsoft
support; acknowledge it so NETSDK1138 does not warn on every build. Dropping net6.0 would be a
consumer-facing breaking change, decided separately from this build-hygiene pass. -->
<CheckEolTargetFramework>false</CheckEolTargetFramework>
</PropertyGroup>
</Project>