ToolsClassLibrary.csproj 4.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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>{B702C324-4284-4C5E-8F24-AD071D67B23B}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>ToolsClassLibrary</RootNamespace>
  11. <AssemblyName>ToolsClassLibrary</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <TargetFrameworkProfile />
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  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. <DebugType>pdbonly</DebugType>
  27. <Optimize>true</Optimize>
  28. <OutputPath>bin\Release\</OutputPath>
  29. <DefineConstants>TRACE</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. </PropertyGroup>
  33. <ItemGroup>
  34. <Reference Include="ServiceStack">
  35. <HintPath>..\ShareLibrary\ServiceStack.dll</HintPath>
  36. </Reference>
  37. <Reference Include="ServiceStack.Common">
  38. <HintPath>..\ShareLibrary\ServiceStack.Common.dll</HintPath>
  39. </Reference>
  40. <Reference Include="ServiceStack.Interfaces">
  41. <HintPath>..\ShareLibrary\ServiceStack.Interfaces.dll</HintPath>
  42. </Reference>
  43. <Reference Include="ServiceStack.OrmLite">
  44. <HintPath>..\ShareLibrary\ServiceStack.OrmLite.dll</HintPath>
  45. </Reference>
  46. <Reference Include="ServiceStack.OrmLite.SqlServer">
  47. <HintPath>..\ShareLibrary\ServiceStack.OrmLite.SqlServer.dll</HintPath>
  48. </Reference>
  49. <Reference Include="ServiceStack.Redis">
  50. <HintPath>..\ShareLibrary\ServiceStack.Redis.dll</HintPath>
  51. </Reference>
  52. <Reference Include="ServiceStack.ServiceInterface">
  53. <HintPath>..\ShareLibrary\ServiceStack.ServiceInterface.dll</HintPath>
  54. </Reference>
  55. <Reference Include="ServiceStack.Text">
  56. <HintPath>..\ShareLibrary\ServiceStack.Text.dll</HintPath>
  57. </Reference>
  58. <Reference Include="System" />
  59. <Reference Include="System.Core" />
  60. <Reference Include="System.Runtime.Serialization" />
  61. <Reference Include="System.ServiceModel.Web" />
  62. <Reference Include="System.Xml.Linq" />
  63. <Reference Include="System.Data.DataSetExtensions" />
  64. <Reference Include="Microsoft.CSharp" />
  65. <Reference Include="System.Data" />
  66. <Reference Include="System.Net.Http" />
  67. <Reference Include="System.Xml" />
  68. </ItemGroup>
  69. <ItemGroup>
  70. <Compile Include="CsvDirectoryConfigMassage.cs" />
  71. <Compile Include="MyEncoding.cs" />
  72. <Compile Include="RedisHelper.cs" />
  73. <Compile Include="UDP\PackageEventArgs.cs" />
  74. <Compile Include="UDP\RecDataList.cs" />
  75. <Compile Include="UDP\SerializationUnit.cs" />
  76. <Compile Include="UDP\UdpPacket.cs" />
  77. <Compile Include="UDP\Msg.cs" />
  78. <Compile Include="CsvStreamReader.cs" />
  79. <Compile Include="UDP\UdpPacketSplitter.cs" />
  80. <Compile Include="UDP\UDPThread.cs" />
  81. <Compile Include="JsonHelper.cs" />
  82. <Compile Include="Properties\AssemblyInfo.cs" />
  83. <Compile Include="UdpHelper.cs" />
  84. <Compile Include="SocketData.cs" />
  85. </ItemGroup>
  86. <ItemGroup />
  87. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  88. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  89. Other similar extension points exist, see Microsoft.Common.targets.
  90. <Target Name="BeforeBuild">
  91. </Target>
  92. <Target Name="AfterBuild">
  93. </Target>
  94. -->
  95. </Project>