-
-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
26 lines (23 loc) · 946 Bytes
/
Copy pathDirectory.Build.props
File metadata and controls
26 lines (23 loc) · 946 Bytes
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
<Project>
<!--
Shared assembly metadata for the modernization (.NET 9) projects. Metadata-only and
unconditional so it is harmless to the legacy non-SDK projects still on disk during the
migration (they ignore these properties). Compilation settings (TFM, Nullable, RID, etc.)
live in each SDK-style csproj.
-->
<PropertyGroup>
<Company>kimhwan</Company>
<Product>Screen Recorder</Product>
<Authors>kimhwan</Authors>
<Copyright>Copyright © kimhwan</Copyright>
<NeutralLanguage>en</NeutralLanguage>
</PropertyGroup>
<PropertyGroup>
<!--
CA1416 (platform compatibility) is noise for this inherently Windows-only desktop app
(WPF + WGC + WASAPI + DXGI). WGC/WinRT APIs that genuinely need a newer Windows build are
guarded explicitly with ApiInformation in P2 (Aurora pattern), not via this analyzer.
-->
<NoWarn>$(NoWarn);CA1416</NoWarn>
</PropertyGroup>
</Project>