-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
21 lines (19 loc) · 1.04 KB
/
Copy pathDirectory.Build.props
File metadata and controls
21 lines (19 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Project>
<PropertyGroup>
<!--
Pin every transitive NuGet package by committing per-project
packages.lock.json. CI restores with the locked-mode flag so any
unexpected resolution (including silent native swaps under
SQLitePCLRaw.bundle_e_sqlite3) fails the build instead of slipping
through. See DEVELOPER_GUIDE.md and issue #1556.
すべての推移的 NuGet 依存を packages.lock.json で固定する。CI は
locked-mode フラグ付きで restore するため、SQLitePCLRaw.bundle_e_sqlite3 の
ネイティブを含む解決差分が黙って入ることなくビルド失敗で気付ける。
詳細は DEVELOPER_GUIDE.md および issue #1556 を参照。
-->
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsNotAsErrors>$(WarningsNotAsErrors);IL2026;IL2067;IL2072;IL2075;IL3050</WarningsNotAsErrors>
<ILLinkTreatWarningsAsErrors>false</ILLinkTreatWarningsAsErrors>
</PropertyGroup>
</Project>