annotate Source/Data/Linq/Builder/SequenceConvertPath.cs @ 8:a34cfdde80d6
removed strong signing
added FrameworkPathOverride for linux builds
author |
cin |
date |
Wed, 29 Nov 2017 12:43:52 +0300 |
parents |
f990fcb411a9 |
children |
|
rev |
line source |
0
|
1 using System;
|
|
2 using System.Diagnostics;
|
|
3 using System.Linq.Expressions;
|
|
4
|
|
5 using JetBrains.Annotations;
|
|
6
|
|
7 namespace BLToolkit.Data.Linq.Builder
|
|
8 {
|
|
9 [DebuggerDisplay("Path = {Path}, Expr = {Expr}, Level = {Level}")]
|
|
10 public class SequenceConvertPath
|
|
11 {
|
|
12 [NotNull] public Expression Path;
|
|
13 [NotNull] public Expression Expr;
|
|
14 public int Level;
|
|
15 }
|
|
16 }
|