forked from espertechinc/nesper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
executable file
·68 lines (58 loc) · 2.5 KB
/
Directory.Build.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<Project>
<PropertyGroup>
<Language>en-US</Language>
<LangVersion>8.0</LangVersion>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageTags>NEsper Esper ESP CEP</PackageTags>
<PackageCopyright>Copyright (C) 2014-2019 Espertech. All rights reserved.</PackageCopyright>
<PackageProjectUrl>http://www.espertech.com/esper</PackageProjectUrl>
<PackageLicenseUrl>http://www.espertech.com/esper/esper-license-and-trademark/</PackageLicenseUrl>
<IconUrl>http://static.espertech.com/espertech_logo.png</IconUrl>
<Copyright>Espertech, 2014-2019</Copyright>
<RepositoryType>Github</RepositoryType>
</PropertyGroup>
<PropertyGroup>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup>
<VersionPrefix Condition="'$(VersionPrefix)' == ''">8.9.0</VersionPrefix>
<VersionSuffix Condition="'$(VersionSuffix)' == ''"></VersionSuffix>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
<DefineConstants>TRACE;DEBUG;</DefineConstants>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
<Optimize>false</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<DefineConstants/>
<DebugType>pdbonly</DebugType>
<DebugSymbols>true</DebugSymbols>
<Optimize>true</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)'=='net472'">
<NetFramework>true</NetFramework>
<DefineConstants>$(DefineConstants);NETFRAMEWORK;NET472;</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)'=='netcoreapp3.1'">
<NetCore>true</NetCore>
<DefineConstants>$(DefineConstants);NETCORE;</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)'=='net8.0'">
<NetCore>true</NetCore>
<DefineConstants>$(DefineConstants);NETCORE;NET5;NET6;NET7;NET8;</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)'=='net7.0'">
<NetCore>true</NetCore>
<DefineConstants>$(DefineConstants);NETCORE;NET5;NET6;NET7;</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)'=='net6.0'">
<NetCore>true</NetCore>
<DefineConstants>$(DefineConstants);NETCORE;NET5;NET6;</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)'=='net5.0'">
<NetCore>true</NetCore>
<DefineConstants>$(DefineConstants);NETCORE;NET5;</DefineConstants>
</PropertyGroup>
</Project>