Skip to content

Commit

Permalink
Update to .NET SDK 7 Preview 5
Browse files Browse the repository at this point in the history
Co-authored-by: Brice Lambson <[email protected]>
  • Loading branch information
AndriySvyryd and bricelam authored Jun 24, 2022
1 parent 4129cdc commit d42e736
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
1 change: 1 addition & 0 deletions All.sln
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
Directory.Build.props = Directory.Build.props
Directory.Build.targets = Directory.Build.targets
tools\Resources.tt = tools\Resources.tt
eng\Versions.props = eng\Versions.props
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{CE6B50B2-34AE-44C9-940A-4E48C3E1B3BC}"
Expand Down
4 changes: 2 additions & 2 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"tools": {
"dotnet": "7.0.100-preview.4.22252.9"
"dotnet": "7.0.100-preview.5.22307.18"
},
"sdk": {
"version": "7.0.100-preview.4.22252.9",
"version": "7.0.100-preview.5.22307.18",
"allowPrerelease": true,
"rollForward": "latestMajor"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ protected ConfigurationDbContextTestBase(ConfigurationDbContextFixtureBase fixtu

protected ConfigurationDbContextFixtureBase Fixture { get; }

[ConditionalFact]
[ConditionalFact(Skip = "VerificationException : Method System.Linq.Enumerable.MaxFloat: type argument 'System.Char' violates the constraint of type parameter 'T'.")]
public async Task Can_call_ResourceStore_FindApiScopesByNameAsync()
=> await ExecuteWithStrategyInTransactionAsync(
async context =>
Expand Down Expand Up @@ -70,7 +70,7 @@ private static async Task SaveApiScopes(ConfigurationDbContext context)
await context.SaveChangesAsync();
}

[ConditionalFact]
[ConditionalFact(Skip = "VerificationException : Method System.Linq.Enumerable.MaxFloat: type argument 'System.Char' violates the constraint of type parameter 'T'.")]
public async Task Can_call_ClientStore_FindClientByIdAsync()
=> await ExecuteWithStrategyInTransactionAsync(
async context =>
Expand Down Expand Up @@ -99,7 +99,7 @@ public async Task Can_call_ClientStore_FindClientByIdAsync()
}
);

[ConditionalFact]
[ConditionalFact(Skip = "VerificationException : Method System.Linq.Enumerable.MaxFloat: type argument 'System.Char' violates the constraint of type parameter 'T'.")]
public async Task Can_call_ResourceStore_FindIdentityResourcesByScopeNameAsync()
=> await ExecuteWithStrategyInTransactionAsync(
async context =>
Expand All @@ -115,7 +115,7 @@ public async Task Can_call_ResourceStore_FindIdentityResourcesByScopeNameAsync()
}
);

[ConditionalFact]
[ConditionalFact(Skip = "VerificationException : Method System.Linq.Enumerable.MaxFloat: type argument 'System.Char' violates the constraint of type parameter 'T'.")]
public async Task Can_call_ResourceStore_FindApiResourcesByScopeNameAsync()
=> await ExecuteWithStrategyInTransactionAsync(
async context =>
Expand All @@ -130,7 +130,7 @@ public async Task Can_call_ResourceStore_FindApiResourcesByScopeNameAsync()
}
);

[ConditionalFact]
[ConditionalFact(Skip = "VerificationException : Method System.Linq.Enumerable.MaxFloat: type argument 'System.Char' violates the constraint of type parameter 'T'.")]
public async Task Can_call_ResourceStore_GetAllResourcesAsync()
=> await ExecuteWithStrategyInTransactionAsync(
async context =>
Expand Down Expand Up @@ -209,7 +209,7 @@ private static async Task SaveApiResources(ConfigurationDbContext context)
await context.SaveChangesAsync();
}

[ConditionalFact]
[ConditionalFact(Skip = "VerificationException : Method System.Linq.Enumerable.MaxFloat: type argument 'System.Char' violates the constraint of type parameter 'T'.")]
public async Task Can_call_ResourceStore_FindApiResourcesByNameAsync()
=> await ExecuteWithStrategyInTransactionAsync(
async context =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<IsPackable>true</IsPackable>
<IncludeSymbols>true</IncludeSymbols>
<ImplicitUsings>true</ImplicitUsings>
<NoWarn>$(NoWarn);8981</NoWarn>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 0 additions & 2 deletions test/EFCore.Trimming.Tests/EFCore.Trimming.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
<TargetFramework>net7.0</TargetFramework>
<PublishTrimmed>true</PublishTrimmed>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<!-- TODO: Enable when dotnet/linker#2718 is fixed -->
<EnableTrimAnalyzer>false</EnableTrimAnalyzer>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit d42e736

Please sign in to comment.