-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
56 lines (48 loc) · 2.38 KB
/
Copy pathDirectory.Build.props
File metadata and controls
56 lines (48 loc) · 2.38 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
51
52
53
54
55
56
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<AnalysisLevel>latest-all</AnalysisLevel>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<!-- CI / release hardening -->
<TreatWarningsAsErrors Condition="'$(CI)' == 'true'">true</TreatWarningsAsErrors>
<Deterministic>true</Deterministic>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<DebugType>embedded</DebugType>
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
<!-- NuGet package metadata (shared by all packable projects) -->
<Authors>JD</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/JerrettDavis/JD.SemanticKernel.Extensions</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/JerrettDavis/JD.SemanticKernel.Extensions</PackageProjectUrl>
<Copyright>Copyright (c) JD. All rights reserved.</Copyright>
</PropertyGroup>
<!-- Nerdbank.GitVersioning — single source of truth for all package/assembly versions -->
<ItemGroup>
<PackageReference Include="Nerdbank.GitVersioning" PrivateAssets="all" />
</ItemGroup>
<!-- SourceLink for symbol servers -->
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="all" />
</ItemGroup>
<!-- Analyzers — enforce code quality across all projects -->
<ItemGroup>
<PackageReference Include="Meziantou.Analyzer" PrivateAssets="all" />
</ItemGroup>
<!--
NuGet audit mode: direct-only.
SQLitePCLRaw.lib.e_sqlite3 2.1.11 (GHSA-2m69-gcr7-jv3q) is pulled in as a transitive
dependency by Microsoft.Data.Sqlite 10.x. The 2.x series has no patched release, and the
3.x series uses a completely different native-library packaging scheme that is incompatible
with the SQLitePCLRaw.core 2.x managed shim that Microsoft.Data.Sqlite depends on.
Use NuGetAuditMode=direct so that NU1903 is not raised for this transitive package.
Direct dependencies (including Microsoft.Data.Sqlite itself) remain fully audited.
Revert this once Microsoft.Data.Sqlite ships a version that bundles a fixed SQLite native.
-->
<PropertyGroup>
<NuGetAuditMode>direct</NuGetAuditMode>
</PropertyGroup>
</Project>