Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Sources/AngouriMath/AngouriMath.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<PropertyGroup>
<OutputType>Library</OutputType>
<LangVersion>preview</LangVersion>
<LangVersion>14.0</LangVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageTags>$(PackageTags), csharp</PackageTags>
<Description>Enables to work with formulas built in the code or from a string. Computing, derivating, latex rendering, compilation, solving equations and systems of equations analytycally, simplification, and much more. Read more on https://am.angouri.org.</Description>
Expand Down
11 changes: 9 additions & 2 deletions Sources/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<LangVersion>preview</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

<PropertyGroup Condition="'$(MSBuildProjectExtension)' == '.csproj'">
<LangVersion>14.0</LangVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(MSBuildProjectExtension)' == '.fsproj'">
<LangVersion>latest</LangVersion>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion Sources/Samples/Samples/Playground.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>preview</LangVersion>
<LangVersion>14.0</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>

Expand Down
Loading