winsw.csproj 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.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>9.0.21022</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{0DE77F55-ADE5-43C1-999A-0BC81153B039}</ProjectGuid>
  9. <OutputType>Exe</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>winsw</RootNamespace>
  12. <AssemblyName>winsw</AssemblyName>
  13. <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. <StartupObject>
  16. </StartupObject>
  17. <SignManifests>false</SignManifests>
  18. <SignAssembly>false</SignAssembly>
  19. <FileUpgradeFlags>
  20. </FileUpgradeFlags>
  21. <UpgradeBackupLocation>
  22. </UpgradeBackupLocation>
  23. <OldToolsVersion>3.5</OldToolsVersion>
  24. <PublishUrl>publish\</PublishUrl>
  25. <Install>true</Install>
  26. <InstallFrom>Disk</InstallFrom>
  27. <UpdateEnabled>false</UpdateEnabled>
  28. <UpdateMode>Foreground</UpdateMode>
  29. <UpdateInterval>7</UpdateInterval>
  30. <UpdateIntervalUnits>Days</UpdateIntervalUnits>
  31. <UpdatePeriodically>false</UpdatePeriodically>
  32. <UpdateRequired>false</UpdateRequired>
  33. <MapFileExtensions>true</MapFileExtensions>
  34. <ApplicationRevision>0</ApplicationRevision>
  35. <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
  36. <IsWebBootstrapper>false</IsWebBootstrapper>
  37. <UseApplicationTrust>false</UseApplicationTrust>
  38. <BootstrapperEnabled>true</BootstrapperEnabled>
  39. </PropertyGroup>
  40. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  41. <DebugSymbols>true</DebugSymbols>
  42. <DebugType>full</DebugType>
  43. <Optimize>false</Optimize>
  44. <OutputPath>bin\Debug\</OutputPath>
  45. <DefineConstants>TRACE;DEBUG</DefineConstants>
  46. <ErrorReport>prompt</ErrorReport>
  47. <WarningLevel>4</WarningLevel>
  48. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  49. </PropertyGroup>
  50. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  51. <DebugType>pdbonly</DebugType>
  52. <Optimize>true</Optimize>
  53. <OutputPath>bin\Release\</OutputPath>
  54. <DefineConstants>TRACE</DefineConstants>
  55. <ErrorReport>prompt</ErrorReport>
  56. <WarningLevel>4</WarningLevel>
  57. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  58. <DocumentationFile>
  59. </DocumentationFile>
  60. </PropertyGroup>
  61. <ItemGroup>
  62. <Reference Include="System" />
  63. <Reference Include="System.Drawing" />
  64. <Reference Include="System.Management" />
  65. <Reference Include="System.Data" />
  66. <Reference Include="System.ServiceProcess" />
  67. <Reference Include="System.Windows.Forms" />
  68. <Reference Include="System.Xml" />
  69. </ItemGroup>
  70. <ItemGroup>
  71. <Compile Include="Advapi32.cs" />
  72. <Compile Include="Download.cs" />
  73. <Compile Include="DynamicProxy.cs" />
  74. <Compile Include="Kernel32.cs" />
  75. <Compile Include="LogAppenders.cs" />
  76. <Compile Include="Main.cs">
  77. <SubType>Component</SubType>
  78. </Compile>
  79. <Compile Include="PeriodicRollingCalendar.cs" />
  80. <Compile Include="Properties\AssemblyInfo.cs" />
  81. <Compile Include="ServiceDescriptor.cs" />
  82. <Compile Include="SigIntHelper.cs" />
  83. <Compile Include="Wmi.cs" />
  84. <Compile Include="WmiSchema.cs" />
  85. </ItemGroup>
  86. <ItemGroup>
  87. <Content Include="manifest.xml" />
  88. <Content Include="pom.xml">
  89. <SubType>Designer</SubType>
  90. </Content>
  91. <Content Include="winsw.xml">
  92. <SubType>Designer</SubType>
  93. </Content>
  94. </ItemGroup>
  95. <ItemGroup>
  96. <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
  97. <Visible>False</Visible>
  98. <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
  99. <Install>false</Install>
  100. </BootstrapperPackage>
  101. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  102. <Visible>False</Visible>
  103. <ProductName>.NET Framework 3.5 SP1</ProductName>
  104. <Install>true</Install>
  105. </BootstrapperPackage>
  106. </ItemGroup>
  107. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  108. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  109. Other similar extension points exist, see Microsoft.Common.targets.
  110. <Target Name="BeforeBuild">
  111. </Target>
  112. <Target Name="AfterBuild">
  113. </Target>
  114. -->
  115. <PropertyGroup>
  116. <PostBuildEvent>
  117. </PostBuildEvent>
  118. </PropertyGroup>
  119. </Project>