-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
23 lines (23 loc) · 1.17 KB
/
Copy pathDirectory.Build.props
File metadata and controls
23 lines (23 loc) · 1.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
<Project>
<PropertyGroup>
<!-- Reproducibility is delegated to DotNet.ReproducibleBuilds rather than restated here.
It sets DebugType to embedded (so the portable PDB with its Source Link map travels
inside the assembly and no symbol package is needed), turns on
ContinuousIntegrationBuild for every CI provider it recognises, and publishes the
repository URL, branch and commit into the nuspec. Source Link itself ships in the
SDK. Deterministic is already the SDK default. -->
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<AnalysisLevel>latest</AnalysisLevel>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<Authors>Agash</Authors>
<Company>Agash</Company>
<Copyright>Copyright (c) Agash 2026</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/Agash/Syphon.NET</RepositoryUrl>
<PackageProjectUrl>https://github.com/Agash/Syphon.NET</PackageProjectUrl>
</PropertyGroup>
</Project>