File tree Expand file tree Collapse file tree 13 files changed +54
-23
lines changed Expand file tree Collapse file tree 13 files changed +54
-23
lines changed Original file line number Diff line number Diff line change 24
24
- name : Setup .NET SDK
25
25
26
26
with :
27
- dotnet-version : 8.0.x
27
+ global-json-file : global.json
28
28
- name : Build
29
29
run : dotnet build src --configuration Release -graph
30
30
- name : Set up Node.js
Original file line number Diff line number Diff line change
1
+ name : NuGet Audit
2
+ on :
3
+ workflow_dispatch :
4
+ env :
5
+ DOTNET_NOLOGO : true
6
+ jobs :
7
+ call-shared-nuget-audit :
8
+ uses : particular/shared-workflows/.github/workflows/nuget-audit.yml@main
9
+ secrets : inherit
Original file line number Diff line number Diff line change
1
+ {
2
+ "sdk" : {
3
+ "version" : " 9.0.100" ,
4
+ "rollForward" : " latestFeature"
5
+ }
6
+ }
Original file line number Diff line number Diff line change 16
16
<ItemGroup >
17
17
<FrameworkReference Include =" Microsoft.AspNetCore.App" />
18
18
</ItemGroup >
19
-
19
+
20
20
<ItemGroup >
21
+ <PackageReference Include =" MassTransit.AmazonSQS" Version =" 8.3.6" />
21
22
<PackageReference Include =" MassTransit.Azure.ServiceBus.Core" Version =" 8.3.6" />
22
23
<PackageReference Include =" MassTransit.RabbitMQ" Version =" 8.3.6" />
23
- <PackageReference Include =" MassTransit.AmazonSQS" Version =" 8.3.6" />
24
24
<PackageReference Include =" Microsoft.Extensions.Hosting" Version =" 8.0.1" />
25
25
</ItemGroup >
26
+
26
27
</Project >
Original file line number Diff line number Diff line change 1
- FROM mcr.microsoft.com/dotnet/sdk:8 .0 AS build
1
+ FROM mcr.microsoft.com/dotnet/sdk:9 .0 AS build
2
2
ARG BUILD_CONFIGURATION=Release
3
3
ARG TARGETARCH
4
4
WORKDIR /src
Original file line number Diff line number Diff line change 9
9
</PropertyGroup >
10
10
11
11
<ItemGroup >
12
- <PackageReference Include =" MassTransit.Azure.ServiceBus.Core" Version =" 8.3.6" />
13
- <PackageReference Include =" MassTransit.RabbitMQ" Version =" 8.3.6" />
14
- <PackageReference Include =" MassTransit.AmazonSQS" Version =" 8.3.6" />
15
- <PackageReference Include =" Microsoft.Extensions.Hosting" Version =" 8.0.1" />
12
+ <ProjectReference Include =" ..\Helper\Helper.csproj" />
13
+ <ProjectReference Include =" ..\Messages\Messages.csproj" />
16
14
</ItemGroup >
17
-
15
+
18
16
<ItemGroup >
19
17
<FrameworkReference Include =" Microsoft.AspNetCore.App" />
20
18
</ItemGroup >
21
-
19
+
22
20
<ItemGroup >
23
- <ProjectReference Include =" ..\Messages\Messages.csproj" />
24
- <ProjectReference Include =" ..\Helper\Helper.csproj" />
21
+ <PackageReference Include =" MassTransit.AmazonSQS" Version =" 8.3.6" />
22
+ <PackageReference Include =" MassTransit.Azure.ServiceBus.Core" Version =" 8.3.6" />
23
+ <PackageReference Include =" MassTransit.RabbitMQ" Version =" 8.3.6" />
24
+ <PackageReference Include =" Microsoft.Extensions.Hosting" Version =" 8.0.1" />
25
25
</ItemGroup >
26
+
26
27
</Project >
Original file line number Diff line number Diff line change 1
- FROM mcr.microsoft.com/dotnet/sdk:8 .0 AS build
1
+ FROM mcr.microsoft.com/dotnet/sdk:9 .0 AS build
2
2
ARG BUILD_CONFIGURATION=Release
3
3
ARG TARGETARCH
4
4
WORKDIR /src
Original file line number Diff line number Diff line change
1
+ <Project >
2
+
3
+ <PropertyGroup >
4
+ <TreatWarningsAsErrors Condition =" '$(Configuration)' != 'Debug'" >true</TreatWarningsAsErrors >
5
+ <NuGetAuditLevel >low</NuGetAuditLevel >
6
+ <NuGetAuditMode >all</NuGetAuditMode >
7
+ </PropertyGroup >
8
+
9
+ <PropertyGroup Condition =" '$(CI)' != ''" >
10
+ <ContinuousIntegrationBuild >true</ContinuousIntegrationBuild >
11
+ </PropertyGroup >
12
+
13
+ </Project >
Original file line number Diff line number Diff line change 7
7
8
8
<ItemGroup >
9
9
<PackageReference Include =" dotenv.net" Version =" 3.2.1" />
10
+ <PackageReference Include =" MassTransit.AmazonSQS" Version =" 8.3.6" />
10
11
<PackageReference Include =" MassTransit.Azure.ServiceBus.Core" Version =" 8.3.6" />
11
12
<PackageReference Include =" MassTransit.RabbitMQ" Version =" 8.3.6" />
12
- <PackageReference Include =" MassTransit.AmazonSQS" Version =" 8.3.6" />
13
13
</ItemGroup >
14
14
15
15
</Project >
Original file line number Diff line number Diff line change 1
- FROM mcr.microsoft.com/dotnet/sdk:8 .0 AS build
1
+ FROM mcr.microsoft.com/dotnet/sdk:9 .0 AS build
2
2
ARG BUILD_CONFIGURATION=Release
3
3
ARG TARGETARCH
4
4
WORKDIR /src
You can’t perform that action at this time.
0 commit comments