Page 1 of 1

Troubleshooting Generate Process

Posted: Tue Mar 28, 2017 9:28 am
by raymueller

I am discovering that an application that I am working on has a generated error which I can see in the Generate Scripts dialog window however the information in the dialog scrolls to fast be read before the dialog window closes.

How can I capture or is this information captured in a log?

Thank you
Ray


Re: Troubleshooting Generate Process

Posted: Tue Mar 28, 2017 11:16 am
by motfs

If there is generation error, the popup window will not close until you press the button again. You may try to delete template cache (click Tools -> Delete Template Cache) to try again.

Or the error is from compiling the project?


Re: Troubleshooting Generate Process

Posted: Wed Mar 29, 2017 10:15 am
by raymueller

I am fairly certain that it is occurring during the compile process.

I was able to capture a video of the build process which produced the MSB1011 error which I addressed which did fix the issue.

Thanks
Ray


Re: Troubleshooting Generate Process

Posted: Wed Mar 29, 2017 11:14 am
by Webmaster

Go to the project folder, open a command prompt and run the following commands yourself and see the messages:

dotnet restore
dotnet run

Read doc on how to use .NET Command Line Interface:
https://github.com/dotnet/cli


Re: Troubleshooting Generate Process

Posted: Thu Mar 30, 2017 7:24 am
by raymueller

Thank you. This is good information.

Ray