-
-
Notifications
You must be signed in to change notification settings - Fork 128
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
28 lines (21 loc) · 894 Bytes
/
Copy pathDirectory.Build.props
File metadata and controls
28 lines (21 loc) · 894 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
27
28
<Project>
<PropertyGroup>
<Authors>Maksim Volkau</Authors>
<Copyright>Copyright © 2013-2024 Maksim Volkau</Copyright>
<LangVersion>latest</LangVersion>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
<LatestSupportedNet>net9.0</LatestSupportedNet>
<NoWarn>NETSDK1138;NETSDK1005;NU5104;NU1900</NoWarn>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>portable</DebugType>
</PropertyGroup>
<ItemGroup>
<None Remove="**\*.orig" />
</ItemGroup>
</Project>