Ben Callaghan

Results 21 comments of Ben Callaghan

I found another issue, which I think I can fix. One of my XML messages contained an illegal control character `` inside the text of an element. This caused an...

Thinking out loud here: the generator would need to do the following. 1. Move the project's files to the new directory 2. Update the `.csproj` of every project that references...

Should this generator also support changing an application to a library (or vice versa)? I've got a few console applications that I want to change to simple libraries.

Two other things this generator might need to do 1. Update the solution folder path (when used with a Visual Studio solution) 2. Update the Nx project name (which currently...

So you plan on using `@nrwl/workspace:move` do some of the heavy lifting? I wasn't sure if we could re-use the logic from that generator.

The existing `@nrwl/workspace:move` generator crashes when used with an nx-dotnet project. ```sh > Executing task: npx nx generate @nrwl/workspace:move new --projectName=old-common --no-updateImportPath --no-interactive --dry-run < > NX Generating @nrwl/workspace:move >...

This behavior is caused by the shell scraping out the quotes before it reaches Nx or the test generator. The string received by the generator is `XPlat Code Coverage` without...

This seems like a good fit for the MemberVisitor action that can be specified on the Generator. I tried to use the visitor pattern to configure `xs:date` as SQL `date`...

@mganss Yes, I can now configure the column type of the `Nullable` properties through `MemberVisitor`. Thanks!

@LiorBanai Serilog can produce files in many different formats, depending on the developer's configuration settings. The log file I posted is in "compact JSON" format. The log viewer in this...