annotate Implab/Implab.csproj @ 264:3a6e18c432be v3

Added XmlToJson xsl transformation. Added JsonXmlReader.CreateJsonXmlReader(...) methods Added SerializationHelpers.SerializeJson/DeserializeJson methods
author cin
date Mon, 16 Apr 2018 18:43:49 +0300
parents f1696cdc3d7a
children 74e048cbaac8
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>
262
f1696cdc3d7a Added IInitializable.Initialize() overload
cin
parents: 260
diff changeset
11 <Version>3.0.8</Version>
f1696cdc3d7a Added IInitializable.Initialize() overload
cin
parents: 260
diff changeset
12 <PackageLicenseUrl>https://hg.implab.org/pub/ImplabNet/file/tip/Implab/license.txt</PackageLicenseUrl>
260
547a2fc0d93e minor fixes
cin
parents: 255
diff changeset
13 <PackageProjectUrl>https://implab.org</PackageProjectUrl>
253
34df34841225 Implab.Diagnostics drafts
cin
parents: 240
diff changeset
14 <RepositoryUrl>https://hg.implab.org/pub/ImplabNet/</RepositoryUrl>
260
547a2fc0d93e minor fixes
cin
parents: 255
diff changeset
15 <RepositoryType>mercurial</RepositoryType>
547a2fc0d93e minor fixes
cin
parents: 255
diff changeset
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
8dd666e6b6bf Added implab nuget spec
cin
parents: 233
diff changeset
20 </PropertyGroup>
240
fa6cbf4d8841 refactoring, moving to dotnercore, simplifying promises
cin
parents: 237
diff changeset
21
264
3a6e18c432be Added XmlToJson xsl transformation.
cin
parents: 262
diff changeset
22 <ItemGroup>
3a6e18c432be Added XmlToJson xsl transformation.
cin
parents: 262
diff changeset
23 <EmbeddedResource Include="Xml\json.xsl"/>
3a6e18c432be Added XmlToJson xsl transformation.
cin
parents: 262
diff changeset
24 </ItemGroup>
3a6e18c432be Added XmlToJson xsl transformation.
cin
parents: 262
diff changeset
25
240
fa6cbf4d8841 refactoring, moving to dotnercore, simplifying promises
cin
parents: 237
diff changeset
26 </Project>