|
3 | 3 |
|
4 | 4 | <!-- Common Project Settings --> |
5 | 5 | <PropertyGroup> |
6 | | - <TargetFramework>net9.0</TargetFramework> |
7 | | - <LangVersion>13</LangVersion> |
| 6 | + <TargetFramework>net10.0</TargetFramework> |
| 7 | + <LangVersion>14</LangVersion> |
8 | 8 | <ImplicitUsings>enable</ImplicitUsings> |
9 | 9 | <Nullable>enable</Nullable> |
10 | 10 | <NullableReferenceTypes>true</NullableReferenceTypes> |
11 | 11 | <TreatWarningsAsErrors>false</TreatWarningsAsErrors> |
12 | 12 | <Authors>Philippe Matray</Authors> |
13 | 13 | <!-- MinVer Configuration for all projects --> |
14 | 14 | <MinVerTagPrefix>v</MinVerTagPrefix> |
| 15 | + <MinVerSkip Condition="'$(Configuration)' == 'Debug'">true</MinVerSkip> |
15 | 16 | </PropertyGroup> |
16 | 17 |
|
17 | 18 | <!-- Code Analysis Settings --> |
18 | 19 | <PropertyGroup> |
19 | 20 | <EnableNETAnalyzers>true</EnableNETAnalyzers> |
20 | 21 | <EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild> |
21 | | - <AnalysisLevel>9.0-recommended</AnalysisLevel> |
| 22 | + <AnalysisLevel>10.0-recommended</AnalysisLevel> |
22 | 23 | <AnalysisModeDesign>All</AnalysisModeDesign> |
23 | 24 | <AnalysisModeDocumentation>All</AnalysisModeDocumentation> |
24 | 25 | <AnalysisModeGlobalization>All</AnalysisModeGlobalization> |
|
37 | 38 | <PropertyGroup Condition="'$(IsTestProject)' != 'true' and '$(MSBuildProjectDirectory.Contains(`src`))' == 'true'"> |
38 | 39 | <Description> |
39 | 40 | TaLibStandard is a modern interpretation of the widely used TA-Lib, |
40 | | - reimagined in C# 13. It is designed to be reliable, efficient, and user-friendly for developers |
| 41 | + reimagined in C# 14. It is designed to be reliable, efficient, and user-friendly for developers |
41 | 42 | performing financial market analysis. |
42 | 43 | </Description> |
43 | 44 | <PackageProjectUrl>https://github.com/phmatray/TaLibStandard</PackageProjectUrl> |
|
56 | 57 | <PropertyGroup Condition="'$(IsTestProject)' == 'true' or '$(MSBuildProjectDirectory.Contains(`tests`))' == 'true'"> |
57 | 58 | <IsPackable>false</IsPackable> |
58 | 59 | <IsTestProject>true</IsTestProject> |
59 | | - <OutputType>Exe</OutputType> |
60 | | - <TestingPlatformDotnetTestSupport>true</TestingPlatformDotnetTestSupport> |
61 | | - <UseMicrosoftTestingPlatformRunner>true</UseMicrosoftTestingPlatformRunner> |
62 | | - <TestingPlatformCaptureOutput>true</TestingPlatformCaptureOutput> |
63 | 60 | </PropertyGroup> |
64 | 61 |
|
65 | 62 | <!-- Demo Project Settings --> |
|
0 commit comments