File tree 5 files changed +31
-23
lines changed
5 files changed +31
-23
lines changed Original file line number Diff line number Diff line change 1
- FROM postgres
1
+ FROM postgres:17
2
2
RUN apt-get update && \
3
- apt-get install -y --no-install-recommends openssl postgresql-16 -postgis-3
3
+ apt-get install -y --no-install-recommends openssl postgresql-17 -postgis-3
Original file line number Diff line number Diff line change 5
5
6
6
"workspaceFolder" : " /workspace" ,
7
7
8
- "settings" : {
9
- "terminal.integrated.profiles.linux" : {
10
- "bash" : {
11
- "path" : " /bin/bash"
12
- }
13
- },
14
- "terminal.integrated.defaultProfile.linux" : " bash" ,
15
- "remote.extensionKind" : {
16
- "ms-azuretools.vscode-docker" : " workspace"
8
+ "customizations" : {
9
+ "vscode" : {
10
+ "settings" : {
11
+ "terminal.integrated.profiles.linux" : {
12
+ "bash" : {
13
+ "path" : " /bin/bash"
14
+ }
15
+ },
16
+ "terminal.integrated.defaultProfile.linux" : " bash" ,
17
+ "remote.extensionKind" : {
18
+ "ms-azuretools.vscode-docker" : " workspace"
19
+ }
20
+ },
21
+
22
+ "extensions" : [
23
+ " ms-dotnettools.csharp" ,
24
+ " formulahendry.dotnet-test-explorer" ,
25
+ " ms-azuretools.vscode-docker" ,
26
+ " mutantdino.resourcemonitor"
27
+ ]
17
28
}
18
29
},
19
-
20
- "extensions" : [
21
- " ms-dotnettools.csharp" ,
22
- " formulahendry.dotnet-test-explorer" ,
23
- " ms-azuretools.vscode-docker" ,
24
- " mutantdino.resourcemonitor"
25
- ],
26
-
30
+
27
31
"forwardPorts" : [5432 , 5050 ],
28
32
29
33
"remoteEnv" : {
Original file line number Diff line number Diff line change @@ -2,8 +2,7 @@ version: '3'
2
2
3
3
services :
4
4
npgsql-dev :
5
- # Source for tags: https://mcr.microsoft.com/v2/dotnet/sdk/tags/list
6
- image : mcr.microsoft.com/dotnet/sdk:8.0.100
5
+ build : ./dotnet
7
6
volumes :
8
7
- ..:/workspace:cached
9
8
tty : true
Original file line number Diff line number Diff line change
1
+ # Source for tags: https://mcr.microsoft.com/v2/dotnet/sdk/tags/list
2
+ FROM mcr.microsoft.com/dotnet/sdk:9.0
3
+
4
+ # "install" the .NET 8 runtime
5
+ COPY --from=mcr.microsoft.com/dotnet/sdk:8.0 /usr/share/dotnet/shared /usr/share/dotnet/shared
Original file line number Diff line number Diff line change 1
1
{
2
- "omnisharp.defaultLaunchSolution " : " Npgsql.sln " ,
3
- "dotnet-test-explorer.testProjectPath " : " **/*.Tests.csproj "
2
+ "dotnet-test-explorer.testProjectPath " : " **/*.Tests.csproj " ,
3
+ "dotnet.defaultSolution " : " Npgsql.sln "
4
4
}
You can’t perform that action at this time.
0 commit comments