Skip to content

Commit 787184f

Browse files
committed
fix #30
``` yml # Please install dotnet-format first! # dotnet tool install -g dotnet-format CodeFormat: Type: Process Parameters: FileName: powershell WorkingDirectory: '{{Project.Output.Path}}' Args: dotnet-format ```
1 parent 005502a commit 787184f

File tree

7 files changed

+36
-8
lines changed

7 files changed

+36
-8
lines changed

README-EN.md

+9
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,15 @@ Build:
197197
IgnoreNoPKTable: true
198198
IgnoreView: true
199199

200+
# Please install dotnet-format first!
201+
# dotnet tool install -g dotnet-format
202+
CodeFormat:
203+
Type: Process
204+
Parameters:
205+
FileName: powershell
206+
WorkingDirectory: '{{Project.Output.Path}}'
207+
Args: dotnet-format
208+
200209
ReStore:
201210
Type: Process
202211
Parameters:

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,15 @@ Build:
197197
IgnoreNoPKTable: true
198198
IgnoreView: true
199199

200+
# Please install dotnet-format first!
201+
# dotnet tool install -g dotnet-format
202+
CodeFormat:
203+
Type: Process
204+
Parameters:
205+
FileName: powershell
206+
WorkingDirectory: '{{Project.Output.Path}}'
207+
Args: dotnet-format
208+
200209
ReStore:
201210
Type: Process
202211
Parameters:

build/version.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<VersionMajor>2</VersionMajor>
44
<VersionMinor>2</VersionMinor>
5-
<VersionPatch>48</VersionPatch>
5+
<VersionPatch>50</VersionPatch>
66
<VersionPrefix>$(VersionMajor).$(VersionMinor).$(VersionPatch)</VersionPrefix>
77
</PropertyGroup>
88
</Project>

doc/SmartCode.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Output:
1414
Type: File
1515
Path: 'E:\SmartSql-Starter'
1616
Parameters:
17-
SmartSqlVersion: '4.0.46'
17+
SmartSqlVersion: '4.0.56'
1818
SmartSqlSchemaVersion: '4.0.42'
1919
BuildDir: 'E:\SmartSql-Starter\build'
2020
DockerImage: 'smartsql.starter'
@@ -153,6 +153,15 @@ Build:
153153
IgnoreNoPKTable: true
154154
IgnoreView: true
155155

156+
# Please install dotnet-format first!
157+
# dotnet tool install -g dotnet-format
158+
CodeFormat:
159+
Type: Process
160+
Parameters:
161+
FileName: powershell
162+
WorkingDirectory: '{{Project.Output.Path}}'
163+
Args: dotnet-format
164+
156165
ReStore:
157166
Type: Process
158167
Parameters:

src/SmartCode.CLI/SmartCode.CLI.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,6 @@
5555
<ItemGroup>
5656
<Folder Include="nupkg\" />
5757
<Folder Include="Properties\" />
58+
5859
</ItemGroup>
5960
</Project>

src/SmartCode.Db/SmartCode.Db.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="SmartSql.Options" Version="4.0.46" />
9-
<PackageReference Include="SmartSql.TypeHandler" Version="4.0.46" />
10-
<PackageReference Include="SmartSql.TypeHandler.PostgreSql" Version="4.0.46" />
8+
<PackageReference Include="SmartSql.Options" Version="4.0.56" />
9+
<PackageReference Include="SmartSql.TypeHandler" Version="4.0.56" />
10+
<PackageReference Include="SmartSql.TypeHandler.PostgreSql" Version="4.0.56" />
1111
<PackageReference Include="System.Data.SqlClient" Version="4.6.1" />
1212
<PackageReference Include="System.Data.SQLite" Version="1.0.110" />
1313
<PackageReference Include="MySql.Data" Version="8.0.16" />

src/SmartCode.ETL/SmartCode.ETL.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="SmartSql.Bulk.MySql" Version="4.0.46" />
9-
<PackageReference Include="SmartSql.Bulk.PostgreSql" Version="4.0.46" />
10-
<PackageReference Include="SmartSql.Bulk.SqlServer" Version="4.0.46" />
8+
<PackageReference Include="SmartSql.Bulk.MySql" Version="4.0.56" />
9+
<PackageReference Include="SmartSql.Bulk.PostgreSql" Version="4.0.56" />
10+
<PackageReference Include="SmartSql.Bulk.SqlServer" Version="4.0.56" />
1111
</ItemGroup>
1212

1313
<ItemGroup>

0 commit comments

Comments
 (0)