-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
39 lines (29 loc) · 1.73 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
32
33
34
35
36
37
38
39
<Project>
<PropertyGroup>
<PackageTags>NetLah;.NetCore;ASP.NETCore;ISystemClock,ITimeProvider,TimeProvider</PackageTags>
<Authors>thoho;NetLah</Authors>
<Company>NetLah</Company>
<Copyright>NetLah</Copyright>
<Product>NetLah .NET</Product>
<!--PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance-->
<!--PackageIcon>icon.png</PackageIcon-->
<PackageProjectUrl>https://github.com/NetLah/ClockProvider</PackageProjectUrl>
<PackageReleaseNotes>https://github.com/NetLah/ClockProvider/releases</PackageReleaseNotes>
<!-- Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<!-- Embed source files that are not tracked by the source control manager in the PDB -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<LangVersion>13.0</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Condition=" '$(TEAMCITY_VERSION)' != '' OR '$(CI)' == 'true' OR '$(TF_BUILD)' == 'true' OR '$(GITHUB_ACTIONS)' == 'true'">
<!-- Recommended: Embed symbols containing Source Link in the main file (exe/dll) -->
<DebugType>embedded</DebugType>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<ContinuousIntegrationBuild>True</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup Condition=" '$(TEAMCITY_VERSION)' != '' OR '$(CI)' == 'true' OR '$(TF_BUILD)' == 'true' OR '$(GITHUB_ACTIONS)' == 'true'">
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
</ItemGroup>
</Project>