|
1 | 1 | <Project> |
2 | 2 | <PropertyGroup> |
3 | | - <TargetFramework>net8.0</TargetFramework> |
| 3 | + <TargetFrameworks>net8.0;net10.0</TargetFrameworks> |
4 | 4 | <Product>MQTTnet</Product> |
5 | 5 | <Authors>The contributors of MQTTnet</Authors> |
6 | 6 | <Company>The contributors of MQTTnet</Company> |
|
11 | 11 | <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
12 | 12 | <EnforceCodeStyleInBuild>false</EnforceCodeStyleInBuild> |
13 | 13 | <ImplicitUsings>enable</ImplicitUsings> |
| 14 | + <Nullable>disable</Nullable> |
14 | 15 |
|
15 | 16 | <NeutralLanguage>en-US</NeutralLanguage> |
16 | 17 | <TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
|
24 | 25 | <AnalysisLevel>latest</AnalysisLevel> |
25 | 26 | <AnalysisMode>recommended</AnalysisMode> |
26 | 27 | <AnalysisModeStyle>default</AnalysisModeStyle> |
27 | | - |
28 | | - <TestingPlatformShowTestsFailure>true</TestingPlatformShowTestsFailure> |
29 | | - <TestingPlatformDotnetTestSupport>true</TestingPlatformDotnetTestSupport> |
30 | | - <EnableMSTestRunner>true</EnableMSTestRunner> |
31 | 28 | </PropertyGroup> |
32 | 29 |
|
33 | 30 | <PropertyGroupCondition="'$(GITHUB_ACTIONS)' == 'true'"> |
|