Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

DocX.csproj 3.8KB

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