J. Ritchie Carroll

Results 53 comments of J. Ritchie Carroll

Extra info, if I try `dotnet-try --verbose verify` I get the following: ``` Unhandled exception: Clockwise.BudgetExceededException: Budget of 30 seconds exceeded. ``` Could this be related to the fact that...

> > Could this be related to the fact that the projects I am compiling have dependent project assemblies? > > @ritchiecarroll Does it work for you without the project-to-project...

> @ritchiecarroll If you do a `dotnet build` of your backing project, how long does it take to complete? Just moments... 8 seconds? Ran test on a sample: ``` Time...

If useful, here's the full unhandled exception: ``` Unhandled exception: Clockwise.BudgetExceededException: Budget of 30 seconds exceeded. at Clockwise.BudgetExtensions.c__DisplayClass0_0.b__0() at Clockwise.TaskExtensions.CancelAfter(Task task, CancellationToken cancellationToken, Action ifCancelled) at Clockwise.BudgetExtensions.CancelIfExceeds(Task task, Budget budget,...

@jonsequitur ### **_Here you go!!_** This works: ``` '''cs --region source --source-file ./main.package.cs ''' ``` This does not: ``` '''cs --region source --source-file ./main_package.cs ''' ``` Only difference is an...

FYI - more complex examples that reference other project-level assemblies still fail with: ``` 2020-07-30T19:40:09.8422992Z [MLS.Agent.Middleware.ExceptionFilter] ❌ System.InvalidOperationException: No design time or full build available at WorkspaceServer.Packaging.Package.CreateRoslynWorkspace() in F:\workspace\_work\1\s\WorkspaceServer\Packaging\Package.cs:line 372...

Here's a sample repo with an example that works and one that fails, both identical save an underscore in the primary `.cs` file name: https://github.com/ritchiecarroll/dotnet-try-test

I usually use `dotnet-try --verbose` from the `failed` folder to produce error. Interesting that this doesn't work for you. What version are you using? Any other system component versions I...

Well - tried this on another computer, it doesn't replicate there. Whatever confluence of parameters that causes this to fail on my primary system doesn't happen on a secondary system....

OK, after some work, here's an example I can get to fail consistently - at least the first time. This fails consistently from both my test machines. First, re-pull sample...