Skip to content

Commit dba5bf2

Browse files
committed
[up] top level projects switch to .NET 8
1 parent efebfe5 commit dba5bf2

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.vscode/launch.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"type": "coreclr",
77
"request": "launch",
88
"preLaunchTask": "Build Angular Example",
9-
"program": "${workspaceFolder}/src/SampleApps/SampleApp.Angular/bin/Debug/net7.0/SampleApp.Angular.dll",
9+
"program": "${workspaceFolder}/src/SampleApps/SampleApp.Angular/bin/Debug/net8.0/SampleApp.Angular.dll",
1010
"cwd": "${workspaceFolder}/src/SampleApps/SampleApp.Angular/",
1111
"internalConsoleOptions": "openOnSessionStart",
1212
"serverReadyAction": {
@@ -23,8 +23,8 @@
2323
"type": "coreclr",
2424
"request": "launch",
2525
"preLaunchTask": "Build Classic Example",
26-
"program": "${workspaceFolder}/src/SampleApps/SampleApp.Classic/bin/Debug/net7.0/SampleApp.Classic.dll",
27-
"cwd": "${workspaceFolder}/src/SampleApps/SampleApp.Classic/bin/Debug/net7.0/",
26+
"program": "${workspaceFolder}/src/SampleApps/SampleApp.Classic/bin/Debug/net8.0/SampleApp.Classic.dll",
27+
"cwd": "${workspaceFolder}/src/SampleApps/SampleApp.Classic/bin/Debug/net8.0/",
2828
"internalConsoleOptions": "openOnSessionStart",
2929
"serverReadyAction": {
3030
"action": "openExternally",

src/SampleApps/SampleApp.Angular/SampleApp.Angular.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22
<PropertyGroup>
3-
<TargetFramework>net7.0</TargetFramework>
3+
<TargetFramework>net8.0</TargetFramework>
44
<Nullable>enable</Nullable>
55
<ImplicitUsings>enable</ImplicitUsings>
66

src/SampleApps/SampleApp.Classic.Tests/SampleApp.Classic.Tests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net7.0</TargetFramework>
3+
<TargetFramework>net8.0</TargetFramework>
44

55
<Authors>Alexander Krylkov</Authors>
66
<Product>Simplify</Product>

src/SampleApps/SampleApp.Classic/SampleApp.Classic.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk" InitialTargets="BeforeBuild">
22
<PropertyGroup>
3-
<TargetFramework>net7.0</TargetFramework>
3+
<TargetFramework>net8.0</TargetFramework>
44
<OutputType>Exe</OutputType>
55
<IsPackable>false</IsPackable>
66

src/Simplify.Web.RegistrationsTests/Simplify.Web.RegistrationsTests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net7.0</TargetFramework>
3+
<TargetFramework>net8.0</TargetFramework>
44
<Nullable>enable</Nullable>
55
<WarningsAsErrors>nullable</WarningsAsErrors>
66

src/Simplify.Web.Tests/Simplify.Web.Tests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net7.0</TargetFramework>
3+
<TargetFramework>net8.0</TargetFramework>
44
<Nullable>enable</Nullable>
55
<WarningsAsErrors>nullable</WarningsAsErrors>
66

0 commit comments

Comments
 (0)