You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-3Lines changed: 1 addition & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -167,9 +167,7 @@ There are also several features that aren't yet available:
167
167
168
168
## Obtaining the Protobuf definitions
169
169
170
-
This project utilizes git submodules to obtain Protobuf definitions from [durabletask-protobuf](https://github.com/microsoft/durabletask-protobuf). You will need to obtain these to build the project.
171
-
172
-
To get the definitions, run `git submodule update --init --recursive`
170
+
This project utilizes protobuf definitions from [durabletask-protobuf](https://github.com/microsoft/durabletask-protobuf), which are copied (vendored) into this repository under the `src/Grpc` directory. See the corresponding [README.md](./src/Grpc/README.md) for more information about how to update the protobuf definitions.
/// Gets or sets the data converter. Default value is <see cref="JsonDataConverter.Default" />.
@@ -50,7 +51,15 @@ public DataConverter DataConverter
50
51
/// Gets or sets a value indicating whether this client should support entities. If true, all instance ids starting with '@' are reserved for entities,
51
52
/// and validation checks are performed where appropriate.
52
53
/// </summary>
53
-
publicboolEnableEntitySupport{get;set;}
54
+
publicboolEnableEntitySupport
55
+
{
56
+
get=>this.enableEntitySupport;
57
+
set
58
+
{
59
+
this.enableEntitySupport=value;
60
+
this.EntitySupportExplicitlySet=true;
61
+
}
62
+
}
54
63
55
64
/// <summary>
56
65
/// Gets a value indicating whether <see cref="DataConverter" /> was explicitly set or not.
@@ -63,6 +72,11 @@ public DataConverter DataConverter
0 commit comments