excel2json.csproj 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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>{3F3729F4-9C16-40FB-956D-BE6C18C1A418}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>excel2json</RootNamespace>
  11. <AssemblyName>excel2json</AssemblyName>
  12. <TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <PlatformTarget>AnyCPU</PlatformTarget>
  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. <PlatformTarget>AnyCPU</PlatformTarget>
  27. <DebugType>pdbonly</DebugType>
  28. <Optimize>true</Optimize>
  29. <OutputPath>bin\Release\</OutputPath>
  30. <DefineConstants>TRACE</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. </PropertyGroup>
  34. <PropertyGroup>
  35. <StartupObject>
  36. </StartupObject>
  37. </PropertyGroup>
  38. <PropertyGroup>
  39. <ApplicationIcon>Resources\excel2json.ico</ApplicationIcon>
  40. </PropertyGroup>
  41. <ItemGroup>
  42. <Reference Include="CommandLine, Version=1.9.71.2, Culture=neutral, PublicKeyToken=de6f01bd326f8c32, processorArchitecture=MSIL">
  43. <HintPath>packages\CommandLineParser.1.9.71\lib\net45\CommandLine.dll</HintPath>
  44. </Reference>
  45. <Reference Include="ExcelDataReader, Version=3.6.0.0, Culture=neutral, PublicKeyToken=93517dbe6a4012fa, processorArchitecture=MSIL">
  46. <HintPath>packages\ExcelDataReader.3.6.0\lib\net45\ExcelDataReader.dll</HintPath>
  47. </Reference>
  48. <Reference Include="ExcelDataReader.DataSet, Version=3.6.0.0, Culture=neutral, PublicKeyToken=93517dbe6a4012fa, processorArchitecture=MSIL">
  49. <HintPath>packages\ExcelDataReader.DataSet.3.6.0\lib\net35\ExcelDataReader.DataSet.dll</HintPath>
  50. </Reference>
  51. <Reference Include="FastColoredTextBox, Version=2.16.24.0, Culture=neutral, PublicKeyToken=fb8aa12b994ef61b, processorArchitecture=MSIL">
  52. <HintPath>packages\FCTB.2.16.24\lib\FastColoredTextBox.dll</HintPath>
  53. </Reference>
  54. <Reference Include="ICSharpCode.SharpZipLib, Version=1.2.0.246, Culture=neutral, PublicKeyToken=1b03e6acf1164f73, processorArchitecture=MSIL">
  55. <HintPath>packages\SharpZipLib.1.2.0\lib\net45\ICSharpCode.SharpZipLib.dll</HintPath>
  56. </Reference>
  57. <Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  58. <HintPath>packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
  59. </Reference>
  60. <Reference Include="System" />
  61. <Reference Include="System.Core" />
  62. <Reference Include="System.Drawing" />
  63. <Reference Include="System.IO.Compression" />
  64. <Reference Include="System.Windows.Forms" />
  65. <Reference Include="System.Xml.Linq" />
  66. <Reference Include="System.Data.DataSetExtensions" />
  67. <Reference Include="Microsoft.CSharp" />
  68. <Reference Include="System.Data" />
  69. <Reference Include="System.Xml" />
  70. </ItemGroup>
  71. <ItemGroup>
  72. <Compile Include="CSDefineGenerator.cs" />
  73. <Compile Include="ExcelLoader.cs" />
  74. <Compile Include="GUI\DataManager.cs" />
  75. <Compile Include="JsonExporter.cs" />
  76. <Compile Include="GUI\MainForm.cs">
  77. <SubType>Form</SubType>
  78. </Compile>
  79. <Compile Include="GUI\MainForm.Designer.cs">
  80. <DependentUpon>MainForm.cs</DependentUpon>
  81. </Compile>
  82. <Compile Include="LuaDefineGenerator.cs" />
  83. <Compile Include="Program.cs" />
  84. <Compile Include="Program.Options.cs" />
  85. <Compile Include="Properties\AssemblyInfo.cs" />
  86. <Compile Include="Properties\Resources.Designer.cs">
  87. <AutoGen>True</AutoGen>
  88. <DesignTime>True</DesignTime>
  89. <DependentUpon>Resources.resx</DependentUpon>
  90. </Compile>
  91. </ItemGroup>
  92. <ItemGroup>
  93. <None Include="ChangeLog.md" />
  94. <None Include="Resources\App.config" />
  95. <None Include="LICENSE" />
  96. <None Include="packages.config">
  97. <SubType>Designer</SubType>
  98. </None>
  99. <None Include="README.md" />
  100. </ItemGroup>
  101. <ItemGroup>
  102. <EmbeddedResource Include="GUI\MainForm.resx">
  103. <DependentUpon>MainForm.cs</DependentUpon>
  104. </EmbeddedResource>
  105. <EmbeddedResource Include="Properties\Resources.resx">
  106. <Generator>ResXFileCodeGenerator</Generator>
  107. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  108. <SubType>Designer</SubType>
  109. </EmbeddedResource>
  110. </ItemGroup>
  111. <ItemGroup>
  112. <None Include="Resources\lua.png" />
  113. <None Include="Resources\SQL.png" />
  114. <None Include="Resources\clipboard.png" />
  115. <None Include="Resources\code.png" />
  116. <Content Include="Resources\excel.png" />
  117. <Content Include="Resources\excel2json.ico" />
  118. <None Include="Resources\excel_64.png" />
  119. <Content Include="Resources\json.png" />
  120. <None Include="Resources\about.png" />
  121. </ItemGroup>
  122. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  123. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  124. Other similar extension points exist, see Microsoft.Common.targets.
  125. <Target Name="BeforeBuild">
  126. </Target>
  127. <Target Name="AfterBuild">
  128. </Target>
  129. -->
  130. </Project>