ExcelReaderWrite.csproj 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{816BB08A-B804-43CD-8C79-B5F22EAAB972}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>ExcelReaderWrite</RootNamespace>
  12. <AssemblyName>ExcelReaderWrite</AssemblyName>
  13. <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. <SccProjectName>
  16. </SccProjectName>
  17. <SccLocalPath>
  18. </SccLocalPath>
  19. <SccAuxPath>
  20. </SccAuxPath>
  21. <SccProvider>
  22. </SccProvider>
  23. <TargetFrameworkProfile />
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  26. <DebugSymbols>true</DebugSymbols>
  27. <DebugType>full</DebugType>
  28. <Optimize>false</Optimize>
  29. <OutputPath>bin\Debug\</OutputPath>
  30. <DefineConstants>DEBUG;TRACE</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. <UseVSHostingProcess>false</UseVSHostingProcess>
  34. <Prefer32Bit>false</Prefer32Bit>
  35. </PropertyGroup>
  36. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  37. <DebugType>pdbonly</DebugType>
  38. <Optimize>true</Optimize>
  39. <OutputPath>bin\Release\</OutputPath>
  40. <DefineConstants>TRACE</DefineConstants>
  41. <ErrorReport>prompt</ErrorReport>
  42. <WarningLevel>4</WarningLevel>
  43. <Prefer32Bit>false</Prefer32Bit>
  44. </PropertyGroup>
  45. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
  46. <PlatformTarget>x86</PlatformTarget>
  47. <OutputPath>bin\x86\Debug\</OutputPath>
  48. <Prefer32Bit>false</Prefer32Bit>
  49. </PropertyGroup>
  50. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
  51. <PlatformTarget>x86</PlatformTarget>
  52. <OutputPath>bin\x86\Release\</OutputPath>
  53. <Prefer32Bit>false</Prefer32Bit>
  54. </PropertyGroup>
  55. <ItemGroup>
  56. <Reference Include="Interop.Excel, Version=1.5.0.0, Culture=neutral, processorArchitecture=MSIL">
  57. <SpecificVersion>False</SpecificVersion>
  58. <EmbedInteropTypes>True</EmbedInteropTypes>
  59. <HintPath>..\Lib\Interop.Excel.dll</HintPath>
  60. </Reference>
  61. <Reference Include="Interop.Microsoft.Office.Core">
  62. <HintPath>..\Lib\Interop.Microsoft.Office.Core.dll</HintPath>
  63. <EmbedInteropTypes>True</EmbedInteropTypes>
  64. </Reference>
  65. <Reference Include="Interop.Office">
  66. <HintPath>..\Lib\Interop.Office.dll</HintPath>
  67. <EmbedInteropTypes>True</EmbedInteropTypes>
  68. </Reference>
  69. <Reference Include="Microsoft.CSharp" />
  70. <Reference Include="System" />
  71. <Reference Include="System.configuration" />
  72. <Reference Include="System.Core" />
  73. <Reference Include="System.Web" />
  74. <Reference Include="System.Xml.Linq" />
  75. <Reference Include="System.Data.DataSetExtensions" />
  76. <Reference Include="System.Data" />
  77. <Reference Include="System.Xml" />
  78. </ItemGroup>
  79. <ItemGroup>
  80. <Compile Include="ExcelEnum.cs" />
  81. <Compile Include="ExcelFunction.cs" />
  82. <Compile Include="ExcelHelper.cs" />
  83. <Compile Include="ExcelSchema.cs">
  84. <DependentUpon>ExcelSchema.xsd</DependentUpon>
  85. </Compile>
  86. <Compile Include="Properties\AssemblyInfo.cs" />
  87. </ItemGroup>
  88. <ItemGroup>
  89. <None Include="ExcelSchema.xsd">
  90. <SubType>Designer</SubType>
  91. </None>
  92. <None Include="ExcelSchema.xsx">
  93. <DependentUpon>ExcelSchema.xsd</DependentUpon>
  94. </None>
  95. </ItemGroup>
  96. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  97. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  98. Other similar extension points exist, see Microsoft.Common.targets.
  99. <Target Name="BeforeBuild">
  100. </Target>
  101. <Target Name="AfterBuild">
  102. </Target>
  103. -->
  104. </Project>