Skip to content

Commit 579e2fa

Browse files
authored
Merge pull request #68 from WeihanLi/dev
9.0.0
2 parents 1ea65b7 + e01d6ce commit 579e2fa

File tree

9 files changed

+11
-16
lines changed

9 files changed

+11
-16
lines changed

.github/workflows/default.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ jobs:
1212
- name: Setup .NET SDK
1313
uses: actions/setup-dotnet@v4
1414
with:
15-
dotnet-version: |
16-
8.0.x
15+
dotnet-version: 9.0.x
1716
- name: dotnet info
1817
run: dotnet --info
1918
- name: build

.github/workflows/dotnet-format.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ jobs:
1010
- name: Setup .NET SDK
1111
uses: actions/setup-dotnet@v4
1212
with:
13-
dotnet-version: |
14-
8.0.x
15-
include-prerelease: true
13+
dotnet-version: 9.0.x
1614
- name: build
1715
run: dotnet build
1816
- name: format

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Setup .NET SDK
1313
uses: actions/setup-dotnet@v4
1414
with:
15-
dotnet-version: 8.0.x
15+
dotnet-version: 9.0.x
1616
- name: Build
1717
shell: pwsh
1818
run: .\build.ps1 --stable=true

Directory.Build.props

+4-3
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
<Import Project="./build/version.props" />
44

55
<PropertyGroup>
6-
<LangVersion>latest</LangVersion>
6+
<TargetFramework>net9.0</TargetFramework>
7+
<LangVersion>preview</LangVersion>
78
<ImplicitUsings>enable</ImplicitUsings>
89
<Nullable>enable</Nullable>
9-
<CommonVersion>1.0.71</CommonVersion>
10-
<EFVersion>8.0.11</EFVersion>
10+
<CommonVersion>1.0.72</CommonVersion>
11+
<EFVersion>9.0.0</EFVersion>
1112

1213
<PublishRepositoryUrl>true</PublishRepositoryUrl>
1314
<EmbedUntrackedSources>true</EmbedUntrackedSources>

azure-pipelines.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ steps:
1111
displayName: 'Use .NET sdk'
1212
inputs:
1313
packageType: sdk
14-
version: 8.0.x
14+
version: 9.0.x
1515
includePreviewVersions: true
1616

1717
- script: dotnet --info

build/version.props

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<Project>
22
<PropertyGroup>
3-
<VersionMajor>8</VersionMajor>
3+
<VersionMajor>9</VersionMajor>
44
<VersionMinor>0</VersionMinor>
5-
<VersionPatch>11</VersionPatch>
5+
<VersionPatch>0</VersionPatch>
66
<VersionRevision>0</VersionRevision>
77
<VersionPrefix Condition="'$(VersionRevision)'=='0' or '$(VersionRevision)'==''">$(VersionMajor).$(VersionMinor).$(VersionPatch)</VersionPrefix>
88
<VersionPrefix Condition="'$(VersionRevision)'!='0'">$(VersionMajor).$(VersionMinor).$(VersionPatch).$(VersionRevision)</VersionPrefix>

samples/WeihanLi.EntityFramework.Sample/WeihanLi.EntityFramework.Sample.csproj

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net8.0</TargetFramework>
65
</PropertyGroup>
76

87
<ItemGroup>

src/WeihanLi.EntityFramework/WeihanLi.EntityFramework.csproj

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net8.0</TargetFramework>
43
<Title>WeihanLi.EntityFramework</Title>
54
<PackageId>WeihanLi.EntityFramework</PackageId>
65
<PackageIconUrl>https://avatars3.githubusercontent.com/u/7604648</PackageIconUrl>

test/WeihanLi.EntityFramework.Test/WeihanLi.EntityFramework.Test.csproj

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
3+
<PropertyGroup>
54
<IsTestProject>true</IsTestProject>
65
<IsPackable>false</IsPackable>
76
<Nullable>disable</Nullable>

0 commit comments

Comments
 (0)