-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
46 lines (40 loc) · 1.83 KB
/
Copy pathDirectory.Build.props
File metadata and controls
46 lines (40 loc) · 1.83 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
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<!-- Shared NuGet package metadata. Individual csproj files override only what's package-specific. -->
<PropertyGroup>
<Authors>Khaled Md Tuhidul Hossain</Authors>
<Company>Khaled Md Tuhidul Hossain</Company>
<Copyright>Copyright (c) 2026 Khaled Md Tuhidul Hossain</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/encryptedtouhid/NameGuard.ML</PackageProjectUrl>
<RepositoryUrl>https://github.com/encryptedtouhid/NameGuard.ML</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<!-- Deterministic / reproducible builds + Source Link -->
<PropertyGroup>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
</PropertyGroup>
<!--
MinVer: SemVer derived from git tags.
- Tag 'v1.2.3' on HEAD -> 1.2.3
- N commits past 'v1.2.3' -> 1.2.4-alpha.0.N
- No tags yet -> 0.0.0-alpha.0.<total commits>
- Pre-release tag 'v1.2.3-rc.1' -> 1.2.3-rc.1
-->
<PropertyGroup>
<MinVerTagPrefix>v</MinVerTagPrefix>
<MinVerDefaultPreReleaseIdentifiers>alpha.0</MinVerDefaultPreReleaseIdentifiers>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MinVer" Version="5.0.0" PrivateAssets="All" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
</ItemGroup>
</Project>