-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcommon.props
More file actions
52 lines (47 loc) · 2.08 KB
/
common.props
File metadata and controls
52 lines (47 loc) · 2.08 KB
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
47
48
49
50
51
52
<Project>
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Version>4.8.0-beta00018</Version>
<Authors>damon</Authors>
<Company>Nerosoft Co., Ltd.</Company>
<Copyright>© 2018-2023 Nerosoft. All Rights Reserved.</Copyright>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<LangVersion>latest</LangVersion>
<Description>Lucene.Net.Jieba is an analyzer tools for lucene.net which is kind to chinese</Description>
<Configurations>Debug;Release;Product</Configurations>
<PackageTags>Analyzer Segment JIEba.net</PackageTags>
<PackageProjectUrl>https://github.com/Codespilot/Lucene.Net.Jieba/</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
</PropertyGroup>
<PropertyGroup>
<LuceneVersion>4.8.0-beta00016</LuceneVersion>
<FileProvidersEmbeddedVersion>7.0.13</FileProvidersEmbeddedVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)'=='Debug' ">
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)'=='Release' ">
<DebugType>pdbonly</DebugType>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<NoWarn>1591</NoWarn>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)'=='Product' ">
<DebugType>pdbonly</DebugType>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<NoWarn>1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<Using Include="System" />
<Using Include="System.Collections" />
<Using Include="System.Collections.Generic" />
<Using Include="System.Linq" />
<Using Include="System.Text" />
<Using Include="System.Threading" />
<Using Include="System.Threading.Tasks" />
</ItemGroup>
</Project>