Foghorn.WcfService.csproj 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>8.0.50727</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{15B3E0D2-6217-493A-A690-158C497F5318}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>Foghorn.WcfService</RootNamespace>
  12. <AssemblyName>Foghorn.WcfService</AssemblyName>
  13. <ProjectTypeGuids>{3D9AD99F-2412-4246-B90B-4EAA41C64699};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  14. <StartArguments>/client:"WcfTestClient.exe"</StartArguments>
  15. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  16. <WcfConfigValidationEnabled>True</WcfConfigValidationEnabled>
  17. <XsdCodeGenEnabled>True</XsdCodeGenEnabled>
  18. </PropertyGroup>
  19. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  20. <DebugSymbols>true</DebugSymbols>
  21. <DebugType>full</DebugType>
  22. <Optimize>false</Optimize>
  23. <OutputPath>bin\Debug\</OutputPath>
  24. <DefineConstants>DEBUG;TRACE</DefineConstants>
  25. <ErrorReport>prompt</ErrorReport>
  26. <WarningLevel>4</WarningLevel>
  27. </PropertyGroup>
  28. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  29. <DebugType>pdbonly</DebugType>
  30. <Optimize>true</Optimize>
  31. <OutputPath>bin\Release\</OutputPath>
  32. <DefineConstants>TRACE</DefineConstants>
  33. <ErrorReport>prompt</ErrorReport>
  34. <WarningLevel>4</WarningLevel>
  35. </PropertyGroup>
  36. <ItemGroup>
  37. <Reference Include="EntityFramework">
  38. <HintPath>..\packages\EntityFramework.5.0.0\lib\net45\EntityFramework.dll</HintPath>
  39. </Reference>
  40. <Reference Include="Growl.Connector">
  41. <HintPath>..\packages\Growl.0.6\lib\Growl.Connector.dll</HintPath>
  42. </Reference>
  43. <Reference Include="Growl.CoreLibrary">
  44. <HintPath>..\packages\Growl.0.6\lib\Growl.CoreLibrary.dll</HintPath>
  45. </Reference>
  46. <Reference Include="Microsoft.CSharp" />
  47. <Reference Include="NLog">
  48. <HintPath>..\packages\NLog.2.0.0.2000\lib\net40\NLog.dll</HintPath>
  49. </Reference>
  50. <Reference Include="System" />
  51. <Reference Include="System.Core" />
  52. <Reference Include="System.Data" />
  53. <Reference Include="System.Data.Entity" />
  54. <Reference Include="System.Data.Linq" />
  55. <Reference Include="System.Drawing" />
  56. <Reference Include="System.Runtime.Serialization" />
  57. <Reference Include="System.ServiceModel" />
  58. <Reference Include="System.Xml" />
  59. <Reference Include="System.Xml.Linq" />
  60. </ItemGroup>
  61. <ItemGroup>
  62. <Compile Include="IFoghornService.cs" />
  63. <Compile Include="Notifier.cs" />
  64. <Compile Include="Properties\AssemblyInfo.cs" />
  65. <Compile Include="FoghornService.cs" />
  66. <Compile Include="Properties\Settings.Designer.cs">
  67. <AutoGen>True</AutoGen>
  68. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  69. <DependentUpon>Settings.settings</DependentUpon>
  70. </Compile>
  71. </ItemGroup>
  72. <ItemGroup>
  73. <None Include="App.config" />
  74. <Content Include="NLog.config">
  75. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  76. </Content>
  77. <None Include="NLog.xsd">
  78. <SubType>Designer</SubType>
  79. </None>
  80. <None Include="packages.config" />
  81. <None Include="Properties\Settings.settings">
  82. <Generator>SettingsSingleFileGenerator</Generator>
  83. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  84. </None>
  85. </ItemGroup>
  86. <ItemGroup>
  87. <ProjectReference Include="..\Foghorn.Core\Foghorn.Core.csproj">
  88. <Project>{FE7CC95C-6D69-4A13-AF27-AAF125E89DD8}</Project>
  89. <Name>Foghorn.Core</Name>
  90. </ProjectReference>
  91. </ItemGroup>
  92. <ItemGroup>
  93. <Content Include="license.txt" />
  94. </ItemGroup>
  95. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  96. <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\WCF\Microsoft.VisualStudio.ServiceModel.targets" />
  97. <ProjectExtensions>
  98. <VisualStudio>
  99. <FlavorProperties GUID="{3D9AD99F-2412-4246-B90B-4EAA41C64699}">
  100. <WcfProjectProperties>
  101. <AutoStart>True</AutoStart>
  102. </WcfProjectProperties>
  103. </FlavorProperties>
  104. </VisualStudio>
  105. </ProjectExtensions>
  106. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  107. Other similar extension points exist, see Microsoft.Common.targets.
  108. <Target Name="BeforeBuild">
  109. </Target>
  110. <Target Name="AfterBuild">
  111. </Target>
  112. -->
  113. </Project>