-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
48 lines (43 loc) · 2.17 KB
/
Directory.Build.props
File metadata and controls
48 lines (43 loc) · 2.17 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
<Project>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<!-- Centralized versioning -->
<Version>2.0.6</Version>
<AssemblyVersion>2.0.6.0</AssemblyVersion>
<FileVersion>2.0.6.0</FileVersion>
<!-- Package metadata (free tier) -->
<Authors>Egonex S.R.L.</Authors>
<Company>Egonex S.R.L.</Company>
<Product>ECP-SDK</Product>
<Description>Emergency Communication Protocol - Binary protocol for critical emergency communications. 8-byte token format and compact signed envelope.</Description>
<Copyright>Copyright © 2026 Egonex S.R.L.</Copyright>
<PackageTags>ecp;emergency;protocol;binary;safety;iot;critical-infrastructure</PackageTags>
<PackageProjectUrl>https://egonex-group.com/ecp</PackageProjectUrl>
<RepositoryUrl>https://github.com/Egonex-Code/ecp-protocol</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageIcon>icon.png</PackageIcon>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<!-- Build settings -->
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<!-- CA1711: [Flags] enums conventionally use the "Flags" suffix -->
<NoWarn>$(NoWarn);CA1711</NoWarn>
<WarningLevel>7</WarningLevel>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<AnalysisLevel>8.0-recommended</AnalysisLevel>
<!-- Deterministic and reproducible builds -->
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild Condition="'$(Configuration)' == 'Release'">true</ContinuousIntegrationBuild>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<DebugType>embedded</DebugType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>false</IncludeSymbols>
</PropertyGroup>
<ItemGroup Condition="'$(IsPackable)' == 'true'">
<None Include="$(MSBuildThisFileDirectory)icon.png" Pack="true" PackagePath="\" Link="icon.png" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
</ItemGroup>
</Project>