-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.props
46 lines (34 loc) · 1.46 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<Project>
<PropertyGroup>
<TargetFrameworks>net7.0;net6.0;netstandard2.0;</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)' == 'Debug|AnyCPU' ">
<OutputPath>$(MSBuildThisFileDirectory)/output/debug/</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<OutputPath>$(MSBuildThisFileDirectory)/output/release/</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DocumentationFile>$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DocumentationFile>$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<!--移除Xml、DotSettings-->
<None Remove="$(AssemblyName).xml" />
<None Remove="$(AssemblyName).csproj.DotSettings" />
</ItemGroup>
<Import Project="asset/props/target.feature.props"/>
<Import Project="asset/props/sourcelink.env.props"/>
<Import Project="asset/props/package.props"/>
<Import Project="asset/props/misc.props"/>
<Import Project="./version.props"/>
<Import Project="./version.dev.props"/>
</Project>