Skip to content

Commit 41c474e

Browse files
authored
[ODS-6805] Update DB Deploy to net10 (#84)
* net10_Update * Update_nuget_dependencies
1 parent 91e312f commit 41c474e

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

.vscode/launch.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"type": "coreclr",
1010
"request": "launch",
1111
"preLaunchTask": "build",
12-
"program": "${workspaceFolder}/src/EdFi.Db.Deploy/bin/Debug/net8.0/EdFi.Db.Deploy.dll",
12+
"program": "${workspaceFolder}/src/EdFi.Db.Deploy/bin/Debug/net10.0/EdFi.Db.Deploy.dll",
1313
"args": [
1414
"deploy",
1515
"--engine",
@@ -27,7 +27,7 @@
2727
"type": "coreclr",
2828
"request": "launch",
2929
"preLaunchTask": "build",
30-
"program": "${workspaceFolder}/src/EdFi.Db.Deploy/bin/Debug/net8.0/EdFi.Db.Deploy.dll",
30+
"program": "${workspaceFolder}/src/EdFi.Db.Deploy/bin/Debug/net10.0/EdFi.Db.Deploy.dll",
3131
"args": [
3232
"deploy",
3333
"--engine",
@@ -48,7 +48,7 @@
4848
"type": "coreclr",
4949
"request": "launch",
5050
"preLaunchTask": "build",
51-
"program": "${workspaceFolder}/src/EdFi.Db.Deploy/bin/Debug/net8.0/EdFi.Db.Deploy.dll",
51+
"program": "${workspaceFolder}/src/EdFi.Db.Deploy/bin/Debug/net10.0/EdFi.Db.Deploy.dll",
5252
"args": [
5353
"deploy",
5454
"--engine",
@@ -72,7 +72,7 @@
7272
"type": "coreclr",
7373
"request": "launch",
7474
"preLaunchTask": "build",
75-
"program": "${workspaceFolder}/src/EdFi.Db.Deploy/bin/Debug/net8.0/EdFi.Db.Deploy.dll",
75+
"program": "${workspaceFolder}/src/EdFi.Db.Deploy/bin/Debug/net10.0/EdFi.Db.Deploy.dll",
7676
"args": [
7777
"whatif",
7878
"--engine",
@@ -90,7 +90,7 @@
9090
"type": "coreclr",
9191
"request": "launch",
9292
"preLaunchTask": "build",
93-
"program": "${workspaceFolder}/src/EdFi.Db.Deploy/bin/Debug/net8.0/EdFi.Db.Deploy.dll",
93+
"program": "${workspaceFolder}/src/EdFi.Db.Deploy/bin/Debug/net10.0/EdFi.Db.Deploy.dll",
9494
"args": [
9595
"deploy",
9696
"--engine",
@@ -108,7 +108,7 @@
108108
"type": "coreclr",
109109
"request": "launch",
110110
"preLaunchTask": "build",
111-
"program": "${workspaceFolder}/src/EdFi.Db.Deploy/bin/Debug/net8.0/EdFi.Db.Deploy.dll",
111+
"program": "${workspaceFolder}/src/EdFi.Db.Deploy/bin/Debug/net10.0/EdFi.Db.Deploy.dll",
112112
"args": [
113113
"deploy",
114114
"--engine",
@@ -129,7 +129,7 @@
129129
"type": "coreclr",
130130
"request": "launch",
131131
"preLaunchTask": "build",
132-
"program": "${workspaceFolder}/src/EdFi.Db.Deploy/bin/Debug/net8.0/EdFi.Db.Deploy.dll",
132+
"program": "${workspaceFolder}/src/EdFi.Db.Deploy/bin/Debug/net10.0/EdFi.Db.Deploy.dll",
133133
"args": [
134134
"deploy",
135135
"--engine",
@@ -153,7 +153,7 @@
153153
"type": "coreclr",
154154
"request": "launch",
155155
"preLaunchTask": "build",
156-
"program": "${workspaceFolder}/src/EdFi.Db.Deploy/bin/Debug/net8.0/EdFi.Db.Deploy.dll",
156+
"program": "${workspaceFolder}/src/EdFi.Db.Deploy/bin/Debug/net10.0/EdFi.Db.Deploy.dll",
157157
"args": [
158158
"whatif",
159159
"--engine",

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ For more information, see:
1515

1616
### Build Instructions
1717

18-
- Requires [.NET 8 SDK](https://dotnet.microsoft.com/download)
18+
- Requires [.NET 10 SDK](https://dotnet.microsoft.com/download)
1919
- No special commands to execute - simply call `dotnet build` in the `src`
2020
directory.
2121

src/EdFi.Db.Deploy/EdFi.Db.Deploy.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<RootNamespace>EdFi.Db.Deploy</RootNamespace>
66
<AssemblyName>EdFi.Db.Deploy</AssemblyName>
77
<AssemblyVersion>0.0.0</AssemblyVersion>
@@ -28,9 +28,9 @@
2828
<PackageReference Include="dbup-postgresql" Version="6.0.3" />
2929
<PackageReference Include="dbup-sqlserver" Version="6.0.0" />
3030
<PackageReference Include="log4net" Version="3.2.0" />
31-
<PackageReference Include="Microsoft.Data.SqlClient" Version="6.1.2" />
32-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.1" />
33-
<PackageReference Include="Npgsql" Version="9.0.4" />
31+
<PackageReference Include="Microsoft.Data.SqlClient" Version="6.1.3" />
32+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.0" />
33+
<PackageReference Include="Npgsql" Version="10.0.1" />
3434
</ItemGroup>
3535
<ItemGroup>
3636
<None Update="log4net.config">

tests/EdFi.Db.Deploy.Tests/EdFi.Db.Deploy.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
66
<OutputType>Library</OutputType>
77
<IsTestProject>true</IsTestProject>
88
</PropertyGroup>
99

1010
<ItemGroup>
1111
<PackageReference Include="FakeItEasy" Version="8.3.0" />
12-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.0" />
12+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
1313
<PackageReference Include="NUnit" Version="4.4.0" />
1414
<PackageReference Include="NUnit3TestAdapter" Version="5.2.0">
1515
<PrivateAssets>all</PrivateAssets>

0 commit comments

Comments
 (0)