Reputation: 23094
I am troubleshooting an issue with updating a service reference in Visual Studio 2013. I want to compare the results in Visual Studio with the results of running svcutil.exe from the command line.
I have 6 Windows SDKs on my machine, 3 of those contain svcutil.exe:
The project targets .NET Framework 4. Which svcutil.exe does Visual Studio 2013 use when generating or updating a service reference?
Upvotes: 1
Views: 3046
Reputation: 21
In the visual studio command prompt, try this command:
C:\Windows\system32>where svcutil.exe
This will give the version that the framework is referring to.
Upvotes: 2