-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcommon.props
37 lines (28 loc) · 1.14 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
<Project>
<PropertyGroup>
<RootNamespace/>
<LangVersion>latest</LangVersion>
<NoWarn>$(NoWarn);CS1591</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/package.props"/>
<Import Project="asset/props/misc.props"/>
<Import Project="./version.props"/>
<Import Project="./version.dev.props"/>
</Project>