| @@ -19,7 +19,8 @@ | |||
| <StartupObject> | |||
| </StartupObject> | |||
| <SignAssembly>true</SignAssembly> | |||
| <AssemblyOriginatorKeyFile>StrongNameKey.pfx</AssemblyOriginatorKeyFile> | |||
| <AssemblyOriginatorKeyFile> | |||
| </AssemblyOriginatorKeyFile> | |||
| <FileUpgradeFlags> | |||
| </FileUpgradeFlags> | |||
| <OldToolsVersion>3.5</OldToolsVersion> | |||
| @@ -109,6 +110,7 @@ | |||
| <None Include="StrongNameKey.pfx" /> | |||
| </ItemGroup> | |||
| <ItemGroup> | |||
| <Content Include="bin\Debug\DocX.dll" /> | |||
| <Content Include="License\License.html" /> | |||
| </ItemGroup> | |||
| <ItemGroup> | |||
| @@ -1076,9 +1076,9 @@ namespace Novacode | |||
| { | |||
| runLookup.Clear(); | |||
| // Get the runs in this paragraph | |||
| IEnumerable<XElement> runs = p.Descendants(XName.Get("r", "http://schemas.openxmlformats.org/wordprocessingml/2006/main")); | |||
| List<XElement> runs = new List<XElement>(); | |||
| p.Flatten("r", runs); | |||
| int startIndex = 0; | |||
| // Loop through each run in this paragraph | |||