Philip Pittle
Philip Pittle
From [StackOverflow question](https://stackoverflow.com/questions/63348336/aws-cdk-init-for-an-existing-project/63352797#63352797), add support to add a CDK project to an existing solution. Currently, `cdk init` will fail if run in a directory that already contains a solution (or...
Does DAsync change the timing of when events fire? DAsync will intercept the invocation of an event in order to marshall/proxy (?) it over to a different service, but DAsync...
Curious best practice or pitfalls around wanting to have my event handlers be async: ```csharp ICustomerManagementService service; service.CustomerRegistered += async (info) => await ... ``` This will require the event...
The existing tests for [`httppyaload-trait`](https://awslabs.github.io/smithy/1.0/spec/core/http-traits.html#httppayload-trait): https://github.com/awslabs/smithy/blob/main/smithy-aws-protocol-tests/model/restJson1/http-payload.smithy Existing tests do not cover the Serialization rule: > When a string ... member is referenced, the raw value is serialized as the body...
Fixes #1492 ## Changes A recent change to the AWS SDK implementation of SQS client changes wireline protocol from XML to Json. This causes the SDK's internal request pipeline to...
# Bug report A user can select a protocol and port to use, for example **OpenVPN TCP 443**. However, if a server is unable to connect on this protocol/port, the...
Given an Attribute: ``` public class CustomAttribute : Attribute { public CustomAttribute(Type example){} public Type OtherType {get;set;} } ``` Given a Mixin: ``` public class Mixin { [CustomAttribute(typeof(object), OtherType =...
[It was reported](https://github.com/ppittle/pMixins/issues/33#issuecomment-67338504) that `DisableCodeGeneration` attribute is removing Mixin code behind files on build. This should **not** occur.
pMixins tries to recompile on every ItemAdded event. If the user is doing a batch ItemAdd, this will severely delay the operation. Perhaps add a delay timer and event aggregation?
This should be allowed: ``` public class Mixin1 { public int Number{ get{ return 42;} } } public class Mixin2 { public int OtherNumber{ get{ return 24;} } } [pMixin(Mixin...