Merge branch 'jimschubert-csharp/INotifyPropertyChanged'

This commit is contained in:
wing328
2016-09-13 15:59:26 +08:00
10 changed files with 57 additions and 16 deletions

View File

@@ -48,6 +48,8 @@ public class CSharpClientOptionsTest extends AbstractOptionsTest {
times = 1;
clientCodegen.setOptionalEmitDefaultValue(true);
times = 1;
clientCodegen.setGeneratePropertyChanged(true);
times = 1;
}};
}
}

View File

@@ -34,6 +34,7 @@ public class CSharpClientOptionsProvider implements OptionsProvider {
.put(CodegenConstants.DOTNET_FRAMEWORK, "4.x")
.put(CodegenConstants.OPTIONAL_EMIT_DEFAULT_VALUES, "true")
.put(CodegenConstants.HIDE_GENERATION_TIMESTAMP, "true")
.put(CodegenConstants.GENERATE_PROPERTY_CHANGED, "true")
.build();
}