Skip to content

Commit

Permalink
Remove logging debug on debug
Browse files Browse the repository at this point in the history
  • Loading branch information
LiamMorrow committed Jul 17, 2024
1 parent fd565bb commit 0ead467
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions LiftLog.App/LiftLog.App.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
<SingleProject>true</SingleProject>
<ImplicitUsings>enable</ImplicitUsings>
<EnableDefaultCssItems>false</EnableDefaultCssItems>
<!-- Logging has a conflict so we need to be explicit -->
<NoWarn>NETSDK1023;</NoWarn>

<!-- Display name -->
<ApplicationTitle>LiftLog</ApplicationTitle>
Expand Down Expand Up @@ -87,8 +85,6 @@
<ItemGroup>
<PackageReference Include="BlazorTransitionableRoute" Version="4.0.0" />
<PackageReference Include="MaterialColorUtilities.Maui" Version="0.3.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" />
<PackageReference Include="Plugin.InAppBilling" Version="7.1.0" />
<PackageReference Include="Plugin.LocalNotification" Version="11.1.3" />
<PackageReference Include="Plugin.Maui.AppRating" Version="1.2.0" />
Expand All @@ -98,6 +94,10 @@
<PackageReference Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'" Include="Xamarin.AndroidX.Annotation" Version="1.8.0" />
</ItemGroup>

<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\LiftLog.Ui\LiftLog.Ui.csproj" />
</ItemGroup>
Expand Down

0 comments on commit 0ead467

Please sign in to comment.