Skip to content

Commit 0f7e25d

Browse files
committed
doc : add release note and icon
1 parent 11de2ff commit 0f7e25d

4 files changed

Lines changed: 12 additions & 5 deletions

File tree

MiniWord.sln

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,13 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "docs", "docs", "{4EAD1BCD-0
1414
EndProject
1515
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MiniWordTests", "tests\MiniWordTests\MiniWordTests.csproj", "{7CB52636-4C20-4FE8-8C69-F794ABBB86A6}"
1616
EndProject
17+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "release", "release", "{BEA78871-F09C-47A6-98D0-1ED6E0E8476D}"
18+
ProjectSection(SolutionItems) = preProject
19+
release\README.md = release\README.md
20+
release\README.zh-CN.md = release\README.zh-CN.md
21+
release\README.zh-Hant.md = release\README.zh-Hant.md
22+
EndProjectSection
23+
EndProject
1724
Global
1825
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1926
Debug|Any CPU = Debug|Any CPU

src/MiniWord/MiniWord.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFrameworks>net45;netstandard2.0;net5.0</TargetFrameworks>
4-
<Version>0.1.0</Version>
4+
<Version>0.1.1</Version>
55
</PropertyGroup>
66
<PropertyGroup>
77
<AssemblyName>MiniWord</AssemblyName>
@@ -19,8 +19,8 @@
1919
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
2020
<PackageProjectUrl>https://github.com/mini-software/MiniWord</PackageProjectUrl>
2121
<RepositoryUrl>https://github.com/mini-software/MiniWord</RepositoryUrl>
22-
<!--<PackageIcon>icon.png</PackageIcon>-->
23-
<PackageReleaseNotes>Please Check [Release Notes](https://github.com/mini-software/MiniWord/tree/master/docs)</PackageReleaseNotes>
22+
<PackageIcon>icon.png</PackageIcon>
23+
<PackageReleaseNotes>Please Check [Release Notes](https://github.com/mini-software/MiniWord/tree/master/release)</PackageReleaseNotes>
2424
<RepositoryType>Github</RepositoryType>
2525
</PropertyGroup>
2626
<ItemGroup>

src/MiniWord/icon.png

218 KB
Loading

tests/MiniWordTests/IssueTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ public void TestIssue5()
3333
MiniWord.SaveAsByTemplate(path, templatePath, value);
3434
//Console.WriteLine(path);
3535
var xml = Helpers.GetZipFileContent(path, "word/document.xml");
36-
Assert.False(xml.Contains("Jack Demo APP Account Data"));
37-
Assert.True(xml.Contains("MiniSofteware Demo APP Account Data"));
36+
Assert.DoesNotContain("Jack Demo APP Account Data", xml);
37+
Assert.Contains("MiniSofteware Demo APP Account Data", xml);
3838
}
3939

4040
/// <summary>

0 commit comments

Comments
 (0)