Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

DocX.csproj 6.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.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>9.0.21022</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{E863D072-AA8B-4108-B5F1-785241B37F67}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>Novacode</RootNamespace>
  12. <AssemblyName>DocX</AssemblyName>
  13. <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. <SccProjectName>SAK</SccProjectName>
  16. <SccLocalPath>SAK</SccLocalPath>
  17. <SccAuxPath>SAK</SccAuxPath>
  18. <SccProvider>SAK</SccProvider>
  19. <StartupObject>
  20. </StartupObject>
  21. <FileUpgradeFlags>
  22. </FileUpgradeFlags>
  23. <OldToolsVersion>3.5</OldToolsVersion>
  24. <UpgradeBackupLocation />
  25. <PublishUrl>publish\</PublishUrl>
  26. <Install>true</Install>
  27. <InstallFrom>Disk</InstallFrom>
  28. <UpdateEnabled>false</UpdateEnabled>
  29. <UpdateMode>Foreground</UpdateMode>
  30. <UpdateInterval>7</UpdateInterval>
  31. <UpdateIntervalUnits>Days</UpdateIntervalUnits>
  32. <UpdatePeriodically>false</UpdatePeriodically>
  33. <UpdateRequired>false</UpdateRequired>
  34. <MapFileExtensions>true</MapFileExtensions>
  35. <ApplicationRevision>0</ApplicationRevision>
  36. <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
  37. <IsWebBootstrapper>false</IsWebBootstrapper>
  38. <UseApplicationTrust>false</UseApplicationTrust>
  39. <BootstrapperEnabled>true</BootstrapperEnabled>
  40. <TargetFrameworkProfile>
  41. </TargetFrameworkProfile>
  42. </PropertyGroup>
  43. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  44. <DebugSymbols>true</DebugSymbols>
  45. <DebugType>full</DebugType>
  46. <Optimize>false</Optimize>
  47. <OutputPath>bin\Debug\</OutputPath>
  48. <DefineConstants>DEBUG;TRACE</DefineConstants>
  49. <ErrorReport>prompt</ErrorReport>
  50. <WarningLevel>4</WarningLevel>
  51. <DocumentationFile>bin\Debug\DocX.XML</DocumentationFile>
  52. <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
  53. </PropertyGroup>
  54. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  55. <DebugType>pdbonly</DebugType>
  56. <Optimize>true</Optimize>
  57. <OutputPath>bin\Release\</OutputPath>
  58. <DefineConstants>TRACE</DefineConstants>
  59. <ErrorReport>prompt</ErrorReport>
  60. <WarningLevel>4</WarningLevel>
  61. <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
  62. </PropertyGroup>
  63. <PropertyGroup>
  64. <SignAssembly>false</SignAssembly>
  65. </PropertyGroup>
  66. <PropertyGroup>
  67. <AssemblyOriginatorKeyFile>
  68. </AssemblyOriginatorKeyFile>
  69. </PropertyGroup>
  70. <ItemGroup>
  71. <Reference Include="System" />
  72. <Reference Include="System.Configuration" />
  73. <Reference Include="System.Core">
  74. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  75. </Reference>
  76. <Reference Include="System.Drawing" />
  77. <Reference Include="System.XML" />
  78. <Reference Include="System.Xml.Linq">
  79. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  80. </Reference>
  81. <Reference Include="System.Data.DataSetExtensions">
  82. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  83. </Reference>
  84. <Reference Include="System.Data" />
  85. <Reference Include="WindowsBase">
  86. <RequiredTargetFramework>3.0</RequiredTargetFramework>
  87. </Reference>
  88. </ItemGroup>
  89. <ItemGroup>
  90. <Compile Include="Bookmark.cs" />
  91. <Compile Include="BookmarkCollection.cs" />
  92. <Compile Include="Border.cs" />
  93. <Compile Include="Charts\Axis.cs" />
  94. <Compile Include="Charts\BarChart.cs" />
  95. <Compile Include="Charts\Chart.cs" />
  96. <Compile Include="Charts\LineChart.cs" />
  97. <Compile Include="Charts\PieChart.cs" />
  98. <Compile Include="Charts\XElementHelpers.cs" />
  99. <Compile Include="Container.cs" />
  100. <Compile Include="DocumentTypes.cs" />
  101. <Compile Include="ExtensionsHeadings.cs" />
  102. <Compile Include="Footers.cs" />
  103. <Compile Include="Footer.cs" />
  104. <Compile Include="CustomProperty.cs" />
  105. <Compile Include="DocProperty.cs" />
  106. <Compile Include="FormattedText.cs" />
  107. <Compile Include="Header.cs" />
  108. <Compile Include="Headers.cs" />
  109. <Compile Include="HelperFunctions.cs" />
  110. <Compile Include="Hyperlink.cs" />
  111. <Compile Include="List.cs" />
  112. <Compile Include="PageLayout.cs" />
  113. <Compile Include="Section.cs" />
  114. <Compile Include="TableOfContents.cs" />
  115. <Compile Include="_BaseClasses.cs" />
  116. <Compile Include="Table.cs" />
  117. <Compile Include="_Enumerations.cs" />
  118. <Compile Include="Formatting.cs" />
  119. <Compile Include="Image.cs" />
  120. <Compile Include="Picture.cs" />
  121. <Compile Include="Paragraph.cs" />
  122. <Compile Include="DocX.cs" />
  123. <Compile Include="Properties\AssemblyInfo.cs" />
  124. <Compile Include="_Extensions.cs">
  125. <SubType>Code</SubType>
  126. </Compile>
  127. </ItemGroup>
  128. <ItemGroup>
  129. <Content Include="License\License.html" />
  130. </ItemGroup>
  131. <ItemGroup>
  132. <EmbeddedResource Include="Resources\default_styles.xml.gz" />
  133. <EmbeddedResource Include="Resources\styles.xml.gz" />
  134. </ItemGroup>
  135. <ItemGroup>
  136. <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
  137. <Visible>False</Visible>
  138. <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
  139. <Install>false</Install>
  140. </BootstrapperPackage>
  141. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  142. <Visible>False</Visible>
  143. <ProductName>.NET Framework 3.5 SP1</ProductName>
  144. <Install>true</Install>
  145. </BootstrapperPackage>
  146. <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
  147. <Visible>False</Visible>
  148. <ProductName>Windows Installer 3.1</ProductName>
  149. <Install>true</Install>
  150. </BootstrapperPackage>
  151. </ItemGroup>
  152. <ItemGroup>
  153. <EmbeddedResource Include="Resources\numbering.xml.gz" />
  154. </ItemGroup>
  155. <ItemGroup>
  156. <EmbeddedResource Include="Resources\numbering.default_bullet_abstract.xml.gz" />
  157. <EmbeddedResource Include="Resources\numbering.default_decimal_abstract.xml.gz" />
  158. </ItemGroup>
  159. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  160. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  161. Other similar extension points exist, see Microsoft.Common.targets.
  162. <Target Name="BeforeBuild">
  163. </Target>
  164. <Target Name="AfterBuild">
  165. </Target>
  166. -->
  167. </Project>