RemoteServer.csproj 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
  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>{9575B080-1230-497F-9120-04D0C1448FF1}</ProjectGuid>
  9. <OutputType>WinExe</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>RemoteServer</RootNamespace>
  12. <AssemblyName>RemoteServer</AssemblyName>
  13. <StartupObject>RemoteServer.Program</StartupObject>
  14. <ApplicationIcon>Server_72px.ico</ApplicationIcon>
  15. <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
  16. <FileUpgradeFlags>
  17. </FileUpgradeFlags>
  18. <OldToolsVersion>2.0</OldToolsVersion>
  19. <UpgradeBackupLocation />
  20. <IsWebBootstrapper>false</IsWebBootstrapper>
  21. <PublishUrl>publish\</PublishUrl>
  22. <Install>true</Install>
  23. <InstallFrom>Disk</InstallFrom>
  24. <UpdateEnabled>false</UpdateEnabled>
  25. <UpdateMode>Foreground</UpdateMode>
  26. <UpdateInterval>7</UpdateInterval>
  27. <UpdateIntervalUnits>Days</UpdateIntervalUnits>
  28. <UpdatePeriodically>false</UpdatePeriodically>
  29. <UpdateRequired>false</UpdateRequired>
  30. <MapFileExtensions>true</MapFileExtensions>
  31. <ApplicationRevision>0</ApplicationRevision>
  32. <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
  33. <UseApplicationTrust>false</UseApplicationTrust>
  34. <BootstrapperEnabled>true</BootstrapperEnabled>
  35. </PropertyGroup>
  36. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  37. <DebugSymbols>true</DebugSymbols>
  38. <DebugType>full</DebugType>
  39. <Optimize>false</Optimize>
  40. <OutputPath>bin\Debug\</OutputPath>
  41. <DefineConstants>DEBUG;TRACE</DefineConstants>
  42. <ErrorReport>prompt</ErrorReport>
  43. <WarningLevel>4</WarningLevel>
  44. <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
  45. </PropertyGroup>
  46. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  47. <DebugType>pdbonly</DebugType>
  48. <Optimize>true</Optimize>
  49. <OutputPath>bin\Release\</OutputPath>
  50. <DefineConstants>TRACE</DefineConstants>
  51. <ErrorReport>prompt</ErrorReport>
  52. <WarningLevel>4</WarningLevel>
  53. <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
  54. </PropertyGroup>
  55. <ItemGroup>
  56. <Reference Include="System" />
  57. <Reference Include="System.Data" />
  58. <Reference Include="System.Deployment" />
  59. <Reference Include="System.Drawing" />
  60. <Reference Include="System.Windows.Forms" />
  61. <Reference Include="System.Xml" />
  62. </ItemGroup>
  63. <ItemGroup>
  64. <Compile Include="frm_Server.cs">
  65. <SubType>Form</SubType>
  66. </Compile>
  67. <Compile Include="frm_Server.Designer.cs">
  68. <DependentUpon>frm_Server.cs</DependentUpon>
  69. </Compile>
  70. <Compile Include="Program.cs" />
  71. <Compile Include="Properties\AssemblyInfo.cs" />
  72. <EmbeddedResource Include="frm_Server.resx">
  73. <SubType>Designer</SubType>
  74. <DependentUpon>frm_Server.cs</DependentUpon>
  75. </EmbeddedResource>
  76. <EmbeddedResource Include="Properties\Resources.resx">
  77. <Generator>ResXFileCodeGenerator</Generator>
  78. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  79. <SubType>Designer</SubType>
  80. </EmbeddedResource>
  81. <Compile Include="Properties\Resources.Designer.cs">
  82. <AutoGen>True</AutoGen>
  83. <DependentUpon>Resources.resx</DependentUpon>
  84. <DesignTime>True</DesignTime>
  85. </Compile>
  86. <None Include="Properties\Settings.settings">
  87. <Generator>SettingsSingleFileGenerator</Generator>
  88. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  89. </None>
  90. <Compile Include="Properties\Settings.Designer.cs">
  91. <AutoGen>True</AutoGen>
  92. <DependentUpon>Settings.settings</DependentUpon>
  93. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  94. </Compile>
  95. </ItemGroup>
  96. <ItemGroup>
  97. <Content Include="Server_72px.ico" />
  98. <None Include="sign.png" />
  99. <None Include="Server_72px.png" />
  100. <None Include="Resources\info.gif" />
  101. <None Include="Resources\Exit.gif" />
  102. <None Include="Resources\Ice.png" />
  103. </ItemGroup>
  104. <ItemGroup>
  105. <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
  106. <Visible>False</Visible>
  107. <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
  108. <Install>false</Install>
  109. </BootstrapperPackage>
  110. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  111. <Visible>False</Visible>
  112. <ProductName>.NET Framework 3.5 SP1</ProductName>
  113. <Install>true</Install>
  114. </BootstrapperPackage>
  115. <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
  116. <Visible>False</Visible>
  117. <ProductName>Windows Installer 3.1</ProductName>
  118. <Install>true</Install>
  119. </BootstrapperPackage>
  120. </ItemGroup>
  121. <ItemGroup>
  122. <ProjectReference Include="..\RemoteControlLib\Common\RemoteControlLib.csproj">
  123. <Project>{025628c8-0fbd-4b13-bec4-38cb800cb670}</Project>
  124. <Name>RemoteControlLib</Name>
  125. </ProjectReference>
  126. </ItemGroup>
  127. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  128. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  129. Other similar extension points exist, see Microsoft.Common.targets.
  130. <Target Name="BeforeBuild">
  131. </Target>
  132. <Target Name="AfterBuild">
  133. </Target>
  134. -->
  135. </Project>