diff options
author | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2019-08-25 15:49:51 +0200 |
---|---|---|
committer | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2019-08-25 15:53:47 +0200 |
commit | 3af8bd071eb6e99c9b3de90f5aaa939d18cda4f3 (patch) | |
tree | c8a3ed5b4bc533c8b85852d5d1e708244aec8955 /modules/mono/glue | |
parent | 360d0bb6a3109bc518f13f539d39960425af67d3 (diff) |
Set C# 7 as LangVersion for GodotTools and Godot API projects
This will make it harder for someone to accidentally commit code that requires a newer version.
Diffstat (limited to 'modules/mono/glue')
-rw-r--r-- | modules/mono/glue/Managed/Managed.csproj | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/mono/glue/Managed/Managed.csproj b/modules/mono/glue/Managed/Managed.csproj index ad55fe9539..c8eca71199 100644 --- a/modules/mono/glue/Managed/Managed.csproj +++ b/modules/mono/glue/Managed/Managed.csproj @@ -8,6 +8,7 @@ <RootNamespace>Managed</RootNamespace> <AssemblyName>Managed</AssemblyName> <TargetFrameworkVersion>v4.5</TargetFrameworkVersion> + <LangVersion>7</LangVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <DebugSymbols>true</DebugSymbols> |