WisdomClient.csproj 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="14.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>{4ED1F671-BAD0-4C48-A5FC-7603D74FABD2}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>WisdomClient</RootNamespace>
  11. <AssemblyName>WisdomClient</AssemblyName>
  12. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <DebugSymbols>true</DebugSymbols>
  17. <DebugType>full</DebugType>
  18. <Optimize>false</Optimize>
  19. <OutputPath>bin\Debug\</OutputPath>
  20. <DefineConstants>DEBUG;TRACE</DefineConstants>
  21. <ErrorReport>prompt</ErrorReport>
  22. <WarningLevel>4</WarningLevel>
  23. </PropertyGroup>
  24. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  25. <DebugType>pdbonly</DebugType>
  26. <Optimize>true</Optimize>
  27. <OutputPath>bin\Release\</OutputPath>
  28. <DefineConstants>TRACE</DefineConstants>
  29. <ErrorReport>prompt</ErrorReport>
  30. <WarningLevel>4</WarningLevel>
  31. </PropertyGroup>
  32. <ItemGroup>
  33. <Reference Include="log4net, Version=1.2.13.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
  34. <SpecificVersion>False</SpecificVersion>
  35. <HintPath>..\ShareLibrary\log4net.dll</HintPath>
  36. </Reference>
  37. <Reference Include="Newtonsoft.Json, Version=11.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  38. <SpecificVersion>False</SpecificVersion>
  39. <HintPath>..\ShareLibrary\Newtonsoft.Json.dll</HintPath>
  40. </Reference>
  41. <Reference Include="RestSharp, Version=104.5.0.0, Culture=neutral, processorArchitecture=MSIL">
  42. <SpecificVersion>False</SpecificVersion>
  43. <HintPath>..\ShareLibrary\RestSharp.dll</HintPath>
  44. </Reference>
  45. <Reference Include="System" />
  46. <Reference Include="System.configuration" />
  47. <Reference Include="System.Core" />
  48. <Reference Include="System.Xml.Linq" />
  49. <Reference Include="System.Data.DataSetExtensions" />
  50. <Reference Include="Microsoft.CSharp" />
  51. <Reference Include="System.Data" />
  52. <Reference Include="System.Xml" />
  53. </ItemGroup>
  54. <ItemGroup>
  55. <Compile Include="data\PageObject.cs" />
  56. <Compile Include="data\AlarmPage.cs" />
  57. <Compile Include="data\DoubleStatData.cs" />
  58. <Compile Include="data\DoubleTsData.cs" />
  59. <Compile Include="data\AlarmInfo.cs" />
  60. <Compile Include="data\TsPointDataList.cs" />
  61. <Compile Include="data\TsPointData.cs" />
  62. <Compile Include="ShardingClient.cs" />
  63. <Compile Include="RestfulClient2.cs" />
  64. <Compile Include="RestfulClient.cs" />
  65. <Compile Include="data\Coordinate.cs" />
  66. <Compile Include="data\TsData.cs" />
  67. <Compile Include="Properties\AssemblyInfo.cs" />
  68. </ItemGroup>
  69. <ItemGroup>
  70. <None Include="App.config">
  71. <SubType>Designer</SubType>
  72. </None>
  73. <None Include="packages.config" />
  74. </ItemGroup>
  75. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  76. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  77. Other similar extension points exist, see Microsoft.Common.targets.
  78. <Target Name="BeforeBuild">
  79. </Target>
  80. <Target Name="AfterBuild">
  81. </Target>
  82. -->
  83. </Project>