Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to use C# 11 #1484

Merged
merged 1 commit into from
Sep 17, 2024
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 src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<OutputPath>..\..\..\bin\$(Configuration)\</OutputPath>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<LangVersion>7</LangVersion>
<LangVersion>11</LangVersion>
<DisableImplicitNuGetFallbackFolder>true</DisableImplicitNuGetFallbackFolder>
<Company>NUnit Software</Company>
<Copyright>Copyright (c) 2022 Charlie Poole, Rob Prouse</Copyright>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@

<ItemGroup Condition="'$(TargetFramework)'!='net462'">
<PackageReference Include="System.ComponentModel.TypeConverter" Version="4.3.0" />
<!--<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.3.0" />
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not really related to language version.

<PackageReference Include="NUnit3TestAdapter" Version="3.15.1" />-->
</ItemGroup>

<ItemGroup>
Expand Down
Loading