Skip to content

Commit

Permalink
Update dependency Microsoft.AspNetCore.App to v2.2.4 (#502)
Browse files Browse the repository at this point in the history
* Update dependency Microsoft.AspNetCore.App to v2.2.4

* Minor documentation restructuring (#503)

Relates to #485

* Update dependency Microsoft.Azure.Storage.Queue to v10.0.1 (#506)

* Update .NET SDK + Runtime versions

Signed-off-by: Tom Kerkhove <kerkhove.tom@gmail.com>

* Update dependency Microsoft.AspNetCore.App to v2.2.4

* Update .NET SDK + Runtime versions

Signed-off-by: Tom Kerkhove <kerkhove.tom@gmail.com>
  • Loading branch information
renovate[bot] authored and tomkerkhove committed Apr 10, 2019
1 parent 6bd9692 commit dbaab89
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .azure-devops/agents-scraper-release-official.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pr: none
pool:
name: Hosted Ubuntu 1604
variables:
DotNet.SDK.Version: '2.2.202'
DotNet.SDK.Version: '2.2.203'
Image.Name: 'tomkerkhove/promitor-agent-scraper'
Image.TaggedName: '$(Image.Name):$(Image.Version)'
Release.TagName: '$(Build.BuildNumber)'
Expand Down
2 changes: 1 addition & 1 deletion .azure-devops/agents-scraper-release-preview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pr: none
pool:
name: Hosted Ubuntu 1604
variables:
DotNet.SDK.Version: '2.2.202'
DotNet.SDK.Version: '2.2.203'
Image.Name: 'tomkerkhove/promitor-agent-scraper'
Image.TaggedName: '$(Image.Name):$(Image.Version)'
Release.TagName: '$(Build.BuildNumber)'
Expand Down
2 changes: 1 addition & 1 deletion .azure-devops/scraper-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pr:
- src/*
- .azure-devops/scraper-ci.yml
variables:
DotNet.SDK.Version: '2.2.202'
DotNet.SDK.Version: '2.2.203'
Image.TaggedName: 'tomkerkhove/promitor-agent-scraper-ci:$(Build.BuildNumber)'
jobs:
- job: Build_Job
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

<ItemGroup>
<PackageReference Include="Guard.NET" Version="1.2.0" />
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.2.3" />
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.2.4" />
<PackageReference Include="Microsoft.Azure.Management.Fluent" Version="1.20.0" />
<PackageReference Include="Microsoft.Azure.Management.Monitor.Fluent" Version="1.20.0" />
<PackageReference Include="Microsoft.Data.OData" Version="5.8.4" />
Expand Down
4 changes: 2 additions & 2 deletions src/Promitor.Scraper.Host/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/core/sdk:2.2.202 AS build
FROM mcr.microsoft.com/dotnet/core/sdk:2.2.203 AS build
WORKDIR /src
COPY Promitor.Core/* Promitor.Core/
COPY Promitor.Core.Scraping/* Promitor.Core.Scraping/
Expand All @@ -9,7 +9,7 @@ COPY Promitor.Scraper.Host/* Promitor.Scraper.Host/
RUN dotnet --info
RUN dotnet publish Promitor.Scraper.Host/Promitor.Scraper.Host.csproj --configuration release -o app

FROM mcr.microsoft.com/dotnet/core/aspnet:2.2.3 as runtime
FROM mcr.microsoft.com/dotnet/core/aspnet:2.2.4 as runtime
WORKDIR /app
COPY --from=build /src/Promitor.Scraper.Host/app .

Expand Down
2 changes: 1 addition & 1 deletion src/Promitor.Scraper.Host/Promitor.Scraper.Host.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

<ItemGroup>
<PackageReference Include="CronScheduler.AspNetCore" Version="1.0.12" />
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.2.3" />
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.2.4" />
<PackageReference Include="Prometheus.Client.AspNetCore" Version="2.2.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="4.0.1" />
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="4.0.1" />
Expand Down

0 comments on commit dbaab89

Please sign in to comment.