Skip to content

Commit

Permalink
netcoreapp3.0 -> netcoreapp3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
yufeih committed Dec 2, 2020
1 parent 9ab8158 commit e591dc1
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ Remove-Item drop -Force -Recurse -ErrorAction Ignore
dotnet pack src/yunit -c Release -o $PSScriptRoot/drop
dotnet test -c Release
dotnet test test/yunit.nuget.test -c NuGetTest
if (-not (Test-Path -Path "$PSScriptRoot\test\yunit.nuget.test\bin\Release\netcoreapp3.0\foo")) {
if (-not (Test-Path -Path "$PSScriptRoot\test\yunit.nuget.test\bin\Release\netcoreapp3.1\foo")) {
throw 'yunit.nuget.test failed'
}
2 changes: 1 addition & 1 deletion samples/1-hello/1-hello.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion samples/3-aspnetcore-test/3-aspnetcore-test.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion samples/3-aspnetcore/3-aspnetcore.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
<RootNamespace>AspNetCoreTest</RootNamespace>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion test/yunit.nuget.test/yunit.nuget.test.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion test/yunit.test/yunit.test.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit e591dc1

Please sign in to comment.