diff options
| author | Anthony Lavado <anthonylavado@users.noreply.github.com> | 2019-08-16 13:49:02 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-16 13:49:02 -0400 |
| commit | be5a8196213abbbbaae5c46e4dca796cb0780383 (patch) | |
| tree | 02d7c0a5dfc0687a70b0ffd07845e5c4badfe435 | |
| parent | b89c26ab5733cbf0fa3eab1a776b9cd27ed75663 (diff) | |
| parent | c0e71cdea79c6e93b9fd3b1b4e4e7c435c0da39b (diff) | |
Merge pull request #1634 from Bond-009/fixbuild
Fix build on .Net Core 2.x
| -rw-r--r-- | Emby.Drawing/Emby.Drawing.csproj | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Emby.Drawing/Emby.Drawing.csproj b/Emby.Drawing/Emby.Drawing.csproj index 716de059d..2e539f2c7 100644 --- a/Emby.Drawing/Emby.Drawing.csproj +++ b/Emby.Drawing/Emby.Drawing.csproj @@ -17,4 +17,9 @@ <Compile Include="..\SharedVersion.cs" /> </ItemGroup> + <PropertyGroup> + <!-- We need at least C# 7.1 for the "default literal" feature--> + <LangVersion>latest</LangVersion> + </PropertyGroup> + </Project> |
