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 3.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="3.5" 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. </PropertyGroup>
  22. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  23. <DebugSymbols>true</DebugSymbols>
  24. <DebugType>full</DebugType>
  25. <Optimize>false</Optimize>
  26. <OutputPath>bin\Debug\</OutputPath>
  27. <DefineConstants>DEBUG;TRACE</DefineConstants>
  28. <ErrorReport>prompt</ErrorReport>
  29. <WarningLevel>4</WarningLevel>
  30. <DocumentationFile>bin\Debug\DocX.xml</DocumentationFile>
  31. </PropertyGroup>
  32. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  33. <DebugType>pdbonly</DebugType>
  34. <Optimize>true</Optimize>
  35. <OutputPath>bin\Release\</OutputPath>
  36. <DefineConstants>TRACE</DefineConstants>
  37. <ErrorReport>prompt</ErrorReport>
  38. <WarningLevel>4</WarningLevel>
  39. </PropertyGroup>
  40. <ItemGroup>
  41. <Reference Include="System" />
  42. <Reference Include="System.Configuration" />
  43. <Reference Include="System.Core">
  44. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  45. </Reference>
  46. <Reference Include="System.Drawing" />
  47. <Reference Include="System.XML" />
  48. <Reference Include="System.Xml.Linq">
  49. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  50. </Reference>
  51. <Reference Include="System.Data.DataSetExtensions">
  52. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  53. </Reference>
  54. <Reference Include="System.Data" />
  55. <Reference Include="WindowsBase">
  56. <RequiredTargetFramework>3.0</RequiredTargetFramework>
  57. </Reference>
  58. </ItemGroup>
  59. <ItemGroup>
  60. <Compile Include="CustomProperty.cs" />
  61. <Compile Include="Table.cs" />
  62. <Compile Include="Enumerations.cs" />
  63. <Compile Include="Extensions.cs" />
  64. <Compile Include="Formatting.cs" />
  65. <Compile Include="Image.cs" />
  66. <Compile Include="Picture.cs" />
  67. <Compile Include="Paragraph.cs" />
  68. <Compile Include="DocX.cs" />
  69. <Compile Include="Properties\AssemblyInfo.cs" />
  70. <Compile Include="Run.cs" />
  71. <Compile Include="Text.cs" />
  72. </ItemGroup>
  73. <ItemGroup>
  74. <None Include="Help\DocX v1.0.0.5 - Documentation.chm" />
  75. </ItemGroup>
  76. <ItemGroup>
  77. <Content Include="License\License.html" />
  78. <Content Include="Resources\styles.xml" />
  79. <EmbeddedResource Include="styles.xml" />
  80. </ItemGroup>
  81. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  82. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  83. Other similar extension points exist, see Microsoft.Common.targets.
  84. <Target Name="BeforeBuild">
  85. </Target>
  86. <Target Name="AfterBuild">
  87. </Target>
  88. -->
  89. </Project>