feat: update to net8.0

This commit is contained in:
Jonas Juselius
2023-12-31 10:35:42 +01:00
parent 11e2947c6d
commit 72f6ff4abe
4 changed files with 15 additions and 16 deletions

View File

@@ -1,13 +1,12 @@
FROM mcr.microsoft.com/dotnet/sdk:7.0
FROM mcr.microsoft.com/dotnet/sdk:8.0
# Add keys and sources lists
RUN apt-get update && apt-get install -y ca-certificates gnupg
RUN mkdir -p /etc/apt/keyrings
RUN curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
ENV NODE_MAJOR=20
RUN echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list
RUN curl -sL https://deb.nodesource.com/setup_18.x | bash
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" \
| tee /etc/apt/sources.list.d/yarn.list
# Install node, 7zip, git, process tools
# Install node, 7zip, yarn, git, process tools
RUN apt-get update \
&& apt-get install -y nodejs p7zip-full git procps ssh-client

View File

@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include=".build/Helpers.fs" />
@@ -11,7 +11,7 @@
<PackageReference Include="Fake.Core.Target" Version="6.0.0" />
<PackageReference Include="Fake.DotNet.Cli" Version="6.0.0" />
<PackageReference Include="Fake.IO.FileSystem" Version="6.0.0" />
<PackageReference Include="Farmer" Version="1.7.18" />
<PackageReference Update="FSharp.Core" Version="7.0.200" />
<PackageReference Include="Farmer" Version="1.8.3" />
<PackageReference Update="FSharp.Core" Version="8.0.100" />
</ItemGroup>
</Project>

View File

@@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<IsPackable>true</IsPackable>
<PackageId>ProjNet.FSharp</PackageId>
<Authors/>
@@ -15,8 +15,8 @@
<Compile Include="Transformations.fs"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="FSharp.Data" Version="5.0.2"/>
<PackageReference Include="FSharpPlus" Version="1.4.0"/>
<PackageReference Include="FSharp.Data" Version="6.3.0" />
<PackageReference Include="FSharpPlus" Version="1.5.0" />
<PackageReference Include="ProjNet" Version="2.0.0"/>
</ItemGroup>
</Project>

View File

@@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="Tests.fs" />
@@ -11,7 +11,7 @@
<ProjectReference Include="..\src\ProjNet.FSharp.fsproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Expecto" Version="9.0.4" />
<PackageReference Update="FSharp.Core" Version="7.0.200" />
<PackageReference Include="Expecto" Version="10.1.0" />
<PackageReference Update="FSharp.Core" Version="8.0.100" />
</ItemGroup>
</Project>