Skip to content

Commit 476fe09

Browse files
committed
Auto csproj fix and update by bot.
1 parent 740b106 commit 476fe09

7 files changed

Lines changed: 30 additions & 30 deletions

File tree

samples/NCaptcha.Samples.AspNetCore/NCaptcha.Samples.AspNetCore.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
<Project Sdk="Microsoft.NET.Sdk.Web">
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp2.2</TargetFramework>
4+
<TargetFramework>net6.0</TargetFramework>
55
<UserSecretsId>aspnet-NCaptcha.Samples.AspNetCore-B774D57B-B2FA-48F1-B631-AC26C6E4EA3C</UserSecretsId>
66
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.AspNetCore.App" />
11-
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.2.0" PrivateAssets="All" />
12-
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.2.3" />
10+
11+
12+
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="6.0.10" />
1313
</ItemGroup>
1414

1515
<ItemGroup>

src/NCaptcha.AspNetCore.SessionEmail/NCaptcha.AspNetCore.SessionEmail.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
2-
<Import Project="../../build/common.props" />
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<Import Project="../../build/common.props"></Import>
33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Microsoft.Extensions.Configuration" Version="2.2.0" />
9-
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="2.2.0" />
8+
<PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.1" />
9+
1010
</ItemGroup>
1111

1212
<ItemGroup>
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<Import Project="../../build/common.props" />
3+
<Import Project="../../build/common.props"></Import>
44

55
<PropertyGroup>
66
<TargetFramework>netstandard2.0</TargetFramework>
@@ -10,6 +10,6 @@
1010
<ProjectReference Include="..\NCaptcha.AspNetCore\NCaptcha.AspNetCore.csproj" />
1111
<ProjectReference Include="..\NCaptcha.State.Session\NCaptcha.State.Session.csproj" />
1212
<ProjectReference Include="..\NCaptcha.Targets.Images\NCaptcha.Targets.Images.csproj" />
13-
<ProjectReference Include="..\NCaptcha\NCaptcha.csproj" />
13+
1414
</ItemGroup>
1515
</Project>

src/NCaptcha.Targets.Email/NCaptcha.Targets.Email.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
2-
<Import Project="../../build/common.props" />
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<Import Project="../../build/common.props"></Import>
33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="MailKit" Version="2.3.0" />
9-
<PackageReference Include="Microsoft.Extensions.Options" Version="2.2.0" />
8+
<PackageReference Include="MailKit" Version="3.4.1" />
9+
<PackageReference Include="Microsoft.Extensions.Options" Version="6.0.0" />
1010
</ItemGroup>
1111

1212
<ItemGroup>
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<Import Project="../../build/common.props" />
3+
<Import Project="../../build/common.props"></Import>
44

55
<PropertyGroup>
66
<TargetFramework>netstandard2.0</TargetFramework>
@@ -11,6 +11,6 @@
1111
</ItemGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="System.Drawing.Common" Version="4.5.1" />
14+
<PackageReference Include="System.Drawing.Common" Version="6.0.0" />
1515
</ItemGroup>
1616
</Project>
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
2-
<Import Project="../../build/common.props" />
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<Import Project="../../build/common.props"></Import>
33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Microsoft.Extensions.Http" Version="2.2.0" />
9-
<PackageReference Include="Microsoft.Extensions.Options" Version="2.2.0" />
10-
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
8+
<PackageReference Include="Microsoft.Extensions.Http" Version="6.0.0" />
9+
10+
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
1111
</ItemGroup>
1212

1313
<ItemGroup>
1414
<ProjectReference Include="..\NCaptcha.Targets.Sms\NCaptcha.Targets.Sms.csproj" />
15-
<ProjectReference Include="..\NCaptcha\NCaptcha.csproj" />
15+
1616
</ItemGroup>
1717
</Project>

src/NCaptcha/NCaptcha.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<Import Project="../../build/common.props" />
3+
<Import Project="../../build/common.props"></Import>
44

55
<PropertyGroup>
66
<TargetFramework>netstandard2.0</TargetFramework>
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="2.2.0" />
11-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="2.2.0" />
12-
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.3" />
10+
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0" />
11+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.2" />
12+
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" />
1313
</ItemGroup>
1414
</Project>

0 commit comments

Comments
 (0)