forked from pomma89/objectpool
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
41 lines (34 loc) · 1.83 KB
/
Directory.Build.props
File metadata and controls
41 lines (34 loc) · 1.83 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
<Project>
<PropertyGroup>
<VersionPrefix>3.2.1</VersionPrefix>
<AssemblyVersion>3.0.0</AssemblyVersion>
</PropertyGroup>
<PropertyGroup Label="NuGet">
<Authors>Ofir Makmal <ofir.makmal@gmail.com>;Alessio Parma <alessio.parma@gmail.com></Authors>
<Copyright>Copyright (c) 2013 Ofir Makmal <ofir.makmal@gmail.com></Copyright>
<PackageReleaseNotes>https://github.com/pomma89/ObjectPool/releases</PackageReleaseNotes>
<PackageIconUrl>http://pomma89.altervista.org/objectpool/logo-128.png</PackageIconUrl>
<PackageProjectUrl>https://github.com/pomma89/ObjectPool</PackageProjectUrl>
<PackageLicenseUrl>http://www.codeproject.com/info/cpol10.aspx</PackageLicenseUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/pomma89/ObjectPool</RepositoryUrl>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard1.0' ">
<DefineConstants>$(DefineConstants);NETSTD10;LIBLOG_PORTABLE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard1.2' ">
<DefineConstants>$(DefineConstants);NETSTD12;LIBLOG_PORTABLE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' ">
<DefineConstants>$(DefineConstants);NETSTD13;LIBLOG_PORTABLE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<DefineConstants>$(DefineConstants);NETSTD20</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'net40' ">
<DefineConstants>$(DefineConstants);NET40;HAS_SERIALIZABLE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'net45' ">
<DefineConstants>$(DefineConstants);NET45;HAS_SERIALIZABLE</DefineConstants>
</PropertyGroup>
</Project>