ZeroTierOneService.csproj 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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>{63D28112-9A56-42FA-9C3E-EF6C58AF09B3}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>ZeroTierOneService</RootNamespace>
  11. <AssemblyName>ZeroTierOneService</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <PublishUrl>publish\</PublishUrl>
  15. <Install>true</Install>
  16. <InstallFrom>Disk</InstallFrom>
  17. <UpdateEnabled>false</UpdateEnabled>
  18. <UpdateMode>Foreground</UpdateMode>
  19. <UpdateInterval>7</UpdateInterval>
  20. <UpdateIntervalUnits>Days</UpdateIntervalUnits>
  21. <UpdatePeriodically>false</UpdatePeriodically>
  22. <UpdateRequired>false</UpdateRequired>
  23. <MapFileExtensions>true</MapFileExtensions>
  24. <ApplicationRevision>0</ApplicationRevision>
  25. <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
  26. <IsWebBootstrapper>false</IsWebBootstrapper>
  27. <UseApplicationTrust>false</UseApplicationTrust>
  28. <BootstrapperEnabled>true</BootstrapperEnabled>
  29. </PropertyGroup>
  30. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  31. <PlatformTarget>AnyCPU</PlatformTarget>
  32. <DebugSymbols>true</DebugSymbols>
  33. <DebugType>full</DebugType>
  34. <Optimize>false</Optimize>
  35. <OutputPath>bin\Debug\</OutputPath>
  36. <DefineConstants>DEBUG;TRACE</DefineConstants>
  37. <ErrorReport>prompt</ErrorReport>
  38. <WarningLevel>4</WarningLevel>
  39. </PropertyGroup>
  40. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  41. <PlatformTarget>AnyCPU</PlatformTarget>
  42. <DebugType>pdbonly</DebugType>
  43. <Optimize>true</Optimize>
  44. <OutputPath>bin\Release\</OutputPath>
  45. <DefineConstants>TRACE</DefineConstants>
  46. <ErrorReport>prompt</ErrorReport>
  47. <WarningLevel>4</WarningLevel>
  48. <Prefer32Bit>false</Prefer32Bit>
  49. </PropertyGroup>
  50. <PropertyGroup>
  51. <StartupObject>ZeroTierOneService.Program</StartupObject>
  52. </PropertyGroup>
  53. <PropertyGroup>
  54. <SignAssembly>false</SignAssembly>
  55. </PropertyGroup>
  56. <PropertyGroup>
  57. <SignManifests>false</SignManifests>
  58. </PropertyGroup>
  59. <PropertyGroup>
  60. <ManifestCertificateThumbprint>5809BB3255B4F32DD93619C1CF26A7DF6C282A89</ManifestCertificateThumbprint>
  61. </PropertyGroup>
  62. <ItemGroup>
  63. <Reference Include="System" />
  64. <Reference Include="System.Core" />
  65. <Reference Include="System.Windows.Forms" />
  66. <Reference Include="System.Xml.Linq" />
  67. <Reference Include="System.Data.DataSetExtensions" />
  68. <Reference Include="Microsoft.CSharp" />
  69. <Reference Include="System.Data" />
  70. <Reference Include="System.ServiceProcess" />
  71. <Reference Include="System.Xml" />
  72. </ItemGroup>
  73. <ItemGroup>
  74. <Compile Include="Service.cs">
  75. <SubType>Component</SubType>
  76. </Compile>
  77. <Compile Include="Service.Designer.cs">
  78. <DependentUpon>Service.cs</DependentUpon>
  79. </Compile>
  80. <Compile Include="Program.cs" />
  81. <Compile Include="Properties\AssemblyInfo.cs" />
  82. </ItemGroup>
  83. <ItemGroup>
  84. <None Include="App.config" />
  85. </ItemGroup>
  86. <ItemGroup>
  87. <EmbeddedResource Include="Service.resx">
  88. <DependentUpon>Service.cs</DependentUpon>
  89. </EmbeddedResource>
  90. </ItemGroup>
  91. <ItemGroup>
  92. <BootstrapperPackage Include=".NETFramework,Version=v4.5">
  93. <Visible>False</Visible>
  94. <ProductName>Microsoft .NET Framework 4.5 %28x86 and x64%29</ProductName>
  95. <Install>true</Install>
  96. </BootstrapperPackage>
  97. <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
  98. <Visible>False</Visible>
  99. <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
  100. <Install>false</Install>
  101. </BootstrapperPackage>
  102. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  103. <Visible>False</Visible>
  104. <ProductName>.NET Framework 3.5 SP1</ProductName>
  105. <Install>false</Install>
  106. </BootstrapperPackage>
  107. </ItemGroup>
  108. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  109. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  110. Other similar extension points exist, see Microsoft.Common.targets.
  111. <Target Name="BeforeBuild">
  112. </Target>
  113. <Target Name="AfterBuild">
  114. </Target>
  115. -->
  116. </Project>