Skip to content

Commit e2e9d6e

Browse files
author
Jing KE
committed
[c#] enable the latest language features.
1 parent 2f70957 commit e2e9d6e

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Directory.Build.targets

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!--
2+
~ INTRO:
3+
~ Directory.Build.targets is imported from Microsoft.Common.targets after importing .targets files from NuGet
4+
~ packages. So, it can override properties and targets defined in most of the build logic, but sometimes you may need
5+
~ to customize the project file after the final import.
6+
~ See: https://docs.microsoft.com/en-us/visualstudio/msbuild/customize-your-build#import-order
7+
-->
8+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
9+
<PropertyGroup>
10+
<!-- Enable the latest programming language features. -->
11+
<LangVersion>latest</LangVersion>
12+
</PropertyGroup>
13+
</Project>

0 commit comments

Comments
 (0)