Skip to content

Update SDK #41697

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
May 17, 2022
4 changes: 2 additions & 2 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"sdk": {
"version": "7.0.100-preview.5.22258.1"
"version": "7.0.100-preview.5.22263.22"
},
"tools": {
"dotnet": "7.0.100-preview.5.22258.1",
"dotnet": "7.0.100-preview.5.22263.22",
"runtimes": {
"dotnet/x86": [
"$(MicrosoftNETCoreBrowserDebugHostTransportVersion)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
<OutputType>Exe</OutputType>
<TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework>
<Nullable>enable</Nullable>
<!-- Suppress warnings about lowercase variable names in generated code -->
<NoWarn>$(NoWarn);CS8981</NoWarn>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
<Nullable>enable</Nullable>
<RestoreAdditionalProjectSources>$(RestoreAdditionalProjectSources);$(ArtifactsShippingPackagesDir)</RestoreAdditionalProjectSources>
<UseAspNetCoreSharedRuntime>true</UseAspNetCoreSharedRuntime>
<!-- Suppress warnings about lowercase variable names in generated code -->
<NoWarn>$(NoWarn);CS8981</NoWarn>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<TieredCompilation>false</TieredCompilation>
<DefineConstants>$(DefineConstants);IS_BENCHMARKS</DefineConstants>
<!-- Suppress warnings about lowercase variable names in generated code -->
<NoWarn>$(NoWarn);CS8981</NoWarn>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
<Description>HTTP API for gRPC ASP.NET Core</Description>
<PackageTags>gRPC RPC HTTP/2 REST</PackageTags>
<TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework>
<!-- Suppress warnings about lowercase variable names in generated code -->
<NoWarn>$(NoWarn);CS8981</NoWarn>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
<PropertyGroup>
<TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework>
<Nullable>enable</Nullable>
<!-- Suppress warnings about lowercase variable names in generated code -->
<NoWarn>$(NoWarn);CS8981</NoWarn>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<NoWarn>$(NoWarn);CS1591;CS8981</NoWarn>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
<PropertyGroup>
<TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework>
<Nullable>enable</Nullable>
<!-- Suppress warnings about lowercase variable names in generated code -->
<NoWarn>$(NoWarn);CS8981</NoWarn>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework>
<!-- Suppress warnings about lowercase variable names in generated code -->
<NoWarn>$(NoWarn);CS8981</NoWarn>
</PropertyGroup>

<ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions src/ProjectTemplates/test/GrpcTemplateTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ public ITestOutputHelper Output
[SkipOnAlpine("https://github.com/grpc/grpc/issues/18338")]
[InlineData(true)]
[InlineData(false)]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/41716")]
public async Task GrpcTemplate(bool useProgramMain)
{
var project = await ProjectFactory.CreateProject(Output);
Expand Down
2 changes: 2 additions & 0 deletions src/SignalR/samples/SocialWeather/SocialWeather.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
<PropertyGroup>
<TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework>
<GenerateRazorAssemblyInfo>false</GenerateRazorAssemblyInfo>
<!-- Suppress warnings about lowercase variable names in generated code -->
<NoWarn>$(NoWarn);CS8981</NoWarn>
</PropertyGroup>

<ItemGroup>
Expand Down