I'm trying to create a TFS build definition for a WCF service I'm working on. When I go to set the "Items to Build\Projects to Build," I can't choose any .*proj or .sln file. The source for the service is under the "Visual Studio\WebSites\SERVICE_NAME" directory which does not have a .proj or .sln file.
I've been looking around for any material on the matter and nothing seems to be relevant to my situation.
相关问题
- How to make a .svc file write to asp.net Trace.axd
- Getting error: File extension specified '.webt
- WCF Service Using Client Certificates Requires Ano
- Using TFS command line tf.exe how can I copy a rep
- WCF error with net.tcp "The service endpoint faile
相关文章
- WCF发布Windows服务 POST方式报错 GET方式没有问题 应该怎么解决?
- Handling ffmpeg library interface change when upgr
- XCopy or MOVE do not work when a WCF Service runs
- Build errors of missing packages in Visual Studio
- Is it possible to do a “destroy history” in TFS?
- Could not find default endpoint element that refer
- The 'DbProviderFactories' section can only
- Forcing a TFS2010 workflow build to FAIL instead o
You have chosen to use a Web Site "project". That was a mistake.
Web sites are not projects. They therefore do not have project files and do not build.
I strongly recommend never using web sites for any serious work. Use a Web Application Project instead (File->New Project and choose "WCF Service Application").
Don't use them for web applications, either.