John Tsombakos

Results 76 comments of John Tsombakos

Code was actually written in INFO-BASIC, part of Prime Information (back in the early 80's). It went through some updates when we transitioned to an IBM RS/6000 with Universe and...

You're welcome. I used Info-Basic and VMark Universe basic for over 19 years at a previous company, long since gone. I came across a backup of our software catalog that...

I'll try to get some sample - this is an internal app I'm trying to update. In the simple sample app that I attached to another issue has the generated...

I just found this in the solution explorer: ![image](https://github.com/DamianEdwards/RazorSlices/assets/13488/79b177c7-d068-46e7-8e78-eea33318ebea)

Here is a sample that attempts to use RazorSlices in a library project. The source generator does not run so the generated files are not there, so cannot create the...

Yep. That fixes the source generation. But I'm getting this error on build - ![image](https://github.com/DamianEdwards/RazorSlices/assets/13488/0843c9be-42e0-44b7-8865-d2c072d90ad3) Nevermind. My error - I had renames the class. Ok now. Thanks! I'll try this...

One step forward... I can't seem to create the Slice - the generated class isn't found: ![image](https://github.com/DamianEdwards/RazorSlices/assets/13488/5fbd9073-fd7a-41d3-9094-464d1ee03acf) I'd expect to see a "Slices.Hello" in there? and looking at the generated...

Again. Nevermind. Closing the solution and reopen it got Visual Studio to wake up.

Now. ![image](https://github.com/DamianEdwards/RazorSlices/assets/13488/a9185f0b-5897-4331-a0dc-d9ed57883061)

Quick followup, adding a new endpoint: ``` app.MapGet("/test", () => Results.Extensions.RazorSlice(new TestClass())); ``` Does build and work without exception. but again, I had to add the `net8test` namespace to get...