119
119
<LastGenOutput >Strings.Designer.cs</LastGenOutput >
120
120
</EmbeddedResource >
121
121
</ItemGroup >
122
- <ItemGroup >
123
- <Content Include =" about_PSScriptAnalyzer.help.txt" />
124
- </ItemGroup >
125
122
<Import Project =" $(MSBuildToolsPath)\Microsoft.CSHARP.Targets" />
126
123
<ProjectExtensions >
127
124
<VisualStudio AllowExistingFolder =" true" />
128
125
</ProjectExtensions >
129
126
<PropertyGroup >
130
- <PostBuildEvent >
131
- if "PSV3 Release" == "$(ConfigurationName)" (
127
+ <PostBuildEvent >if "PSV3 Release" == "$(ConfigurationName)" (
132
128
GOTO psv3Release
133
129
) else if "PSV3 Debug" == "$(ConfigurationName)" (
134
130
GOTO psv3Debug
@@ -138,34 +134,31 @@ if "PSV3 Release" == "$(ConfigurationName)" (
138
134
139
135
:psv3Release
140
136
:psv3Debug
141
- if not exist "$(SolutionDir)$(SolutionName)\PSv3" (
142
- mkdir "$(SolutionDir)$(SolutionName)\PSv3"
137
+ if not exist "$(SolutionDir)out\ $(SolutionName)\PSv3" (
138
+ mkdir "$(SolutionDir)out\ $(SolutionName)\PSv3"
143
139
)
144
- copy /y "$(TargetPath)" "$(SolutionDir)$(SolutionName)\PSv3"
140
+ copy /y "$(TargetPath)" "$(SolutionDir)out\ $(SolutionName)\PSv3"
145
141
GOTO end
146
142
147
143
148
144
:default
149
- if not exist "$(SolutionDir)$(SolutionName)" (
150
- mkdir "$(SolutionDir)$(SolutionName)"
145
+ if not exist "$(SolutionDir)out\ $(SolutionName)" (
146
+ mkdir "$(SolutionDir)out\ $(SolutionName)"
151
147
)
152
- copy /y "$(TargetPath)" "$(SolutionDir)$(SolutionName)"
148
+ copy /y "$(TargetPath)" "$(SolutionDir)out\ $(SolutionName)"
153
149
GOTO end
154
150
155
151
:end
156
- copy /y "$(ProjectDir)*.ps1xml" "$(SolutionDir)$(SolutionName)"
157
- copy /y "$(ProjectDir)*.psm1" "$(SolutionDir)$(SolutionName)"
158
- copy /y "$(ProjectDir)*.psd1" "$(SolutionDir)$(SolutionName)"
159
- if not exist "$(SolutionDir)$(SolutionName)\Settings" (
160
- mkdir "$(SolutionDir)$(SolutionName)\Settings"
152
+ copy /y "$(ProjectDir)*.ps1xml" "$(SolutionDir)out\ $(SolutionName)"
153
+ copy /y "$(ProjectDir)*.psm1" "$(SolutionDir)out\ $(SolutionName)"
154
+ copy /y "$(ProjectDir)*.psd1" "$(SolutionDir)out\ $(SolutionName)"
155
+ if not exist "$(SolutionDir)out\ $(SolutionName)\Settings" (
156
+ mkdir "$(SolutionDir)out\ $(SolutionName)\Settings"
161
157
)
162
- copy /y "$(ProjectDir)Settings\*.psd1" "$(SolutionDir)$(SolutionName)\Settings"
163
- if not exist "$(SolutionDir)$(SolutionName)\en-US" (
164
- mkdir "$(SolutionDir)$(SolutionName)\en-US"
158
+ copy /y "$(ProjectDir)Settings\*.psd1" "$(SolutionDir)out\ $(SolutionName)\Settings"
159
+ if not exist "$(SolutionDir)out\ $(SolutionName)\en-US" (
160
+ mkdir "$(SolutionDir)out\ $(SolutionName)\en-US"
165
161
)
166
- copy /y "$(ProjectDir)about_*.help.txt" "$(SolutionDir)$(SolutionName)\en-US"
167
- copy /y "$(ProjectDir)*Help.xml" "$(SolutionDir)$(SolutionName)\en-US"
168
-
169
- </PostBuildEvent >
162
+ copy /y "$(SolutionDir)docs\about_*.help.txt" "$(SolutionDir)out\$(SolutionName)\en-US"</PostBuildEvent >
170
163
</PropertyGroup >
171
164
</Project >
0 commit comments