| 325 | } |
| 326 | |
| 327 | String CookingData::GetDotnetCommandArg() const |
| 328 | { |
| 329 | int32 version = Tools->GetDotnetVersion(); |
| 330 | if (version == 0) |
| 331 | return String::Empty; |
| 332 | return String::Format(TEXT("-dotnet={}"), version); |
| 333 | } |
| 334 | |
| 335 | void CookingData::StepProgress(const String& info, const float stepProgress) const |
| 336 | { |
no test coverage detected