Skip to content

Commit 053d1e3

Browse files
committed
Updated packages
1 parent e65ddca commit 053d1e3

9 files changed

Lines changed: 19 additions & 58 deletions

File tree

AspNetCoreServiceBusApi1/AspNetCoreServiceBusApi1.csproj

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

1010
<ItemGroup>
11-
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.2.0" />
12-
<PackageReference Include="Serilog.Extensions.Hosting" Version="5.0.1" />
11+
<PackageReference Include="Serilog.Extensions.Hosting" Version="7.0.0" />
1312
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
1413
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
1514
</ItemGroup>
Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,13 @@
11
{
2-
"iisSettings": {
3-
"windowsAuthentication": false,
4-
"anonymousAuthentication": true,
5-
"iisExpress": {
6-
"applicationUrl": "https://localhost:44342/",
7-
"sslPort": 44342
8-
}
9-
},
10-
"$schema": "http://json.schemastore.org/launchsettings.json",
112
"profiles": {
12-
"IIS Express": {
13-
"commandName": "IISExpress",
14-
"launchBrowser": true,
15-
"launchUrl": "swagger",
16-
"environmentVariables": {
17-
"ASPNETCORE_ENVIRONMENT": "Development"
18-
}
19-
},
203
"AspNetCoreServiceBusApi1": {
214
"commandName": "Project",
225
"launchBrowser": true,
23-
"launchUrl": "api/values",
6+
"launchUrl": "swagger",
247
"environmentVariables": {
258
"ASPNETCORE_ENVIRONMENT": "Development"
269
},
27-
"applicationUrl": "https://localhost:5001;http://localhost:5000"
10+
"applicationUrl": "https://localhost:44342"
2811
}
2912
}
3013
}

AspNetCoreServiceBusApi2/AspNetCoreServiceBusApi2.csproj

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,11 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.2.0" />
12-
<PackageReference Include="Serilog.Extensions.Hosting" Version="5.0.1" />
11+
<PackageReference Include="Serilog.Extensions.Hosting" Version="7.0.0" />
1312
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
1413
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
15-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.5" />
16-
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.5">
14+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.13" />
15+
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.13">
1716
<PrivateAssets>all</PrivateAssets>
1817
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1918
</PackageReference>
Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,13 @@
11
{
2-
"iisSettings": {
3-
"windowsAuthentication": false,
4-
"anonymousAuthentication": true,
5-
"iisExpress": {
6-
"applicationUrl": "https://localhost:44343/",
7-
"sslPort": 44343
8-
}
9-
},
10-
"$schema": "http://json.schemastore.org/launchsettings.json",
112
"profiles": {
12-
"IIS Express": {
13-
"commandName": "IISExpress",
14-
"launchBrowser": true,
15-
"launchUrl": "swagger",
16-
"environmentVariables": {
17-
"ASPNETCORE_ENVIRONMENT": "Development"
18-
}
19-
},
203
"AspNetCoreServiceBusApi1": {
214
"commandName": "Project",
225
"launchBrowser": true,
23-
"launchUrl": "api/values",
6+
"launchUrl": "swagger",
247
"environmentVariables": {
258
"ASPNETCORE_ENVIRONMENT": "Development"
269
},
27-
"applicationUrl": "https://localhost:5001;http://localhost:5000"
10+
"applicationUrl": "https://localhost:44343"
2811
}
2912
}
3013
}
0 Bytes
Binary file not shown.

FunctionService3/FunctionService3.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<ItemGroup>
1010
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="7.0.0" />
1111
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="4.2.0" />
12-
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.ServiceBus" Version="5.9.0" />
12+
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.ServiceBus" Version="5.13.3" />
1313
<PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
1414
</ItemGroup>
1515
<ItemGroup>

README.md

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,16 @@ user secrets
1818
}
1919
}
2020
```
21-
## History
22-
23-
2023-04-28 Updated .NET 7
24-
25-
2021-11-08 Updated .NET 6
2621

27-
2021-07-20 Added IHostedService to consumer the message in the ASP.NET Core app
28-
29-
2021-05-19 Updated to .NET 5, migrated to Azure.Messaging.ServiceBus, switched Json serializer
30-
31-
2020-03-06 Added restricted access example
22+
## History
3223

33-
2019-12-08 Updated to .NET Core 3.1
24+
- 2023-11-03 Updated packages
25+
- 2023-04-28 Updated .NET 7
26+
- 2021-11-08 Updated .NET 6
27+
- 2021-07-20 Added IHostedService to consumer the message in the ASP.NET Core app
28+
- 2021-05-19 Updated to .NET 5, migrated to Azure.Messaging.ServiceBus, switched Json serializer
29+
- 2020-03-06 Added restricted access example
30+
- 2019-12-08 Updated to .NET Core 3.1
3431

3532
## Links
3633

ReducedAccessRightsQueueSender/ReducedAccessRightsQueueSender.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="Azure.Messaging.ServiceBus" Version="7.13.1" />
11+
<PackageReference Include="Azure.Messaging.ServiceBus" Version="7.16.2" />
1212
</ItemGroup>
1313

1414
</Project>

ServiceBusMessaging/ServiceBusMessaging.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Azure.Messaging.ServiceBus" Version="7.13.1" />
10+
<PackageReference Include="Azure.Messaging.ServiceBus" Version="7.16.2" />
1111
<PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
1212
<PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
1313
</ItemGroup>

0 commit comments

Comments
 (0)