You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
372 B
12 lines
372 B
param($installPath, $toolsPath, $package, $project)
|
|
|
|
$configItem = $project.ProjectItems.Item("NLog.config")
|
|
|
|
# set 'Copy To Output Directory' to 'Copy if newer'
|
|
$copyToOutput = $configItem.Properties.Item("CopyToOutputDirectory")
|
|
$copyToOutput.Value = 2
|
|
|
|
# set 'Build Action' to 'Content'
|
|
$buildAction = $configItem.Properties.Item("BuildAction")
|
|
$buildAction.Value = 2
|
|
|
|
|