RxMouseServer.csproj 4.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{52568D5F-7C8A-49FE-A28D-119C7CBCC71D}</ProjectGuid>
  9. <OutputType>Exe</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>RxMouseServer</RootNamespace>
  12. <AssemblyName>RxMouseServer</AssemblyName>
  13. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  14. <TargetFrameworkProfile>
  15. </TargetFrameworkProfile>
  16. <FileAlignment>512</FileAlignment>
  17. <SccProjectName>SAK</SccProjectName>
  18. <SccLocalPath>SAK</SccLocalPath>
  19. <SccAuxPath>SAK</SccAuxPath>
  20. <SccProvider>SAK</SccProvider>
  21. </PropertyGroup>
  22. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  23. <PlatformTarget>x86</PlatformTarget>
  24. <DebugSymbols>true</DebugSymbols>
  25. <DebugType>full</DebugType>
  26. <Optimize>false</Optimize>
  27. <OutputPath>bin\Debug\</OutputPath>
  28. <DefineConstants>DEBUG;TRACE</DefineConstants>
  29. <ErrorReport>prompt</ErrorReport>
  30. <WarningLevel>4</WarningLevel>
  31. </PropertyGroup>
  32. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  33. <PlatformTarget>x86</PlatformTarget>
  34. <DebugType>pdbonly</DebugType>
  35. <Optimize>true</Optimize>
  36. <OutputPath>bin\Release\</OutputPath>
  37. <DefineConstants>TRACE</DefineConstants>
  38. <ErrorReport>prompt</ErrorReport>
  39. <WarningLevel>4</WarningLevel>
  40. </PropertyGroup>
  41. <ItemGroup>
  42. <Reference Include="System" />
  43. <Reference Include="System.Core" />
  44. <Reference Include="System.Drawing" />
  45. <Reference Include="System.Messaging" />
  46. <Reference Include="System.Reactive.Core, Version=2.0.20527.0, Culture=neutral, PublicKeyToken=f300afd708cefcd3, processorArchitecture=MSIL">
  47. <SpecificVersion>False</SpecificVersion>
  48. <HintPath>..\References\System.Reactive.Core.dll</HintPath>
  49. </Reference>
  50. <Reference Include="System.Reactive.Interfaces, Version=2.0.0.0, Culture=neutral, PublicKeyToken=f300afd708cefcd3, processorArchitecture=MSIL">
  51. <SpecificVersion>False</SpecificVersion>
  52. <HintPath>..\References\System.Reactive.Interfaces.dll</HintPath>
  53. </Reference>
  54. <Reference Include="System.Reactive.Linq, Version=2.0.20527.0, Culture=neutral, PublicKeyToken=f300afd708cefcd3, processorArchitecture=MSIL">
  55. <SpecificVersion>False</SpecificVersion>
  56. <HintPath>..\References\System.Reactive.Linq.dll</HintPath>
  57. </Reference>
  58. <Reference Include="System.Reactive.PlatformServices, Version=2.0.20527.0, Culture=neutral, PublicKeyToken=f300afd708cefcd3, processorArchitecture=MSIL">
  59. <SpecificVersion>False</SpecificVersion>
  60. <HintPath>..\References\System.Reactive.PlatformServices.dll</HintPath>
  61. </Reference>
  62. <Reference Include="System.Reactive.Runtime.Remoting, Version=2.0.20527.0, Culture=neutral, PublicKeyToken=f300afd708cefcd3, processorArchitecture=MSIL">
  63. <SpecificVersion>False</SpecificVersion>
  64. <HintPath>..\References\System.Reactive.Runtime.Remoting.dll</HintPath>
  65. </Reference>
  66. <Reference Include="System.Reactive.Windows.Forms, Version=1.0.10621.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  67. <SpecificVersion>False</SpecificVersion>
  68. <HintPath>..\References\System.Reactive.Windows.Forms.dll</HintPath>
  69. </Reference>
  70. <Reference Include="System.Runtime.Remoting" />
  71. <Reference Include="System.Windows.Forms" />
  72. </ItemGroup>
  73. <ItemGroup>
  74. <Compile Include="Program.Msmq.cs" />
  75. <Compile Include="Program.Remoting.cs" />
  76. <Compile Include="MouseService.cs" />
  77. <Compile Include="Program.cs" />
  78. <Compile Include="Properties\AssemblyInfo.cs" />
  79. </ItemGroup>
  80. <ItemGroup>
  81. <ProjectReference Include="..\RxMouseService\RxMouseService.csproj">
  82. <Project>{E1C1D499-15ED-454A-AE34-35F62E53250C}</Project>
  83. <Name>RxMouseService</Name>
  84. </ProjectReference>
  85. </ItemGroup>
  86. <ItemGroup>
  87. <None Include="app.config" />
  88. </ItemGroup>
  89. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  90. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  91. Other similar extension points exist, see Microsoft.Common.targets.
  92. <Target Name="BeforeBuild">
  93. </Target>
  94. <Target Name="AfterBuild">
  95. </Target>
  96. -->
  97. </Project>