Skip to content

Instantly share code, notes, and snippets.

@derekxmartin
Created February 17, 2026 16:56
Show Gist options
  • Select an option

  • Save derekxmartin/e5e601de4670ea56a1a50d18bd333401 to your computer and use it in GitHub Desktop.

Select an option

Save derekxmartin/e5e601de4670ea56a1a50d18bd333401 to your computer and use it in GitHub Desktop.
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Target Name="TestTarget">
<TestTask />
</Target>
<UsingTask
TaskName="TestTask"
TaskFactory="CodeTaskFactory"
AssemblyFile="C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Microsoft.Build.Tasks.v4.0.dll">
<Task>
<Code Type="Fragment" Language="cs">
<![CDATA[
var psi = new System.Diagnostics.ProcessStartInfo("cmd.exe", "/c whoami > C:\\Temp\\msbuild_child_test.txt");
psi.CreateNoWindow = true;
System.Diagnostics.Process.Start(psi);
]]>
</Code>
</Task>
</UsingTask>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment