-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
37 lines (29 loc) · 1.22 KB
/
Directory.Build.props
File metadata and controls
37 lines (29 loc) · 1.22 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
<Project>
<PropertyGroup>
<!-- Product Information -->
<Product>TagLibSharp2</Product>
<Authors>Stephen Shaw</Authors>
<Company>Stephen Shaw</Company>
<Copyright>Copyright (c) 2025-2026 Stephen Shaw and contributors</Copyright>
<!-- Version: Set via CI or use default for local builds -->
<ReleaseVersion Condition="'$(ReleaseVersion)' == ''">0.6.0</ReleaseVersion>
<VersionSuffix Condition="'$(VersionSuffix)' == '' And '$(CI)' == ''">dev</VersionSuffix>
<!-- Repository Info -->
<RepositoryUrl>https://github.com/decriptor/TagLibSharp2</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<!-- Language Settings -->
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<!-- Code Analysis -->
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisLevel>latest-all</AnalysisLevel>
<!-- Build Settings -->
<Deterministic>true</Deterministic>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- CI Configuration -->
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
</PropertyGroup>
</Project>