There was an error while loading. Please reload this page.
1 parent bfdce49 commit 7206e84Copy full SHA for 7206e84
1 file changed
java/pom.xml
@@ -182,6 +182,24 @@
182
-->
183
<retryOnError>true</retryOnError>
184
</configuration>
185
+ <executions>
186
+ <execution>
187
+ <!--
188
+ The VS Code Roslyn language server monitors .csproj
189
+ files in the cloned repo at target/copilot-sdk/dotnet/
190
+ and immediately re-creates obj/ metadata after the
191
+ default-clean execution deletes target/. By running a
192
+ second clean in post-clean, the resurrected directories
193
+ are swept away and Roslyn does not recreate them again
194
+ (the .csproj is already gone).
195
+ -->
196
+ <id>post-clean-sweep</id>
197
+ <phase>post-clean</phase>
198
+ <goals>
199
+ <goal>clean</goal>
200
+ </goals>
201
+ </execution>
202
+ </executions>
203
</plugin>
204
<plugin>
205
<groupId>org.apache.maven.plugins</groupId>
0 commit comments