Hello, we have downloaded the new Studio version of Radzen and we are on the evaluation period. We have configured a PC to run SQL server and act as a file server for our application (Blazor, server side). We have two of our work PCs running Blazor Studio and try accessing our server PC to work with our application simultaneously. This is where the problems start. When one PC saves a page, the other PC, which works on a different page, gets weird messages by Blazor Studio that build failed and other similar messages. It feels like Blazor Studio on the first PC locks files preventing the other PC from working at all. Could you help, how do we setup our application so multiple PCs can work the same application simultaneously (through local network)?
I’ve never heard before of such setup. Usually developers are using source control to work on same source. You have history, you can diff changes, etc.
Unfortunately, the customer has made it clear they do not wish development to take place over the internet. This is a very sensitive application which will only be uploaded on a customer's server upon completion. I know GitHub and similar platforms but it would be useful if a team of developers could work with an app on premises!
Most source control systems can work offline (in an intranet). You can find tutorials how to host git or svn on a local server. For example this one: How to set up git server on local network (Windows tutorial) | by Sergey Polezhaev | Medium
We do not plan to support working on a file share by multiple machines - listening for changes on a local share isn't feasible from a technical point of view.
Thank you for your quick response.