-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
40 lines (36 loc) · 1.32 KB
/
Directory.Build.props
File metadata and controls
40 lines (36 loc) · 1.32 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
<Project>
<!-- Common properties shared across all projects -->
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- Project metadata -->
<Company>SheetAtlas</Company>
<Product>SheetAtlas</Product>
<Copyright>Copyright © 2026</Copyright>
<!-- Version is overridden by CI/CD pipeline from git tag -->
<!-- Local dev builds use this default version -->
<Version>0.0.0-dev</Version>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<FileVersion>0.0.0.0</FileVersion>
</PropertyGroup>
<!-- Common compiler settings -->
<PropertyGroup>
<LangVersion>latest</LangVersion>
<WarningLevel>4</WarningLevel>
<NoWarn>$(NoWarn);CS1591</NoWarn> <!-- Missing XML documentation -->
</PropertyGroup>
<!-- Code analysis -->
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<Optimize>true</Optimize>
<DebugType>portable</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<Optimize>false</Optimize>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
</Project>