Mercurial > pub > ImplabNet
annotate Implab/Implab.csproj @ 262:f1696cdc3d7a v3 v3.0.8
Added IInitializable.Initialize() overload
Added IRunnable.Start(), IRunnable.Start() overloads
Fixed cancellation of the current operation when Stop() is called
More tests
author | cin |
---|---|
date | Mon, 16 Apr 2018 02:12:39 +0300 |
parents | 547a2fc0d93e |
children | 3a6e18c432be |
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 | 3 <PropertyGroup> |
253 | 4 <Authors>Sergey Smirnov</Authors> |
5 <Title>Implab library</Title> | |
6 <Description>Provides some helper clesses like XML serialization helpers, JSON XML reader, | |
7 JSON pull-parser, ECMA-style promises, lightweight synchonization routines Signal | |
8 and SharedLock, Trace helpers on top of System.Diagnostics, ObjectPool etc. | |
9 </Description> | |
10 <Copyright>2012-2018 Sergey Smirnov</Copyright> | |
262 | 11 <Version>3.0.8</Version> |
12 <PackageLicenseUrl>https://hg.implab.org/pub/ImplabNet/file/tip/Implab/license.txt</PackageLicenseUrl> | |
260 | 13 <PackageProjectUrl>https://implab.org</PackageProjectUrl> |
253 | 14 <RepositoryUrl>https://hg.implab.org/pub/ImplabNet/</RepositoryUrl> |
260 | 15 <RepositoryType>mercurial</RepositoryType> |
16 <PackageTags>IMPLAB;Json pull-parser;Json Xml;async;diagnostics;serialization;</PackageTags> | |
255
b00441e04738
Adde workaround to the behaviour of the logical operations stack in conjuction
cin
parents:
253
diff
changeset
|
17 <TargetFrameworks>netstandard2.0;net46</TargetFrameworks> |
b00441e04738
Adde workaround to the behaviour of the logical operations stack in conjuction
cin
parents:
253
diff
changeset
|
18 <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
|
19 <DefineConstants Condition="'$(TargetFramework)'=='net46'">NETFX_TRACE_BUG;$(DefineConstants)</DefineConstants> |
234 | 20 </PropertyGroup> |
240
fa6cbf4d8841
refactoring, moving to dotnercore, simplifying promises
cin
parents:
237
diff
changeset
|
21 |
fa6cbf4d8841
refactoring, moving to dotnercore, simplifying promises
cin
parents:
237
diff
changeset
|
22 </Project> |