-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproducts.html
41 lines (40 loc) · 1.53 KB
/
products.html
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
---
layout: page
title: Products
products: [
{
name: AgileMapper,
image: AgileMapper.gif,
description: [
'Powerful, fast, zero-configuration object mapper',
'Transforms, updates, merges, deep clones and projects queries',
'Viewable execution plans',
'<a href="https://nuget.org/packages/AgileObjects.AgileMapper">NuGet</a> package for .NET 3.5+ and .NET Standard 1.0+'
]
},
{
name: ReadableExpressions,
image: ReadableExpressions.gif,
description: [
'Converts <a href="https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/concepts/expression-trees" target="_blank">Expression</a> objects into readable source code',
'<a href="https://marketplace.visualstudio.com/items?itemName=vs-publisher-1232914.ReadableExpressionsVisualizers" target="_blank">Debugger visualizers</a> for Visual Studio 2010+',
'<a href="https://nuget.org/packages/AgileObjects.ReadableExpressions">NuGet</a> package for .NET 3.5+ and .NET Standard 1.0+'
]
},
{
name: NetStandardPolyfills,
image: NetStandardPolyfills.gif,
description: [
'80+ Type and reflection extension methods',
'Polyfills for .NET 3.5, .NET 4.0 and .NET Standard 1.0',
'<a href="https://nuget.org/packages/AgileObjects.NetStandardPolyfills">NuGet</a> package for .NET 3.5+ and .NET Standard 1.0+'
]
}
]
---
<!-- Products -->
<div id="ao-products" class="featured-products">
{% for product in page.products %}
{% include product-box.html %}
{% endfor %}
</div>