Skip to content

Commit

Permalink
upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
0xF6 committed Jan 4, 2024
1 parent 66a40ed commit 82ce241
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
WORKDIR /build
COPY . .
RUN dotnet restore
RUN dotnet publish -c Release -o /app

FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS final
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS final
WORKDIR /app
COPY --from=build /app .
RUN apt-get update \
Expand Down
34 changes: 17 additions & 17 deletions src/core.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<EnablePreviewFeatures>true</EnablePreviewFeatures>
Expand All @@ -12,28 +12,28 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AspNetCore.Firebase.Authentication" Version="2.0.1" />
<PackageReference Include="Auth0.AspNetCore.Authentication" Version="1.0.0" />
<PackageReference Include="AutoMapper" Version="10.1.1" />
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="8.1.1" />
<PackageReference Include="Auth0.AspNetCore.Authentication" Version="1.4.0" />
<PackageReference Include="AutoMapper" Version="12.0.1" />
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="12.0.1" />
<PackageReference Include="CommonMark.NET" Version="0.15.1" />
<PackageReference Include="FirebaseAdmin" Version="2.3.0" />
<PackageReference Include="Flurl.Http" Version="3.2.0" />
<PackageReference Include="Fody" Version="6.6.0">
<PackageReference Include="FirebaseAdmin" Version="2.4.0" />
<PackageReference Include="Flurl.Http" Version="4.0.0" />
<PackageReference Include="Fody" Version="6.8.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Google.Cloud.Firestore" Version="2.3.0" />
<PackageReference Include="Google.Cloud.Storage.V1" Version="3.6.0" />
<PackageReference Include="Markdig" Version="0.26.0" />
<PackageReference Include="Google.Cloud.Firestore" Version="3.4.0" />
<PackageReference Include="Google.Cloud.Storage.V1" Version="4.7.0" />
<PackageReference Include="Markdig" Version="0.34.0" />
<PackageReference Include="MethodDecorator.Fody" Version="1.1.1" />
<PackageReference Include="MethodTimer.Fody" Version="3.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.0" />
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.14.0" />
<PackageReference Include="MethodTimer.Fody" Version="3.2.2" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.0" />
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.19.5" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
<PackageReference Include="Sentry.AspNetCore" Version="3.12.2" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
<PackageReference Include="Sentry.AspNetCore" Version="3.41.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\vein-lang\lib\projectsystem\vein.project.csproj" />
Expand Down
2 changes: 1 addition & 1 deletion vein-lang
Submodule vein-lang updated 252 files

0 comments on commit 82ce241

Please sign in to comment.