My question is if the following scenario is possible.
- I have a system (maybe a Docker image) where MSBuild is installed.
- I have a repository which contains my sourcecode (Delphi) and the delphi compiler (directory bin and lib).
- Now I checkout my repository on that system and want to use msbuild to build my application and msbuild should use the compiler from my repository.
The idea behind this is, to have all data in one place which is needed to build my application (sourcecode, resources, compiler, build scripts ...). And I wanted to use MSBuild because there I can build the .dproj file than the .dpr file (with dcc) which contains less information (e.g.: search path).