|
4 | 4 | <RootNamespace>CircuitTool</RootNamespace> |
5 | 5 | <GenerateAssemblyInfo>false</GenerateAssemblyInfo> |
6 | 6 | <EnableDefaultCompileItems>false</EnableDefaultCompileItems> |
7 | | - <TargetFrameworks>net45;net462;net6.0;net8.0;netstandard2.0;netstandard2.1</TargetFrameworks> |
| 7 | + <TargetFrameworks>net45;net462;net481;net6.0;net8.0;netcoreapp3.1;netstandard2.0;netstandard2.1</TargetFrameworks> |
8 | 8 | <Deterministic>true</Deterministic> |
9 | 9 | <PublishRepositoryUrl>true</PublishRepositoryUrl> |
10 | 10 | <EmbedUntrackedSources>true</EmbedUntrackedSources> |
|
13 | 13 | <LangVersion>latest</LangVersion> |
14 | 14 |
|
15 | 15 | <!-- Enable nullable reference types for modern frameworks --> |
16 | | - <Nullable Condition="'$(TargetFramework)' == 'net6.0' OR '$(TargetFramework)' == 'net8.0'">enable</Nullable> |
| 16 | + <Nullable Condition="'$(TargetFramework)' == 'net6.0' OR '$(TargetFramework)' == 'net8.0' OR '$(TargetFramework)' == 'netcoreapp3.1'">enable</Nullable> |
17 | 17 |
|
18 | 18 | <!-- Enable XML documentation generation --> |
19 | 19 | <GenerateDocumentationFile>true</GenerateDocumentationFile> |
|
44 | 44 |
|
45 | 45 | <PropertyGroup> |
46 | 46 | <PackageId>CircuitTool</PackageId> |
47 | | - <Version>2.0.0</Version> |
| 47 | + <Version>2.1.0</Version> |
48 | 48 | <Authors>Jomardyan</Authors> |
49 | | - <Description>A comprehensive C# library for electrical engineering and electronics calculations. Compatible with .NET Framework 2.0+, .NET 6.0+, and .NET Standard 2.0+.</Description> |
| 49 | + <Description>A comprehensive C# library for electrical engineering and electronics calculations. Compatible with .NET Framework 4.5+, .NET Core 3.1+, .NET 6.0+, .NET 8.0+, .NET 9.0+, and .NET Standard 2.0+.</Description> |
50 | 50 | <PackageTags>ElectricalEngineering Electronics Calculations Arduino ESP32 LED Microcontroller</PackageTags> |
51 | 51 | <RepositoryUrl>https://github.com/jomardyan/CircuitTool</RepositoryUrl> |
52 | 52 | <RepositoryType>git</RepositoryType> |
|
76 | 76 |
|
77 | 77 | <ItemGroup> |
78 | 78 | <PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/> |
79 | | - <PackageReference Include="System.IO.Ports" Version="8.0.0" Condition="'$(TargetFramework)' == 'net462' OR '$(TargetFramework)' == 'net6.0' OR '$(TargetFramework)' == 'net8.0' OR '$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == 'netstandard2.1'" /> |
80 | | - <PackageReference Include="System.Text.Json" Version="8.0.5" Condition="'$(TargetFramework)' == 'net6.0' OR '$(TargetFramework)' == 'net8.0' OR '$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == 'netstandard2.1'" /> |
81 | | - <PackageReference Include="System.Numerics.Vectors" Version="4.5.0" Condition="'$(TargetFramework)' == 'net45' OR '$(TargetFramework)' == 'net462' OR '$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == 'netstandard2.1'" /> |
82 | | - <PackageReference Include="System.ValueTuple" Version="4.5.0" Condition="'$(TargetFramework)' == 'net45' OR '$(TargetFramework)' == 'net462'" /> |
| 79 | + <PackageReference Include="System.IO.Ports" Version="8.0.0" Condition="'$(TargetFramework)' == 'net462' OR '$(TargetFramework)' == 'net481' OR '$(TargetFramework)' == 'net6.0' OR '$(TargetFramework)' == 'net8.0' OR '$(TargetFramework)' == 'netcoreapp3.1' OR '$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == 'netstandard2.1'" /> |
| 80 | + <PackageReference Include="System.Text.Json" Version="8.0.5" Condition="'$(TargetFramework)' == 'net6.0' OR '$(TargetFramework)' == 'net8.0' OR '$(TargetFramework)' == 'netcoreapp3.1' OR '$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == 'netstandard2.1'" /> |
| 81 | + <PackageReference Include="System.Numerics.Vectors" Version="4.5.0" Condition="'$(TargetFramework)' == 'net45' OR '$(TargetFramework)' == 'net462' OR '$(TargetFramework)' == 'net481' OR '$(TargetFramework)' == 'netcoreapp3.1' OR '$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == 'netstandard2.1'" /> |
| 82 | + <PackageReference Include="System.ValueTuple" Version="4.5.0" Condition="'$(TargetFramework)' == 'net45' OR '$(TargetFramework)' == 'net462' OR '$(TargetFramework)' == 'net481'" /> |
83 | 83 | <PackageReference Include="Microsoft.Bcl.Async" Version="1.0.168" Condition="'$(TargetFramework)' == 'net45'" /> |
84 | 84 | </ItemGroup> |
85 | 85 |
|
|
0 commit comments