Skip to content

Commit 1cc982e

Browse files
committed
Change props and release rc1.
1 parent d9a8015 commit 1cc982e

File tree

7 files changed

+38
-18
lines changed

7 files changed

+38
-18
lines changed

doc/Berrysoft.Documents/Berrysoft.Documents.shfbproj

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@
2727
<Argument Key="maxVersionParts" Value="" xmlns="" />
2828
</TransformComponentArguments>
2929
<DocumentationSources>
30-
<DocumentationSource sourceFile="..\..\src\Berrysoft.Tsinghua.Net\bin\$(Configuration)\net472\Berrysoft.Tsinghua.Net.xml" />
31-
<DocumentationSource sourceFile="..\..\src\Berrysoft.Tsinghua.Net\bin\$(Configuration)\net472\Berrysoft.Tsinghua.Net.dll" />
32-
<DocumentationSource sourceFile="..\..\src\Berrysoft.Data\bin\$(Configuration)\net472\Berrysoft.Data.xml" />
33-
<DocumentationSource sourceFile="..\..\src\Berrysoft.Data\bin\$(Configuration)\net472\Berrysoft.Data.dll" />
34-
<DocumentationSource sourceFile="..\..\src\Berrysoft.Unsafe\bin\$(Configuration)\net472\Berrysoft.Unsafe.xml" />
35-
<DocumentationSource sourceFile="..\..\src\Berrysoft.Unsafe\bin\$(Configuration)\net472\Berrysoft.Unsafe.dll" />
36-
<DocumentationSource sourceFile="..\..\src\Berrysoft.Console\bin\$(Configuration)\net472\Berrysoft.Console.xml" />
37-
<DocumentationSource sourceFile="..\..\src\Berrysoft.Console\bin\$(Configuration)\net472\Berrysoft.Console.dll" />
30+
<DocumentationSource sourceFile="..\..\bin\$(Configuration)\net472\Berrysoft.Tsinghua.Net.xml" />
31+
<DocumentationSource sourceFile="..\..\bin\$(Configuration)\net472\Berrysoft.Tsinghua.Net.dll" />
32+
<DocumentationSource sourceFile="..\..\bin\$(Configuration)\net472\Berrysoft.Data.xml" />
33+
<DocumentationSource sourceFile="..\..\bin\$(Configuration)\net472\Berrysoft.Data.dll" />
34+
<DocumentationSource sourceFile="..\..\bin\$(Configuration)\net472\Berrysoft.Unsafe.xml" />
35+
<DocumentationSource sourceFile="..\..\bin\$(Configuration)\net472\Berrysoft.Unsafe.dll" />
36+
<DocumentationSource sourceFile="..\..\bin\$(Configuration)\net472\Berrysoft.Console.xml" />
37+
<DocumentationSource sourceFile="..\..\bin\$(Configuration)\net472\Berrysoft.Console.dll" />
3838
</DocumentationSources>
3939
<HelpFileFormat>Markdown</HelpFileFormat>
4040
<SyntaxFilters>C#, Visual Basic, F#</SyntaxFilters>
@@ -55,8 +55,8 @@
5555
<NamespaceSummaries>
5656
<NamespaceSummaryItem name="Berrysoft.Tsinghua.Net" isDocumented="True">A namespace contains classes to connect to Tsinghua campus network.</NamespaceSummaryItem>
5757
<NamespaceSummaryItem name="Berrysoft.Data" isDocumented="True">A namespace of some complex data structure.</NamespaceSummaryItem>
58-
<NamespaceSummaryItem name="Berrysoft.Unsafe" isDocumented="True">A namespace comtains unsafe or unmanaged structures and methods. All members support safe languages (like Visual Basic).</NamespaceSummaryItem>
59-
<NamespaceSummaryItem name="Berrysoft.Console" isDocumented="True">A namespace comtains classes to parse settings files and write simple logs.</NamespaceSummaryItem>
58+
<NamespaceSummaryItem name="Berrysoft.Unsafe" isDocumented="True">A namespace contains unsafe or unmanaged structures and methods. All members support safe languages (like Visual Basic).</NamespaceSummaryItem>
59+
<NamespaceSummaryItem name="Berrysoft.Console" isDocumented="True">A namespace contains classes to parse settings files and write simple logs.</NamespaceSummaryItem>
6060
</NamespaceSummaries>
6161
<NamingMethod>MemberName</NamingMethod>
6262
<VisibleItems>Attributes, ExplicitInterfaceImplementations, InheritedMembers, InheritedFrameworkMembers, Protected, ProtectedInternalAsProtected, NonBrowsable</VisibleItems>

nupkg.props

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
</PropertyGroup>
77

88
<PropertyGroup>
9-
<OutputPath>bin\$(Configuration)\$(TargetFramework)</OutputPath>
10-
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(ProjectName).xml</DocumentationFile>
9+
<DocumentationFile>..\..\bin\$(Configuration)\$(TargetFramework)\$(ProjectName).xml</DocumentationFile>
1110
</PropertyGroup>
1211

1312
</Project>
Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
<Project>
22

3-
<Import Project="..\..\target.props"/>
4-
<Import Project="..\..\nupkg.props"/>
3+
<PropertyGroup>
4+
<Description>Classes to parse settings files and write simple logs.</Description>
5+
</PropertyGroup>
6+
7+
<Import Project="..\..\target.props" />
8+
<Import Project="..\..\nupkg.props" />
59

610
</Project>

src/Berrysoft.Data/Berrysoft.Data.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
<Project>
22

3+
<PropertyGroup>
4+
<Description>Some data structures, including tree, map, multi map, etc.</Description>
5+
</PropertyGroup>
6+
37
<Import Project="..\..\target.props"/>
48
<Import Project="..\..\nupkg.props"/>
59

src/Berrysoft.Tsinghua.Net/Berrysoft.Tsinghua.Net.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
<Project>
2+
3+
<PropertyGroup>
4+
<Description>Some classes to login Tsinghua campus network.</Description>
5+
</PropertyGroup>
26

37
<Import Project="..\..\target.props" />
48
<Import Project="..\..\nupkg.props" />

src/Berrysoft.Unsafe/Berrysoft.Unsafe.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
<Project>
22

3+
<PropertyGroup>
4+
<Description>Some unsafe structs and methods for safe languages.</Description>
5+
</PropertyGroup>
6+
37
<Import Project="..\..\target.props"/>
48
<Import Project="..\..\nupkg.props"/>
59

target.props

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,19 @@
77

88
<PropertyGroup>
99
<LangVersion>latest</LangVersion>
10-
<AssemblyVersion>1.0.140.0</AssemblyVersion>
11-
<FileVersion>1.0.140.0</FileVersion>
10+
<AssemblyVersion>1.0.152.0</AssemblyVersion>
11+
<FileVersion>1.0.152.0</FileVersion>
12+
<OutputPath>..\..\bin\$(Configuration)</OutputPath>
1213
</PropertyGroup>
1314

1415
<PropertyGroup>
15-
<Version>1.0.140-preview3</Version>
16+
<Version>1.0.152-rc1</Version>
1617
<Authors>Berrysoft</Authors>
17-
<Company>Berrysoft</Company>
18+
<Copyright>Copyright (c) 2018 Berrysoft</Copyright>
19+
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
20+
<PackageLicenseUrl>https://opensource.org/licenses/MIT</PackageLicenseUrl>
21+
<RepositoryType>GitHub</RepositoryType>
22+
<RepositoryUrl>https://github.com/Berrysoft/ClassLibrary</RepositoryUrl>
1823
</PropertyGroup>
1924

2025
</Project>

0 commit comments

Comments
 (0)