Foghorn.WindowsService.csproj 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{1AF68C16-D92A-44C4-9BA0-1635A50A403A}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Foghorn.WindowsService</RootNamespace>
  11. <AssemblyName>Foghorn.WindowsService</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <PlatformTarget>AnyCPU</PlatformTarget>
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <PlatformTarget>AnyCPU</PlatformTarget>
  27. <DebugType>pdbonly</DebugType>
  28. <Optimize>true</Optimize>
  29. <OutputPath>bin\Release\</OutputPath>
  30. <DefineConstants>TRACE</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. </PropertyGroup>
  34. <ItemGroup>
  35. <Reference Include="System" />
  36. <Reference Include="System.Configuration.Install" />
  37. <Reference Include="System.Core" />
  38. <Reference Include="System.Management" />
  39. <Reference Include="System.ServiceModel" />
  40. <Reference Include="System.Xml.Linq" />
  41. <Reference Include="System.Data.DataSetExtensions" />
  42. <Reference Include="Microsoft.CSharp" />
  43. <Reference Include="System.Data" />
  44. <Reference Include="System.ServiceProcess" />
  45. <Reference Include="System.Xml" />
  46. </ItemGroup>
  47. <ItemGroup>
  48. <Compile Include="FoghornWindowsService.cs">
  49. <SubType>Component</SubType>
  50. </Compile>
  51. <Compile Include="FoghornWindowsService.Designer.cs">
  52. <DependentUpon>FoghornWindowsService.cs</DependentUpon>
  53. </Compile>
  54. <Compile Include="Program.cs" />
  55. <Compile Include="ProjectInstaller.cs">
  56. <SubType>Component</SubType>
  57. </Compile>
  58. <Compile Include="ProjectInstaller.Designer.cs">
  59. <DependentUpon>ProjectInstaller.cs</DependentUpon>
  60. </Compile>
  61. <Compile Include="Properties\AssemblyInfo.cs" />
  62. </ItemGroup>
  63. <ItemGroup>
  64. <None Include="App.config" />
  65. </ItemGroup>
  66. <ItemGroup>
  67. <ProjectReference Include="..\Foghorn.Core\Foghorn.Core.csproj">
  68. <Project>{fe7cc95c-6d69-4a13-af27-aaf125e89dd8}</Project>
  69. <Name>Foghorn.Core</Name>
  70. </ProjectReference>
  71. <ProjectReference Include="..\Foghorn.WcfService\Foghorn.WcfService.csproj">
  72. <Project>{15b3e0d2-6217-493a-a690-158c497f5318}</Project>
  73. <Name>Foghorn.WcfService</Name>
  74. </ProjectReference>
  75. </ItemGroup>
  76. <ItemGroup>
  77. <EmbeddedResource Include="ProjectInstaller.resx">
  78. <DependentUpon>ProjectInstaller.cs</DependentUpon>
  79. </EmbeddedResource>
  80. </ItemGroup>
  81. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  82. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  83. Other similar extension points exist, see Microsoft.Common.targets.
  84. <Target Name="BeforeBuild">
  85. </Target>
  86. <Target Name="AfterBuild">
  87. </Target>
  88. -->
  89. </Project>