Skip to content

Commit 99e8874

Browse files
authored
Merge pull request #61 from Martinii89/feature/net8
CC-1126: .Net 8.0 upgrade
2 parents 0434746 + da20297 commit 99e8874

10 files changed

+36
-12
lines changed

compiled_starters/csharp/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Time to move on to the next stage!
3030

3131
Note: This section is for stages 2 and beyond.
3232

33-
1. Ensure you have `dotnet (6.0)` installed locally
33+
1. Ensure you have `dotnet (8.0)` installed locally
3434
1. Run `./your_sqlite3.sh` to run your program, which is implemented in
3535
`src/Program.cs`.
3636
1. Commit your changes and run `git push origin master` to submit your solution

compiled_starters/csharp/codecrafters-sqlite.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net6.0</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66
<RootNamespace>codecrafters_sqlite</RootNamespace>
77
<ImplicitUsings>enable</ImplicitUsings>
88
<Nullable>enable</Nullable>

compiled_starters/csharp/codecrafters.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ debug: false
77
# Use this to change the C# version used to run your code
88
# on Codecrafters.
99
#
10-
# Available versions: dotnet-6.0
11-
language_pack: dotnet-6.0
10+
# Available versions: dotnet-8.0
11+
language_pack: dotnet-8.0

dockerfiles/dotnet-8.0.Dockerfile

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
FROM mcr.microsoft.com/dotnet/sdk:8.0-alpine
2+
3+
COPY codecrafters-sqlite.csproj /app/codecrafters-sqlite.csproj
4+
COPY codecrafters-sqlite.sln /app/codecrafters-sqlite.sln
5+
6+
RUN mkdir /app/src
7+
RUN (echo 'System.Console.WriteLine("If you are seeing this, there is something wrong with our caching mechanism! Please contact us at [email protected].");' > /app/src/Program.cs) > /dev/null
8+
9+
WORKDIR /app
10+
11+
# This saves nuget packages to ~/.nuget
12+
RUN dotnet build --configuration Release .
13+
14+
RUN rm /app/src/Program.cs
15+
16+
# This seems to cause a caching issue with the dotnet build command, where contents from the removed /src/Program.cs are used
17+
RUN rm -rf /app/obj
18+
RUN rm -rf /app/bin
19+
20+
RUN echo "cd \${CODECRAFTERS_SUBMISSION_DIR} && dotnet build --configuration Release ." > /codecrafters-precompile.sh
21+
RUN chmod +x /codecrafters-precompile.sh
22+
23+
ENV CODECRAFTERS_DEPENDENCY_FILE_PATHS="codecrafters-sqlite.csproj,codecrafters-sqlite.sln"
24+

solutions/csharp/01-init/code/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Time to move on to the next stage!
3030

3131
Note: This section is for stages 2 and beyond.
3232

33-
1. Ensure you have `dotnet (6.0)` installed locally
33+
1. Ensure you have `dotnet (8.0)` installed locally
3434
1. Run `./your_sqlite3.sh` to run your program, which is implemented in
3535
`src/Program.cs`.
3636
1. Commit your changes and run `git push origin master` to submit your solution

solutions/csharp/01-init/code/codecrafters-sqlite.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net6.0</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66
<RootNamespace>codecrafters_sqlite</RootNamespace>
77
<ImplicitUsings>enable</ImplicitUsings>
88
<Nullable>enable</Nullable>

solutions/csharp/01-init/code/codecrafters.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ debug: false
77
# Use this to change the C# version used to run your code
88
# on Codecrafters.
99
#
10-
# Available versions: dotnet-6.0
11-
language_pack: dotnet-6.0
10+
# Available versions: dotnet-8.0
11+
language_pack: dotnet-8.0

starter-repository-definitions.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@
128128
- source: starter_templates/.gitattributes
129129
target: .gitattributes
130130
template_attributes:
131-
required_executable: "dotnet (6.0)"
131+
required_executable: "dotnet (8.0)"
132132
user_editable_file: "src/Program.cs"
133133

134134
- language: ruby

starter_templates/codecrafters.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ language_pack: crystal-1.1
6868
language_pack: clojure-1.10.3
6969
{{/language_is_clojure}}
7070
{{#language_is_csharp}}
71-
# Available versions: dotnet-6.0
72-
language_pack: dotnet-6.0
71+
# Available versions: dotnet-8.0
72+
language_pack: dotnet-8.0
7373
{{/language_is_csharp}}
7474
{{#language_is_cpp}}
7575
# Available versions: cpp-20

starter_templates/csharp/codecrafters-sqlite.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net6.0</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66
<RootNamespace>codecrafters_sqlite</RootNamespace>
77
<ImplicitUsings>enable</ImplicitUsings>
88
<Nullable>enable</Nullable>

0 commit comments

Comments
 (0)