Skip to content

Commit

Permalink
Merge branch 'upgrade-to-net7' into minimal-app
Browse files Browse the repository at this point in the history
  • Loading branch information
wallymathieu committed Aug 31, 2023
2 parents 5525e53 + d1afc34 commit f6fd65e
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
version: 0.1.0-{build}
image:
- Visual Studio 2017
- Visual Studio 2019
- Ubuntu
environment:
DOTNET_CLI_TELEMETRY_OPTOUT: 1
init:
- git config --global core.autocrlf true
install:
- ps: .\.psscripts\install-dotnet.ps1 -SdkVersions "3.1.201"
- ps: .\.psscripts\install-dotnet.ps1 -SdkVersions "7.0.307"
build: off
build_script:
- ps: .\build.ps1
Expand Down
2 changes: 1 addition & 1 deletion demo-apps/GoogleAuthApp/GoogleAuthApp/GoogleAuthApp.fsproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net7</TargetFramework>
<DebugType>portable</DebugType>
<EnableDefaultContentItems>false</EnableDefaultContentItems>
<RunWorkingDirectory>$(MSBuildThisFileDirectory)</RunWorkingDirectory>
Expand Down
2 changes: 1 addition & 1 deletion demo-apps/IdentityApp/IdentityApp/IdentityApp.fsproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net7</TargetFramework>
<DebugType>portable</DebugType>
<EnableDefaultContentItems>false</EnableDefaultContentItems>
<RunWorkingDirectory>$(MSBuildThisFileDirectory)</RunWorkingDirectory>
Expand Down
2 changes: 1 addition & 1 deletion demo-apps/JwtApp/JwtApp/JwtApp.fsproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net7</TargetFramework>
<EnableDefaultContentItems>false</EnableDefaultContentItems>
<RunWorkingDirectory>$(MSBuildThisFileDirectory)</RunWorkingDirectory>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion demo-apps/SampleApp/SampleApp.Tests/SampleApp.Tests.fsproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net7</TargetFramework>
<AssemblyName>SampleApp.Tests</AssemblyName>
<DebugType>portable</DebugType>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion demo-apps/SampleApp/SampleApp/SampleApp.fsproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net7</TargetFramework>
<EnableDefaultContentItems>false</EnableDefaultContentItems>
<RunWorkingDirectory>$(MSBuildThisFileDirectory)</RunWorkingDirectory>
</PropertyGroup>
Expand Down

0 comments on commit f6fd65e

Please sign in to comment.