annotate Implab/Implab.csproj @ 255:b00441e04738 v3

Adde workaround to the behaviour of the logical operations stack in conjuction with async/await methods
author cin
date Wed, 04 Apr 2018 15:38:48 +0300
parents 34df34841225
children 547a2fc0d93e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
240
fa6cbf4d8841 refactoring, moving to dotnercore, simplifying promises
cin
parents: 237
diff changeset
1 <Project Sdk="Microsoft.NET.Sdk">
fa6cbf4d8841 refactoring, moving to dotnercore, simplifying promises
cin
parents: 237
diff changeset
2
2
aa367305156b small fixes
cin
parents: 0
diff changeset
3 <PropertyGroup>
253
34df34841225 Implab.Diagnostics drafts
cin
parents: 240
diff changeset
4 <Authors>Sergey Smirnov</Authors>
34df34841225 Implab.Diagnostics drafts
cin
parents: 240
diff changeset
5 <Title>Implab library</Title>
34df34841225 Implab.Diagnostics drafts
cin
parents: 240
diff changeset
6 <Description>Provides some helper clesses like XML serialization helpers, JSON XML reader,
34df34841225 Implab.Diagnostics drafts
cin
parents: 240
diff changeset
7 JSON pull-parser, ECMA-style promises, lightweight synchonization routines Signal
34df34841225 Implab.Diagnostics drafts
cin
parents: 240
diff changeset
8 and SharedLock, Trace helpers on top of System.Diagnostics, ObjectPool etc.
34df34841225 Implab.Diagnostics drafts
cin
parents: 240
diff changeset
9 </Description>
34df34841225 Implab.Diagnostics drafts
cin
parents: 240
diff changeset
10 <Copyright>2012-2018 Sergey Smirnov</Copyright>
34df34841225 Implab.Diagnostics drafts
cin
parents: 240
diff changeset
11 <LicenseUrl>https://opensource.org/licenses/BSD-2-Clause</LicenseUrl>
34df34841225 Implab.Diagnostics drafts
cin
parents: 240
diff changeset
12 <ProjectUrl>https://implab.org</ProjectUrl>
34df34841225 Implab.Diagnostics drafts
cin
parents: 240
diff changeset
13 <RepositoryUrl>https://hg.implab.org/pub/ImplabNet/</RepositoryUrl>
255
b00441e04738 Adde workaround to the behaviour of the logical operations stack in conjuction
cin
parents: 253
diff changeset
14 <TargetFrameworks>netstandard2.0;net46</TargetFrameworks>
b00441e04738 Adde workaround to the behaviour of the logical operations stack in conjuction
cin
parents: 253
diff changeset
15 <FrameworkPathOverride Condition="'$(TargetFramework)'=='net46' and '$(OSTYPE)'=='linux'">/usr/lib/mono/4.5/</FrameworkPathOverride>
b00441e04738 Adde workaround to the behaviour of the logical operations stack in conjuction
cin
parents: 253
diff changeset
16 <DefineConstants Condition="'$(TargetFramework)'=='net46'">NETFX_TRACE_BUG;$(DefineConstants)</DefineConstants>
234
8dd666e6b6bf Added implab nuget spec
cin
parents: 233
diff changeset
17 </PropertyGroup>
240
fa6cbf4d8841 refactoring, moving to dotnercore, simplifying promises
cin
parents: 237
diff changeset
18
fa6cbf4d8841 refactoring, moving to dotnercore, simplifying promises
cin
parents: 237
diff changeset
19 </Project>