-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.props
31 lines (22 loc) · 1.03 KB
/
common.props
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
<Project>
<PropertyGroup>
<TargetFrameworks>net5.0;netcoreapp3.1;net48;net472;net462;net452;</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<RootNamespace />
<LangVersion>latest</LangVersion>
<NoWarn Condition=" '$(Configuration)' == 'Debug' ">$(NoWarn);NETSDK1138</NoWarn>
<NoWarn Condition=" '$(Configuration)' == 'Release' ">$(NoWarn);CS1591;NETSDK1138</NoWarn>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DocumentationFile>$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<Import Project="asset/props/package.props"/>
<Import Project="asset/props/misc.props"/>
<Import Project="asset/version.props"/>
<Import Project="asset/version.dev.props"/>
<ItemGroup>
<PackageReference Include="SourceLink.Create.CommandLine" Version="2.8.3" PrivateAssets="All"/>
<PackageReference Include="DotNetCore.SourceLink.Environment" Version="2.2.0" />
</ItemGroup>
</Project>