xamarin-macios/tools/mlaunch/nupkg
Rolf Bjarne Kvinge 2972e1b715
Fix some whitespace issues in various files. (#12399)
* Remove BOM
* Add EOL at end of file.
2021-08-11 10:06:46 +02:00
..
build [devops] Publish mlaunch as .nupkg during main build (#11851) 2021-06-10 18:29:59 +02:00
Microsoft.DotNet.Mlaunch.csproj Fix some whitespace issues in various files. (#12399) 2021-08-11 10:06:46 +02:00
README.md [devops] Publish mlaunch as .nupkg during main build (#11851) 2021-06-10 18:29:59 +02:00

README.md

Microsoft.DotNet.Mlaunch

mlaunch is a closed source internal tool used to interact with Apple simulators and devices.

Inside of this NuGet, you can find a MacOS app. The tool itself is a self-contained (includes the mono runtime) .NET command line application.

When installing the NuGet, you can specify where you want the tool extracted by setting the MlaunchDestinationDir property:

<Project Sdk="Microsoft.NET.Sdk">
  <PropertyGroup>
    <TargetFramework>net6.0</TargetFramework>
    <MlaunchDestinationDir>$(IntermediateOutputPath)\mlaunch</MlaunchDestinationDir>
  </PropertyGroup>
  
  <ItemGroup>
    <PackageReference Include="Microsoft.DotNet.Mlaunch" Version="x.y.z" />
  </ItemGroup>
</Project>

When building your project, mlaunch will be extracted to that path (before the Build target).