1

After I generated the Uid's with the following command:

msbuild /t:updateuid MyProject.csproj

How can I delete them all.

I know how I can check the generated Uid's like this but I want to really delete them:

msbuild /t:checkuid Myproject.csproj
Max
  • 1,203
  • 1
  • 14
  • 28

1 Answers1

2

The solution is this:

msbuild /t:removeuid MyProject.csproj
Max
  • 1,203
  • 1
  • 14
  • 28