I am using MSbuild to publish my webservices projects on the command line using the following command:
msbuild.exe MyWebservicesProjectPath\Services.csproj /t:ResolveReferences;_CopyWebApplication /p:Configuration=Release;BuildingProject=true;WebProjectOutputDir=c:\inetpub\wwwroot\webserviceDest;OutDir=c:\inetpub\wwwroot\webserviceDest\
Everything publishes fine except for .xsd files that are located in ProjectName\WebServices\Schema folder. what's happening here?
Thanks.