Skip to content

Commit 49ba798

Browse files
committed
Update second line values.
1 parent 783beb2 commit 49ba798

13 files changed

+6
-213
lines changed

CopyFromExcelToMarkdownAddIn/CopyFromExcelToMarkdownAddIn/CopyFromExcelToMarkdownAddIn.csproj

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@
2929
<AssemblyName>Copy to Markdown AddIn</AssemblyName>
3030
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
3131
<DefineConstants>VSTO40</DefineConstants>
32-
<IsWebBootstrapper>True</IsWebBootstrapper>
32+
<IsWebBootstrapper>False</IsWebBootstrapper>
3333
<BootstrapperEnabled>true</BootstrapperEnabled>
34-
<PublishUrl>C:\Users\z00h800459\Source\Repos\CopyFromExcelToMarkdownAddIn\docs\</PublishUrl>
35-
<InstallUrl>https://nuitsjp.github.io/CopyToMarkdownAddIn/</InstallUrl>
34+
<PublishUrl>C:\Users\z00h800459\Source\Repos\CopyFromExcelToMarkdownAddIn\publish\</PublishUrl>
35+
<InstallUrl />
3636
<TargetCulture>ja</TargetCulture>
37-
<ApplicationVersion>1.0.0.6</ApplicationVersion>
37+
<ApplicationVersion>1.0.0.7</ApplicationVersion>
3838
<AutoIncrementApplicationRevision>true</AutoIncrementApplicationRevision>
3939
<UpdateEnabled>true</UpdateEnabled>
4040
<UpdateInterval>7</UpdateInterval>
@@ -189,7 +189,6 @@
189189
<DependentUpon>Resources.resx</DependentUpon>
190190
<DesignTime>True</DesignTime>
191191
</Compile>
192-
<None Include="CopyFromExcelToMarkdownAddIn_TemporaryKey.pfx" />
193192
<None Include="nuits.jp.pfx" />
194193
<None Include="Properties\Settings.settings">
195194
<Generator>SettingsSingleFileGenerator</Generator>

CopyFromExcelToMarkdownAddIn/CopyFromExcelToMarkdownAddIn/ThisAddIn.cs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,17 +78,14 @@ private void CopyToMarkdown(CommandBarButton ctrl, ref bool cancelDefault)
7878
resultBuffer.Append(cell.Text == null ? string.Empty : cell.Text);
7979
switch ((int)cell.HorizontalAlignment)
8080
{
81-
case AlignmentLeft:
82-
separatorBuffer.Append("|-");
83-
break;
8481
case AlignmentCenter:
8582
separatorBuffer.Append("|:-:");
8683
break;
8784
case AlignmentRight:
88-
separatorBuffer.Append("|-:");
85+
separatorBuffer.Append("|--:");
8986
break;
9087
default:
91-
separatorBuffer.Append("|-");
88+
separatorBuffer.Append("|:--");
9289
break;
9390
}
9491
}
Binary file not shown.

docs/Application Files/Copy to Markdown AddIn_1_0_0_5/Copy to Markdown AddIn.dll.manifest

Lines changed: 0 additions & 161 deletions
This file was deleted.

0 commit comments

Comments
 (0)