Skip to content

Commit 8e837b8

Browse files
committed
Avoid clobbering inherited NoWarn; append instead.
1 parent 8bc60e5 commit 8e837b8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Plugins/Flow.Launcher.Plugin.BrowserBookmark/Flow.Launcher.Plugin.BrowserBookmark.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<ErrorReport>prompt</ErrorReport>
3535
<WarningLevel>4</WarningLevel>
3636
<Prefer32Bit>false</Prefer32Bit>
37-
<NoWarn>FLSG0007</NoWarn>
37+
<NoWarn>$(NoWarn);FLSG0007</NoWarn>
3838
</PropertyGroup>
3939

4040
<Target Name="RemoveUnnecessaryRuntimesAfterBuild" AfterTargets="Build">

Plugins/Flow.Launcher.Plugin.Calculator/Flow.Launcher.Plugin.Calculator.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<ErrorReport>prompt</ErrorReport>
3434
<WarningLevel>4</WarningLevel>
3535
<Prefer32Bit>false</Prefer32Bit>
36-
<NoWarn>FLSG0007</NoWarn>
36+
<NoWarn>$(NoWarn);FLSG0007</NoWarn>
3737
</PropertyGroup>
3838

3939
<ItemGroup>

Plugins/Flow.Launcher.Plugin.Explorer/Flow.Launcher.Plugin.Explorer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
2121
<OutputPath>..\..\Output\Release\Plugins\Flow.Launcher.Plugin.Explorer</OutputPath>
22-
<NoWarn>FLSG0007</NoWarn>
22+
<NoWarn>$(NoWarn);FLSG0007</NoWarn>
2323
</PropertyGroup>
2424

2525
<ItemGroup>

0 commit comments

Comments
 (0)