We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13af5b5 commit b1626a7Copy full SHA for b1626a7
Flow.Launcher/Flow.Launcher.csproj
@@ -115,4 +115,14 @@
115
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
116
<Exec Command="taskkill /f /fi "IMAGENAME eq Flow.Launcher.exe"" />
117
</Target>
118
+
119
+ <Target Name="RemoveDuplicateAnalyzers" BeforeTargets="CoreCompile">
120
+ <!-- Work around https://github.com/dotnet/wpf/issues/6792 -->
121
122
+ <ItemGroup>
123
+ <FilteredAnalyzer Include="@(Analyzer->Distinct())" />
124
+ <Analyzer Remove="@(Analyzer)" />
125
+ <Analyzer Include="@(FilteredAnalyzer)" />
126
+ </ItemGroup>
127
+ </Target>
128
</Project>
global.json
@@ -1,5 +1,6 @@
1
{
2
"sdk": {
3
- "version": "6.0.300"
+ "version": "6.0.*",
4
+ "rollForward": "latestPatch"
5
}
6
0 commit comments