ConnectionServer.csproj 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  2. <PropertyGroup>
  3. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  4. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  5. <ProductVersion>8.0.50727</ProductVersion>
  6. <SchemaVersion>2.0</SchemaVersion>
  7. <ProjectGuid>{7D415CA8-3FA0-4613-A1AD-1A14BB82C99B}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>ConnectionServer</RootNamespace>
  11. <AssemblyName>ConnectionServer</AssemblyName>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  14. <DebugSymbols>true</DebugSymbols>
  15. <DebugType>full</DebugType>
  16. <Optimize>false</Optimize>
  17. <OutputPath>bin\Debug\</OutputPath>
  18. <DefineConstants>DEBUG;TRACE</DefineConstants>
  19. <ErrorReport>prompt</ErrorReport>
  20. <WarningLevel>4</WarningLevel>
  21. </PropertyGroup>
  22. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  23. <DebugType>pdbonly</DebugType>
  24. <Optimize>true</Optimize>
  25. <OutputPath>bin\Release\</OutputPath>
  26. <DefineConstants>TRACE</DefineConstants>
  27. <ErrorReport>prompt</ErrorReport>
  28. <WarningLevel>4</WarningLevel>
  29. </PropertyGroup>
  30. <ItemGroup>
  31. <Reference Include="Core.Mes.IBaseInterface, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  32. <SpecificVersion>False</SpecificVersion>
  33. <HintPath>..\..\..\..\CXMES\Server\Output\Core.Mes.IBaseInterface.dll</HintPath>
  34. </Reference>
  35. <Reference Include="System" />
  36. <Reference Include="System.configuration" />
  37. <Reference Include="System.Data" />
  38. <Reference Include="System.Deployment" />
  39. <Reference Include="System.Drawing" />
  40. <Reference Include="System.Windows.Forms" />
  41. <Reference Include="System.Xml" />
  42. </ItemGroup>
  43. <ItemGroup>
  44. <Compile Include="ExitMessageFilter.cs" />
  45. <Compile Include="Form1.cs">
  46. <SubType>Form</SubType>
  47. </Compile>
  48. <Compile Include="Form1.Designer.cs">
  49. <DependentUpon>Form1.cs</DependentUpon>
  50. </Compile>
  51. <Compile Include="FrmConnection.cs">
  52. <SubType>Form</SubType>
  53. </Compile>
  54. <Compile Include="FrmConnection.Designer.cs">
  55. <DependentUpon>FrmConnection.cs</DependentUpon>
  56. </Compile>
  57. <Compile Include="Program.cs" />
  58. <Compile Include="Properties\AssemblyInfo.cs" />
  59. <EmbeddedResource Include="Form1.resx">
  60. <DependentUpon>Form1.cs</DependentUpon>
  61. <SubType>Designer</SubType>
  62. </EmbeddedResource>
  63. <EmbeddedResource Include="FrmConnection.resx">
  64. <SubType>Designer</SubType>
  65. <DependentUpon>FrmConnection.cs</DependentUpon>
  66. </EmbeddedResource>
  67. <EmbeddedResource Include="Properties\Resources.resx">
  68. <Generator>ResXFileCodeGenerator</Generator>
  69. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  70. <SubType>Designer</SubType>
  71. </EmbeddedResource>
  72. <Compile Include="Properties\Resources.Designer.cs">
  73. <AutoGen>True</AutoGen>
  74. <DependentUpon>Resources.resx</DependentUpon>
  75. </Compile>
  76. <None Include="App.config" />
  77. <None Include="Properties\Settings.settings">
  78. <Generator>SettingsSingleFileGenerator</Generator>
  79. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  80. </None>
  81. <Compile Include="Properties\Settings.Designer.cs">
  82. <AutoGen>True</AutoGen>
  83. <DependentUpon>Settings.settings</DependentUpon>
  84. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  85. </Compile>
  86. </ItemGroup>
  87. <ItemGroup>
  88. <ProjectReference Include="..\Core.Mes.ClientFrameWork\Core.Mes.ClientFrameWork.csproj">
  89. <Project>{276BAEDE-B4B5-4BAE-9ECE-2911D506D4EE}</Project>
  90. <Name>Core.Mes.ClientFrameWork</Name>
  91. </ProjectReference>
  92. </ItemGroup>
  93. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  94. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  95. Other similar extension points exist, see Microsoft.Common.targets.
  96. <Target Name="BeforeBuild">
  97. </Target>
  98. <Target Name="AfterBuild">
  99. </Target>
  100. -->
  101. </Project>