Skip to content

Commit

Permalink
Updated to support .NET Core 3
Browse files Browse the repository at this point in the history
  • Loading branch information
reptail committed Sep 28, 2019
1 parent 71d8803 commit d510663
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions FamFamFam.Flags.Wpf/FamFamFam.Flags.Wpf.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<TargetFramework>net35</TargetFramework>
<TargetFrameworks>net35;netcoreapp3.0</TargetFrameworks>
<Copyright>Drew Noakes 2009-2017</Copyright>
<Authors>Drew Noakes, Mark James</Authors>
<Summary>Easily display country flags in WPF.</Summary>
Expand All @@ -19,13 +19,16 @@
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<IncludeSymbols>true</IncludeSymbols>
<IncludeSource>true</IncludeSource>
<UseWPF>True</UseWPF>
</PropertyGroup>
<ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net35'">
<Reference Include="System" />
<Reference Include="WindowsBase" />
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
</ItemGroup>

<ItemGroup>
<Resource Include="Images\ad.png" />
<Resource Include="Images\ae.png" />
Expand Down Expand Up @@ -276,4 +279,5 @@
<Resource Include="Images\zm.png" />
<Resource Include="Images\zw.png" />
</ItemGroup>

</Project>

0 comments on commit d510663

Please sign in to comment.