Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,9 @@ async function run(): Promise<void> {

// set the outputs for the action to the folder path of msbuild
core.setOutput('msbuildPath', toolFolderPath)

// also set MSBUILD environment variable in case a tool needs that variable
core.exportVariable('MSBUILD', toolFolderPath);

// add tool path to PATH
core.addPath(toolFolderPath)
Expand Down