Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/src/EdFi.Db.Deploy/bin/Debug/net8.0/EdFi.Db.Deploy.dll",
"program": "${workspaceFolder}/src/EdFi.Db.Deploy/bin/Debug/net10.0/EdFi.Db.Deploy.dll",
"args": [
"deploy",
"--engine",
Expand All @@ -27,7 +27,7 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/src/EdFi.Db.Deploy/bin/Debug/net8.0/EdFi.Db.Deploy.dll",
"program": "${workspaceFolder}/src/EdFi.Db.Deploy/bin/Debug/net10.0/EdFi.Db.Deploy.dll",
"args": [
"deploy",
"--engine",
Expand All @@ -48,7 +48,7 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/src/EdFi.Db.Deploy/bin/Debug/net8.0/EdFi.Db.Deploy.dll",
"program": "${workspaceFolder}/src/EdFi.Db.Deploy/bin/Debug/net10.0/EdFi.Db.Deploy.dll",
"args": [
"deploy",
"--engine",
Expand All @@ -72,7 +72,7 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/src/EdFi.Db.Deploy/bin/Debug/net8.0/EdFi.Db.Deploy.dll",
"program": "${workspaceFolder}/src/EdFi.Db.Deploy/bin/Debug/net10.0/EdFi.Db.Deploy.dll",
"args": [
"whatif",
"--engine",
Expand All @@ -90,7 +90,7 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/src/EdFi.Db.Deploy/bin/Debug/net8.0/EdFi.Db.Deploy.dll",
"program": "${workspaceFolder}/src/EdFi.Db.Deploy/bin/Debug/net10.0/EdFi.Db.Deploy.dll",
"args": [
"deploy",
"--engine",
Expand All @@ -108,7 +108,7 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/src/EdFi.Db.Deploy/bin/Debug/net8.0/EdFi.Db.Deploy.dll",
"program": "${workspaceFolder}/src/EdFi.Db.Deploy/bin/Debug/net10.0/EdFi.Db.Deploy.dll",
"args": [
"deploy",
"--engine",
Expand All @@ -129,7 +129,7 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/src/EdFi.Db.Deploy/bin/Debug/net8.0/EdFi.Db.Deploy.dll",
"program": "${workspaceFolder}/src/EdFi.Db.Deploy/bin/Debug/net10.0/EdFi.Db.Deploy.dll",
"args": [
"deploy",
"--engine",
Expand All @@ -153,7 +153,7 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/src/EdFi.Db.Deploy/bin/Debug/net8.0/EdFi.Db.Deploy.dll",
"program": "${workspaceFolder}/src/EdFi.Db.Deploy/bin/Debug/net10.0/EdFi.Db.Deploy.dll",
"args": [
"whatif",
"--engine",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ For more information, see:

### Build Instructions

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

Expand Down
8 changes: 4 additions & 4 deletions src/EdFi.Db.Deploy/EdFi.Db.Deploy.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<RootNamespace>EdFi.Db.Deploy</RootNamespace>
<AssemblyName>EdFi.Db.Deploy</AssemblyName>
<AssemblyVersion>0.0.0</AssemblyVersion>
Expand All @@ -28,9 +28,9 @@
<PackageReference Include="dbup-postgresql" Version="6.0.3" />
<PackageReference Include="dbup-sqlserver" Version="6.0.0" />
<PackageReference Include="log4net" Version="3.2.0" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="6.1.2" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.1" />
<PackageReference Include="Npgsql" Version="9.0.4" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="6.1.3" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.0" />
<PackageReference Include="Npgsql" Version="10.0.1" />
</ItemGroup>
<ItemGroup>
<None Update="log4net.config">
Expand Down
4 changes: 2 additions & 2 deletions tests/EdFi.Db.Deploy.Tests/EdFi.Db.Deploy.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<OutputType>Library</OutputType>
<IsTestProject>true</IsTestProject>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FakeItEasy" Version="8.3.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
<PackageReference Include="NUnit" Version="4.4.0" />
<PackageReference Include="NUnit3TestAdapter" Version="5.2.0">
<PrivateAssets>all</PrivateAssets>
Expand Down
Loading