RDServer.csproj 4.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" 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>{682CCD3C-6FC5-49C7-BBE9-8CF0FD663EFE}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <RootNamespace>RDServer</RootNamespace>
  10. <AssemblyName>RDServer</AssemblyName>
  11. <TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  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. <PropertyGroup>
  35. <ApplicationIcon>Server_72px.ico</ApplicationIcon>
  36. </PropertyGroup>
  37. <ItemGroup>
  38. <Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  39. <SpecificVersion>False</SpecificVersion>
  40. <HintPath>..\NetworkRemoteControlLib\Newtonsoft.Json.dll</HintPath>
  41. </Reference>
  42. <Reference Include="System" />
  43. <Reference Include="System.Core" />
  44. <Reference Include="System.Xml.Linq" />
  45. <Reference Include="System.Data.DataSetExtensions" />
  46. <Reference Include="Microsoft.CSharp" />
  47. <Reference Include="System.Data" />
  48. <Reference Include="System.Deployment" />
  49. <Reference Include="System.Drawing" />
  50. <Reference Include="System.Net.Http" />
  51. <Reference Include="System.Windows.Forms" />
  52. <Reference Include="System.Xml" />
  53. </ItemGroup>
  54. <ItemGroup>
  55. <Compile Include="ServerMain.cs">
  56. <SubType>Form</SubType>
  57. </Compile>
  58. <Compile Include="ServerMain.Designer.cs">
  59. <DependentUpon>ServerMain.cs</DependentUpon>
  60. </Compile>
  61. <Compile Include="Program.cs" />
  62. <Compile Include="Properties\AssemblyInfo.cs" />
  63. <EmbeddedResource Include="Properties\Resources.resx">
  64. <Generator>ResXFileCodeGenerator</Generator>
  65. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  66. <SubType>Designer</SubType>
  67. </EmbeddedResource>
  68. <Compile Include="Properties\Resources.Designer.cs">
  69. <AutoGen>True</AutoGen>
  70. <DependentUpon>Resources.resx</DependentUpon>
  71. </Compile>
  72. <EmbeddedResource Include="ServerMain.resx">
  73. <DependentUpon>ServerMain.cs</DependentUpon>
  74. </EmbeddedResource>
  75. <None Include="Properties\Settings.settings">
  76. <Generator>SettingsSingleFileGenerator</Generator>
  77. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  78. </None>
  79. <Compile Include="Properties\Settings.Designer.cs">
  80. <AutoGen>True</AutoGen>
  81. <DependentUpon>Settings.settings</DependentUpon>
  82. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  83. </Compile>
  84. </ItemGroup>
  85. <ItemGroup>
  86. <None Include="App.config" />
  87. </ItemGroup>
  88. <ItemGroup>
  89. <Content Include="Server_72px.ico" />
  90. </ItemGroup>
  91. <ItemGroup>
  92. <ProjectReference Include="..\..\..\LYFZ.WinAPI\LYFZ.WinApi.csproj">
  93. <Project>{c3e180f9-433d-4af7-8ec4-005b3f42f4d0}</Project>
  94. <Name>LYFZ.WinApi</Name>
  95. </ProjectReference>
  96. </ItemGroup>
  97. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  98. </Project>