Skip to content

Commit 63cc551

Browse files
committed
LangVersion latest
1 parent 0d6715d commit 63cc551

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

RocksDbNative/RocksDbNative.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<PackageReleaseNotes>Native RocksDb Binaries (Install RocksDbSharp package for managed wraper)</PackageReleaseNotes>
1919
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
2020
<TargetFramework>netstandard2.1</TargetFramework>
21-
<LangVersion>8</LangVersion>
21+
<LangVersion>latest</LangVersion>
2222
</PropertyGroup>
2323
<!-- "DispatchToInnerBuilds" will cause this to run in the outer build (i.e. once regardless of number of frameworks) -->
2424
<!-- Condition="!Exists('rocksdb-$(RocksDbVersion)\runtimes\win-x64\native\rocksdb.dll') and !Exists('$(BaseIntermediateOutputPath)\rocksdb-v$(RocksDbVersion)-win-x64.zip')" -->

RocksDbSharp/RocksDbSharp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<PackageReleaseNotes>.Net Bindings for RocksDb. See the Project Site for more information. (Note: Also install RocksDbNative package to have native binaries included with build)</PackageReleaseNotes>
2020
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
2121
<TargetFramework>net6.0</TargetFramework>
22-
<LangVersion>8</LangVersion>
22+
<LangVersion>latest</LangVersion>
2323
</PropertyGroup>
2424
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard1.6|AnyCPU'">
2525
</PropertyGroup>

examples/ColumnFamilyExample/ColumnFamilyExample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<TargetFramework>net6.0</TargetFramework>
44
<OutputType>Exe</OutputType>
55
<PlatformTarget>x64</PlatformTarget>
6-
<LangVersion>7.2</LangVersion>
6+
<LangVersion>latest</LangVersion>
77
</PropertyGroup>
88
<ItemGroup>
99
<ProjectReference Include="..\..\RocksDbNative\RocksDbNative.csproj" />

examples/PrefixExample/PrefixExample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<OutputType>Exe</OutputType>
55
<PlatformTarget>x64</PlatformTarget>
66
<AssemblyVersion>1.0.0</AssemblyVersion>
7-
<LangVersion>7.2</LangVersion>
7+
<LangVersion>latest</LangVersion>
88
</PropertyGroup>
99
<ItemGroup>
1010
<ProjectReference Include="..\..\RocksDbNative\RocksDbNative.csproj" />

examples/SimpleExampleHighLevel/SimpleExampleHighLevel.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<TargetFramework>net6.0</TargetFramework>
44
<OutputType>Exe</OutputType>
55
<PlatformTarget>x64</PlatformTarget>
6-
<LangVersion>7.2</LangVersion>
6+
<LangVersion>latest</LangVersion>
77
</PropertyGroup>
88
<ItemGroup>
99
<ProjectReference Include="..\..\RocksDbNative\RocksDbNative.csproj" />

examples/SimpleExampleLowLevel/SimpleExampleLowLevel.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<TargetFramework>net6.0</TargetFramework>
44
<OutputType>Exe</OutputType>
55
<PlatformTarget>x64</PlatformTarget>
6-
<LangVersion>7.2</LangVersion>
6+
<LangVersion>latest</LangVersion>
77
</PropertyGroup>
88
<ItemGroup>
99
<ProjectReference Include="..\..\RocksDbNative\RocksDbNative.csproj" />

tests/RocksDbSharpTest/RocksDbSharpTest.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<TargetFramework>net6.0</TargetFramework>
44
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
5-
<LangVersion>8</LangVersion>
5+
<LangVersion>latest</LangVersion>
66
</PropertyGroup>
77
<ItemGroup>
88
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />

0 commit comments

Comments
 (0)