6 lines
181 B
PowerShell
6 lines
181 B
PowerShell
|
|
param($installPath, $toolsPath, $package, $project)
|
||
|
|
|
||
|
|
foreach ($fontFile in $project.ProjectItems.Item("fonts").ProjectItems)
|
||
|
|
{
|
||
|
|
$fontFile.Properties.Item("BuildAction").Value = 2;
|
||
|
|
}
|