project-types

WCF Service Library vs Class Library project types

流过昼夜 提交于 2019-12-21 03:29:08
问题 What does a WCF Service Library do that a regular class library doesn't? Edit: I posted my own answer. Am I missing anything? Are they fundamentally both just class libraries with a few template classes added? 回答1: I created both and compared. This is what I found. WCF Service Library adds references to System.Runtime.Serialization and System.ServiceModel . does not contain a reference to System.Data.DataSetExtensions as the Class Library does. contains sample service classes IService1 ,

WCF Service Library vs Class Library project types

久未见 提交于 2019-12-03 09:38:39
What does a WCF Service Library do that a regular class library doesn't? Edit: I posted my own answer. Am I missing anything? Are they fundamentally both just class libraries with a few template classes added? I created both and compared. This is what I found. WCF Service Library adds references to System.Runtime.Serialization and System.ServiceModel . does not contain a reference to System.Data.DataSetExtensions as the Class Library does. contains sample service classes IService1 , CompositeType and Service1 adds app.config with a wsHttpBinding and a mexHttpBinding service endpoint adds

Create MSI or setup project with Visual Studio 2012

a 夏天 提交于 2019-11-26 03:04:53
问题 I create a small application and I would like to create one MSI file. In Visual Studio 2010 you have this project type under: Other Project Types -> Setup and Deployment -> Visual studio Installer -> Setup Project But the only thing you got in Visual Studio 2012 is \"Enable InstallShield Limited Edition\". You can change the .NET Framework, but nothing changes. Why is it not there any more? And how can I get it back? Is there a new way to do this? 回答1: To create setup projects in Visual