The easiest way to manually create a Visual C # project is to use msbuild. You can transfer the VS project file directly to msbuild, and the result will be identical to VS compilation.
msbuild myApp.csproj
Msbuild is part of the framework and, therefore, can be used without using Visual Studio on the machine.
source share