Powershell を使用して、Team Foundation Server 2010 のファイルの "ANSI NULL" プロパティを変更できるようにする必要があります。
cls
if ( (Get-PSSnapin -Name Microsoft.TeamFoundation.PowerShell -ErrorAction SilentlyContinue) -eq $null )
{
Add-PSSnapin Microsoft.TeamFoundation.PowerShell
}
[Microsoft.TeamFoundation.Client.TfsTeamProjectCollection] $tfs = get-tfsserver "http://tfsserver.com"
$items = Get-TfsItemProperty -Server $tfs -Item "$/databaseproject/Database/trunk/Database/Stored Procedures" -Recurse | where{$_.ItemType -eq "File"}
foreach($item in $items)
{
#i'm stuck on how to get/change the file item properties
}
基本的に、TFS の .sql ファイルの ANSI NULLS プロパティを ON から OFF に変更したいと考えています。60本くらい交換してます。
ティア!