Skip to content

Commit

Permalink
Squashed commit of the following
Browse files Browse the repository at this point in the history
  • Loading branch information
mattleibow committed Oct 19, 2022
1 parent 8d6e9c5 commit 25a781f
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 19 deletions.
15 changes: 0 additions & 15 deletions eng/cake/dotnet.cake
Original file line number Diff line number Diff line change
Expand Up @@ -190,21 +190,6 @@ Task("dotnet-templates")
"</TargetFrameworks> -->",
"</TargetFrameworks>");
// TODO: remove this once issues are fixed
if (TestTFM.StartsWith("net6"))
{
// Mac Catalyst/iOS does not yet support net6 from the net7 SDK.
ReplaceTextInFiles($"{projectName}/*.csproj",
";net6.0-ios;net6.0-maccatalyst",
"");
// Android does not yet support net6 from the net7 SDK in Release builds
if (configuration == "Release")
ReplaceTextInFiles($"{projectName}/*.csproj",
"net6.0-android",
"");
}
// Build
RunMSBuildWithDotNet(projectName, properties, warningsAsError: true, forceDotNetBuild: forceDotNetBuild);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
<RootNamespace>Microsoft.Maui.MauiBlazorWebView.DeviceTests</RootNamespace>
<AssemblyName>Microsoft.Maui.MauiBlazorWebView.DeviceTests</AssemblyName>
<NoWarn>$(NoWarn),CA1416</NoWarn>
<UseInterpreter>false</UseInterpreter>
</PropertyGroup>

<PropertyGroup>
Expand Down
1 change: 0 additions & 1 deletion src/Controls/tests/DeviceTests/Controls.DeviceTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
<RootNamespace>Microsoft.Maui.DeviceTests</RootNamespace>
<AssemblyName>Microsoft.Maui.Controls.DeviceTests</AssemblyName>
<NoWarn>$(NoWarn),CA1416</NoWarn>
<UseInterpreter>false</UseInterpreter>
</PropertyGroup>

<PropertyGroup>
Expand Down
1 change: 0 additions & 1 deletion src/Core/tests/DeviceTests/Core.DeviceTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
<RootNamespace>Microsoft.Maui.DeviceTests</RootNamespace>
<AssemblyName>Microsoft.Maui.Core.DeviceTests</AssemblyName>
<NoWarn>$(NoWarn),CA1416</NoWarn>
<UseInterpreter>false</UseInterpreter>
</PropertyGroup>

<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
<SingleProject>true</SingleProject>
<RootNamespace>Microsoft.Maui.Essentials.DeviceTests</RootNamespace>
<AssemblyName>Microsoft.Maui.Essentials.DeviceTests</AssemblyName>
<UseInterpreter>false</UseInterpreter>
</PropertyGroup>

<PropertyGroup>
Expand Down

0 comments on commit 25a781f

Please sign in to comment.