Skip to content

Commit ff2f6d6

Browse files
committed
Update language and main assembly package reference
1 parent c9c92ab commit ff2f6d6

1 file changed

Lines changed: 11 additions & 3 deletions

File tree

Orm/Xtensive.Orm.Tests.FSharp/Xtensive.Orm.Tests.FSharp.fsproj

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,17 @@
66
<Configurations>Debug;Release;Debug-NET8;Release-NET8;Debug-NET10;Release-NET10</Configurations>
77
</PropertyGroup>
88
<PropertyGroup>
9-
<LangVersion>4.7</LangVersion>
109
<SignAssembly>true</SignAssembly>
1110
<AssemblyOriginatorKeyFile>$(OrmKeyFile)</AssemblyOriginatorKeyFile>
1211
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
1312
<WarningLevel>2</WarningLevel>
1413
</PropertyGroup>
14+
<PropertyGroup Condition="'$(TargetFramework)'=='net8.0'">
15+
<LangVersion>8.0</LangVersion>
16+
</PropertyGroup>
17+
<PropertyGroup Condition="'$(TargetFramework)'=='net10.0'">
18+
<LangVersion>10.0</LangVersion>
19+
</PropertyGroup>
1520
<Import Project="$(SolutionDir)MSBuild\DataObjects.Net.InternalBuild.targets" />
1621
<ItemGroup>
1722
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
@@ -28,7 +33,10 @@
2833
<Compile Include="Test.fs" />
2934
<None Include="App.config" />
3035
</ItemGroup>
31-
<ItemGroup>
32-
<PackageReference Update="FSharp.Core" Version="4.7.0" />
36+
<ItemGroup Condition="'$(TargetFramework)'=='net8.0'">
37+
<PackageReference Update="FSharp.Core" Version="8.0.403" />
38+
</ItemGroup>
39+
<ItemGroup Condition="'$(TargetFramework)'=='net10.0'">
40+
<PackageReference Update="FSharp.Core" Version="10.0.102" />
3341
</ItemGroup>
3442
</Project>

0 commit comments

Comments
 (0)