-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
50 lines (42 loc) · 1.7 KB
/
Directory.Build.props
File metadata and controls
50 lines (42 loc) · 1.7 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
47
48
49
50
<Project>
<!-- Version: Displayed in API responses and logs -->
<PropertyGroup>
<VersionPrefix>1.0.1</VersionPrefix>
</PropertyGroup>
<!-- Assembly Version: For .NET runtime compatibility (Major.Minor.Build.Revision) -->
<PropertyGroup>
<AssemblyVersion>1.0.1.77</AssemblyVersion>
<FileVersion>1.0.1.77</FileVersion>
</PropertyGroup>
<!-- Project Information: Shown in assembly properties -->
<PropertyGroup>
<Product>CurrencyArchiveAPI</Product>
<Authors>Muhammad Zeshan</Authors>
<Company>Muhammad Zeshan</Company>
<Copyright>Copyright © 2025</Copyright>
<Description>High-performance currency conversion API with 20+ years of historical data</Description>
</PropertyGroup>
<!-- Language Settings: .NET 8, C# latest features, nullable reference types -->
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<!-- Documentation: Generate XML docs, suppress missing comment warnings -->
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);CS1591</NoWarn>
</PropertyGroup>
<!-- Release Build: Enable optimizations for production -->
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<Optimize>true</Optimize>
<DebugType>portable</DebugType>
<Deterministic>true</Deterministic>
</PropertyGroup>
<!-- Performance: Server GC for high-throughput APIs, tiered compilation for faster startup -->
<PropertyGroup>
<ServerGarbageCollection>true</ServerGarbageCollection>
<TieredCompilation>true</TieredCompilation>
</PropertyGroup>
</Project>