We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6af36bd commit 8cfa65eCopy full SHA for 8cfa65e
.build.ps1
@@ -113,7 +113,12 @@ function Get-ResourceTaskParam($project) {
113
@{
114
Inputs = "$project/Strings.resx"
115
Outputs = "$project/Strings.cs"
116
- Jobs = {& "$resourceScript $project"}
+ Data = $project
117
+ Jobs = {
118
+ Push-Location $BuildRoot
119
+ & $resourceScript $Task.Data
120
+ Pop-Location
121
+ }
122
Before = "$project/build"
123
}
124
0 commit comments