CommonUnit.csproj 4.2 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. <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>{E57AC76C-3255-459A-B92C-1656DEA4EF38}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>CommonUnit</RootNamespace>
  11. <AssemblyName>CommonUnit</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="EntityFramework, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
  34. <SpecificVersion>False</SpecificVersion>
  35. <HintPath>..\..\SMPWeb\SMPModels\packages\EntityFramework.5.0.0\lib\net40\EntityFramework.dll</HintPath>
  36. </Reference>
  37. <Reference Include="Microsoft.Office.Interop.Excel1">
  38. <HintPath>..\..\..\Downloads\Microsoft.Office.Interop.Excel.dll</HintPath>
  39. <EmbedInteropTypes>True</EmbedInteropTypes>
  40. </Reference>
  41. <Reference Include="System" />
  42. <Reference Include="System.configuration" />
  43. <Reference Include="System.Core" />
  44. <Reference Include="System.Data.Entity" />
  45. <Reference Include="System.Drawing" />
  46. <Reference Include="System.Runtime.Serialization" />
  47. <Reference Include="System.Web" />
  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="Base\CommonResult.cs" />
  56. <Compile Include="Base\ConfigUtil.cs" />
  57. <Compile Include="Base\DateTimeHelper.cs" />
  58. <Compile Include="Base\ExcelUnit.cs" />
  59. <Compile Include="Base\FileUnit.cs" />
  60. <Compile Include="Base\HttpHelper.cs" />
  61. <Compile Include="Base\JSHelper.cs" />
  62. <Compile Include="Base\JsonHelper.cs" />
  63. <Compile Include="Base\JSonReturnResult.cs" />
  64. <Compile Include="Base\JSonTree.cs" />
  65. <Compile Include="Base\LogWriter.cs" />
  66. <Compile Include="Base\StringComparer.cs" />
  67. <Compile Include="Base\StringHelper.cs" />
  68. <Compile Include="Base\TreeDataBuilder.cs" />
  69. <Compile Include="Base\ValidateCode.cs">
  70. <SubType>ASPXCodeBehind</SubType>
  71. </Compile>
  72. <Compile Include="Base\XmlUtil.cs" />
  73. <Compile Include="IDGenerator\IIDGenerator.cs" />
  74. <Compile Include="Properties\AssemblyInfo.cs" />
  75. <Compile Include="Base\SessionUser.cs" />
  76. </ItemGroup>
  77. <ItemGroup>
  78. <COMReference Include="VBIDE">
  79. <Guid>{0002E157-0000-0000-C000-000000000046}</Guid>
  80. <VersionMajor>5</VersionMajor>
  81. <VersionMinor>3</VersionMinor>
  82. <Lcid>0</Lcid>
  83. <WrapperTool>primary</WrapperTool>
  84. <Isolated>False</Isolated>
  85. <EmbedInteropTypes>True</EmbedInteropTypes>
  86. </COMReference>
  87. </ItemGroup>
  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>