Service.csproj 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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>{079E8119-388C-4676-964E-0B8C5324F770}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Service</RootNamespace>
  11. <AssemblyName>Service</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. <Prefer32Bit>false</Prefer32Bit>
  40. </PropertyGroup>
  41. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  42. <PlatformTarget>AnyCPU</PlatformTarget>
  43. <DebugType>pdbonly</DebugType>
  44. <Optimize>true</Optimize>
  45. <OutputPath>bin\Release\</OutputPath>
  46. <DefineConstants>TRACE</DefineConstants>
  47. <ErrorReport>prompt</ErrorReport>
  48. <WarningLevel>4</WarningLevel>
  49. <Prefer32Bit>false</Prefer32Bit>
  50. </PropertyGroup>
  51. <PropertyGroup>
  52. <StartupObject>Service.Program</StartupObject>
  53. </PropertyGroup>
  54. <ItemGroup>
  55. <Reference Include="System" />
  56. <Reference Include="System.Core" />
  57. <Reference Include="System.Windows.Forms" />
  58. <Reference Include="System.Xml.Linq" />
  59. <Reference Include="System.Data.DataSetExtensions" />
  60. <Reference Include="Microsoft.CSharp" />
  61. <Reference Include="System.Data" />
  62. <Reference Include="System.ServiceProcess" />
  63. <Reference Include="System.Xml" />
  64. </ItemGroup>
  65. <ItemGroup>
  66. <Compile Include="ZeroTierOneService.cs">
  67. <SubType>Component</SubType>
  68. </Compile>
  69. <Compile Include="ZeroTierOneService.Designer.cs">
  70. <DependentUpon>ZeroTierOneService.cs</DependentUpon>
  71. </Compile>
  72. <Compile Include="Program.cs" />
  73. <Compile Include="Properties\AssemblyInfo.cs" />
  74. </ItemGroup>
  75. <ItemGroup>
  76. <None Include="App.config" />
  77. </ItemGroup>
  78. <ItemGroup>
  79. <EmbeddedResource Include="ZeroTierOneService.resx">
  80. <DependentUpon>ZeroTierOneService.cs</DependentUpon>
  81. </EmbeddedResource>
  82. </ItemGroup>
  83. <ItemGroup>
  84. <BootstrapperPackage Include=".NETFramework,Version=v4.5">
  85. <Visible>False</Visible>
  86. <ProductName>Microsoft .NET Framework 4.5 %28x86 and x64%29</ProductName>
  87. <Install>true</Install>
  88. </BootstrapperPackage>
  89. <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
  90. <Visible>False</Visible>
  91. <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
  92. <Install>false</Install>
  93. </BootstrapperPackage>
  94. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  95. <Visible>False</Visible>
  96. <ProductName>.NET Framework 3.5 SP1</ProductName>
  97. <Install>false</Install>
  98. </BootstrapperPackage>
  99. </ItemGroup>
  100. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  101. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  102. Other similar extension points exist, see Microsoft.Common.targets.
  103. <Target Name="BeforeBuild">
  104. </Target>
  105. <Target Name="AfterBuild">
  106. </Target>
  107. -->
  108. </Project>