Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/aspnet/MessagePack-CSharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2019-12-10 19:33:32 +0300
committerAndrew Arnott <andrewarnott@gmail.com>2019-12-10 19:33:32 +0300
commit151679fc31f8a637ca610e32b26c1a791b2b5aee (patch)
tree035066e8e7b4a3edeaa96c562c108c83f8cdfb1f /Directory.Build.props
parent2ae1284c3cbef1548819b6176fd2ac554f455021 (diff)
Roll back C# lang version to 7.3
This matches Unity's compiler version and prevents accidentally introducing C# 8 syntax that will inevitably fail the PR build when unity tries to build the same source code.
Diffstat (limited to 'Directory.Build.props')
-rw-r--r--Directory.Build.props2
1 files changed, 1 insertions, 1 deletions
diff --git a/Directory.Build.props b/Directory.Build.props
index be655c05..7dcf5c12 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -6,7 +6,7 @@
<PackageOutputPath>$(MSBuildThisFileDirectory)bin\Packages\$(Configuration)\NuGet\</PackageOutputPath>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
- <LangVersion>8.0</LangVersion>
+ <LangVersion>7.3</LangVersion>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)MessagePack.ruleset</CodeAnalysisRuleSet>