Skip to content

Commit

Permalink
Fix casing of Properties directory in updateAssemblyInfo.ps1 script
Browse files Browse the repository at this point in the history
  • Loading branch information
mthalman authored and brentschmaltz committed Jul 28, 2023
1 parent e1c6c2a commit 620be62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion updateAssemblyInfo.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Set-Content $versionPath $version
foreach($project in $buildConfiguration.SelectNodes("root/projects/src/project"))
{
$name = $project.name
$assemblyInfoPath = "$root\src\$name\properties\AssemblyInfo.cs"
$assemblyInfoPath = "$root\src\$name\Properties\AssemblyInfo.cs"
Write-Host "assemblyInfoPath: " $assemblyInfoPath

$assemblyInfo = Get-Content $assemblyInfoPath
Expand Down

0 comments on commit 620be62

Please sign in to comment.