Skip to content

Commit 0827ce1

Browse files
committed
refs
1 parent debcfd3 commit 0827ce1

6 files changed

Lines changed: 13 additions & 12 deletions

File tree

src/GraphQL.EntityFramework.sln

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
88
appveyor.yml = appveyor.yml
99
Directory.Build.props = Directory.Build.props
1010
mdsnippets.json = mdsnippets.json
11+
global.json = global.json
1112
EndProjectSection
1213
EndProject
1314
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GraphQL.EntityFramework", "GraphQL.EntityFramework\GraphQL.EntityFramework.csproj", "{92E64F4E-6A8E-43C2-9C8D-694E0327BEF0}"

src/GraphQL.EntityFramework/GraphQL.EntityFramework.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
1212
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.10" />
1313
<PackageReference Include="Nullability" Version="2.0.4" />
14-
<PackageReference Include="ProjectDefaults" Version="1.0.80" PrivateAssets="all" />
14+
<PackageReference Include="ProjectDefaults" Version="1.0.81" PrivateAssets="all" />
1515
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" Condition="$(Configuration) == 'Release'" />
1616
<Using Include="System.Linq.Expressions" />
1717
<Using Include="GraphQL.Types" />
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net6.0</TargetFramework>
3+
<TargetFramework>net7.0</TargetFramework>
44
<SignAssembly>false</SignAssembly>
55
</PropertyGroup>
66
<ItemGroup>
77
<PackageReference Include="GraphQL" Version="7.1.1" />
88
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="6.0.10" />
99
<PackageReference Include="Xunit" Version="2.4.2" />
10-
<PackageReference Include="Verify.Xunit" Version="18.0.0" />
10+
<PackageReference Include="Verify.Xunit" Version="18.1.1" />
1111
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5" PrivateAssets="All" />
1212
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
1313
<ProjectReference Include="..\SampleWeb\SampleWeb.csproj" />
14-
<PackageReference Include="ProjectDefaults" Version="1.0.80" PrivateAssets="all" />
14+
<PackageReference Include="ProjectDefaults" Version="1.0.81" PrivateAssets="all" />
1515
</ItemGroup>
1616
</Project>

src/SampleWeb/SampleWeb.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22
<PropertyGroup>
3-
<TargetFramework>net6.0</TargetFramework>
3+
<TargetFramework>net7.0</TargetFramework>
44
<SignAssembly>false</SignAssembly>
55
</PropertyGroup>
66
<ItemGroup>
@@ -12,6 +12,6 @@
1212
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.10" />
1313
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.10" />
1414
<ProjectReference Include="..\GraphQL.EntityFramework\GraphQL.EntityFramework.csproj" />
15-
<PackageReference Include="ProjectDefaults" Version="1.0.80" PrivateAssets="all" />
15+
<PackageReference Include="ProjectDefaults" Version="1.0.81" PrivateAssets="all" />
1616
</ItemGroup>
1717
</Project>

src/Snippets/Snippets.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net6.0</TargetFramework>
3+
<TargetFramework>net7.0</TargetFramework>
44
</PropertyGroup>
55
<ItemGroup>
66
<PackageReference Include="GraphQL" Version="7.1.1" />
77
<PackageReference Include="MarkdownSnippets.MsBuild" Version="24.5.0" PrivateAssets="all" />
88
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.10" />
99
<PackageReference Include="Xunit" Version="2.4.2" />
10-
<PackageReference Include="Verify.Xunit" Version="18.0.0" />
10+
<PackageReference Include="Verify.Xunit" Version="18.1.1" />
1111
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5" PrivateAssets="All" />
1212
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
1313
<ProjectReference Include="..\GraphQL.EntityFramework\GraphQL.EntityFramework.csproj" />
14-
<PackageReference Include="ProjectDefaults" Version="1.0.80" PrivateAssets="all" />
14+
<PackageReference Include="ProjectDefaults" Version="1.0.81" PrivateAssets="all" />
1515
</ItemGroup>
1616
</Project>

src/Tests/Tests.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net6.0</TargetFramework>
3+
<TargetFramework>net7.0</TargetFramework>
44
<NoWarn>EF1000</NoWarn>
55
</PropertyGroup>
66
<ItemGroup>
@@ -10,11 +10,11 @@
1010
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.10" />
1111
<PackageReference Include="Verify.SqlServer" Version="4.0.0" />
1212
<PackageReference Include="Xunit" Version="2.4.2" />
13-
<PackageReference Include="Verify.Xunit" Version="18.0.0" />
13+
<PackageReference Include="Verify.Xunit" Version="18.1.1" />
1414
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5" PrivateAssets="All" />
1515
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
1616
<ProjectReference Include="..\GraphQL.EntityFramework\GraphQL.EntityFramework.csproj" />
17-
<PackageReference Include="ProjectDefaults" Version="1.0.80" PrivateAssets="all" />
17+
<PackageReference Include="ProjectDefaults" Version="1.0.81" PrivateAssets="all" />
1818

1919
<Using Include="GraphQL.EntityFramework" />
2020
<Using Include="GraphQL" />

0 commit comments

Comments
 (0)