Skip to content

Commit 86b5c48

Browse files
committed
Merge branch 'master' into beta
2 parents 190c45c + f01dd67 commit 86b5c48

File tree

4 files changed

+26
-13
lines changed

4 files changed

+26
-13
lines changed

.github/workflows/archive2cdn.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: Archive and Upload to FTP
22

3-
on: workflow_dispatch
4-
5-
# push:
6-
# branches:
7-
# - master
3+
on:
4+
push:
5+
branches:
6+
- master
7+
workflow_dispatch:
88

99
jobs:
1010
archive_and_upload:
@@ -53,6 +53,6 @@ jobs:
5353
for folder in "${folder_list[@]}"; do
5454
zip_file_name=$(echo "$folder" | sed 's/\//-/g').zip
5555
echo $zip_file_name
56-
curl -T "$zip_file_name" --ftp-create-dirs -u "$FTP_USERNAME:$FTP_PASSWORD" "ftp://$FTP_HOST/cdn.korzh.com/dot-net-samples/$zip_file_name"
57-
echo "ftp://$FTP_HOST/cdn.korzh.com/dot-net-samples/$zip_file_name"
56+
curl -T "$zip_file_name" --ftp-create-dirs -u "$FTP_USERNAME:$FTP_PASSWORD" "ftp://$FTP_HOST/dot-net-samples/$zip_file_name"
57+
echo "ftp://$FTP_HOST/dot-net-samples/$zip_file_name"
5858
done

WinForms/EqDemoWinFormsNet4/App.config

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
66
</configSections>
77
<startup>
8-
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2"/>
8+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8.1"/>
99
</startup>
1010
<connectionStrings>
1111
<add name="DefaultConnection" connectionString="Data Source=(localdb)\MSSQLLocalDB;Initial Catalog=EqDemo.AspNet4x.AdvancedSearch;Integrated Security=True;Connect Timeout=30;Encrypt=False;TrustServerCertificate=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False" providerName="System.Data.SqlClient"/>
@@ -20,4 +20,3 @@
2020
<add key="DpiAwareness" value="PerMonitorV2"/>
2121
</System.Windows.Forms.ApplicationConfigurationSection>
2222
</configuration>
23-

WinForms/EqDemoWinFormsNet4/EqDemoWinFormsNet4.csproj

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<OutputType>WinExe</OutputType>
99
<RootNamespace>EqDemo</RootNamespace>
1010
<AssemblyName>EqDemoWinFormsNet4</AssemblyName>
11-
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
11+
<TargetFrameworkVersion>v4.8.1</TargetFrameworkVersion>
1212
<FileAlignment>512</FileAlignment>
1313
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
1414
<Deterministic>true</Deterministic>
@@ -58,6 +58,8 @@
5858
<Compile Include="Models\NWind\Customer.cs" />
5959
<PackageReference Include="EasyData.Exporters.ClosedXML" Version="1.5.9" />
6060
<PackageReference Include="EasyData.Exporters.Default" Version="1.5.9" />
61+
<Compile Include="Models\NWind\Employee.cs" />
62+
<Compile Include="Models\NWind\Order.cs" />
6163
<Compile Include="Models\NWind\OrderDetail.cs" />
6264
<Compile Include="Models\NWind\Product.cs" />
6365
<Compile Include="Models\NWind\Shipper.cs" />
@@ -123,11 +125,23 @@
123125
</ItemGroup>
124126
<ItemGroup>
125127
<PackageReference Include="EasyData.Core">
126-
<Version>1.5.8</Version>
128+
<Version>1.5.9</Version>
127129
</PackageReference>
128130
<PackageReference Include="EntityFramework" Version="6.2.0" />
129131
<PackageReference Include="Microsoft.Data.SqlClient">
130-
<Version>2.1.7</Version>
132+
<Version>6.1.1</Version>
133+
</PackageReference>
134+
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions">
135+
<Version>9.0.8</Version>
136+
</PackageReference>
137+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions">
138+
<Version>9.0.8</Version>
139+
</PackageReference>
140+
<PackageReference Include="Microsoft.Extensions.Options">
141+
<Version>9.0.8</Version>
142+
</PackageReference>
143+
<PackageReference Include="Microsoft.Extensions.Primitives">
144+
<Version>9.0.8</Version>
131145
</PackageReference>
132146
<PackageReference Include="System.Data.SqlClient">
133147
<Version>4.8.6</Version>

WinForms/EqDemoWinFormsNet4/Properties/Settings.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)