Skip to content

Commit ddc0a9d

Browse files
committed
chore: change version to 1.2.3
1 parent c779b31 commit ddc0a9d

File tree

15 files changed

+51
-55
lines changed

15 files changed

+51
-55
lines changed

Directory.Build.props

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<Project>
2+
3+
<PropertyGroup>
4+
<Version>$(Ver)</Version>
5+
<PackageVersion>$(Ver)</PackageVersion>
6+
<Authors>v.la@live.cn</Authors>
7+
<Description>Simple and easy to use the log class library package</Description>
8+
<Product>EsWork Logging Library</Product>
9+
<Copyright>2019 EsWork, Inc.</Copyright>
10+
<Authors>EsWork;v.la@live.cn</Authors>
11+
12+
<PackageOutputPath>$(MSBuildThisFileDirectory)/artifacts</PackageOutputPath>
13+
<PackageTags>logging;log;logger</PackageTags>
14+
<LangVersion>latest</LangVersion>
15+
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
16+
<PackageIcon>icon.png</PackageIcon>
17+
<PackageProjectUrl>https://github.com/EsWork/Es.Logging</PackageProjectUrl>
18+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
19+
<PackageLicenseType>MIT</PackageLicenseType>
20+
21+
<RepositoryUrl>git://github.com/EsWork/Es.Logging</RepositoryUrl>
22+
<RepositoryType>git</RepositoryType>
23+
<RepositoryBranch>master</RepositoryBranch>
24+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
25+
26+
</PropertyGroup>
27+
28+
<PropertyGroup Condition=" '$(Configuration)' != 'Debug' ">
29+
<Optimize>true</Optimize>
30+
</PropertyGroup>
31+
32+
<PropertyGroup>
33+
<SignAssembly>True</SignAssembly>
34+
<DelaySign>False</DelaySign>
35+
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)/sign.snk</AssemblyOriginatorKeyFile>
36+
</PropertyGroup>
37+
38+
39+
<ItemGroup>
40+
<None Include="$(MSBuildThisFileDirectory)/icon.png" Pack="true" PackagePath=""/>
41+
</ItemGroup>
42+
</Project>

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.2
1+
1.2.3

build.cmd

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,19 @@ set artifacts=%~dp0artifacts
22

33
if exist %artifacts% rd /q /s %artifacts%
44

5+
set /p ver=<VERSION
6+
57
dotnet restore src/Es.Logging
68
dotnet restore src/Es.Logging.Console
79
dotnet restore src/Es.Logging.Log4
810
dotnet restore src/Es.Logging.NLog
911
dotnet restore src/Es.Microsoft.Log
1012

11-
dotnet pack -c release src/Es.Logging -o %artifacts%
12-
dotnet pack -c release src/Es.Logging.Console -o %artifacts%
13-
dotnet pack -c release src/Es.Logging.Log4 -o %artifacts%
14-
dotnet pack -c release src/Es.Logging.NLog -o %artifacts%
15-
dotnet pack -c release src/Es.Logging.Serilog -o %artifacts%
16-
dotnet pack -c release src/Es.Microsoft.Log -o %artifacts%
13+
dotnet pack -c release -p:Ver=%ver% src/Es.Logging -o %artifacts%
14+
dotnet pack -c release -p:Ver=%ver% src/Es.Logging.Console -o %artifacts%
15+
dotnet pack -c release -p:Ver=%ver% src/Es.Logging.Log4 -o %artifacts%
16+
dotnet pack -c release -p:Ver=%ver% src/Es.Logging.NLog -o %artifacts%
17+
dotnet pack -c release -p:Ver=%ver% src/Es.Logging.Serilog -o %artifacts%
18+
dotnet pack -c release -p:Ver=%ver% src/Es.Microsoft.Log -o %artifacts%
1719

1820
pause

build/Es.snk

-596 Bytes
Binary file not shown.

build/common.props

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

build/dependencies.props

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

build/version.props

Lines changed: 0 additions & 6 deletions
This file was deleted.
File renamed without changes.

sign.snk

596 Bytes
Binary file not shown.

src/Es.Logging.Console/Es.Logging.Console.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
<Import Project="..\..\build\common.props" />
32

43
<PropertyGroup>
54
<AssemblyName>Es.Logging.Console</AssemblyName>

0 commit comments

Comments
 (0)