Skip to content
Open
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 ThermalConsole/ThermalConsole.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<OutputType>Exe</OutputType>
<ImplicitUsings>false</ImplicitUsings>
<Nullable>enable</Nullable>
<TargetFrameworks>net7.0;net6.0;net5.0</TargetFrameworks>
<TargetFrameworks>net5.0;net6.0;net7.0;net10.0;net8.0;net9.0</TargetFrameworks>
</PropertyGroup>

<PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion ThermalTalk.Imaging.Test/ThermalTalk.Imaging.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<OutputType>Exe</OutputType>

<TargetFrameworks>net7.0;net6.0;net5.0</TargetFrameworks>
<TargetFrameworks>net5.0;net6.0;net7.0;net10.0;net8.0;net9.0</TargetFrameworks>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion ThermalTalk.Imaging/ThermalTalk.Imaging.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<!-- <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />-->
<PropertyGroup>
<TargetFrameworks>net7.0;net6.0;net5.0;netstandard2.0</TargetFrameworks>
<TargetFrameworks>net5.0;net6.0;net7.0;netstandard2.0;net10.0;net8.0;net9.0</TargetFrameworks>
<SemVer>3.0.0.0</SemVer>
<VersionPrefix>3.0.0.0</VersionPrefix>
<VersionSuffix>beta</VersionSuffix>
Expand Down
2 changes: 1 addition & 1 deletion ThermalTalk.Test/ThermalTalk.Test.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net7.0;net6.0;net5.0</TargetFrameworks>
<TargetFrameworks>net5.0;net6.0;net7.0;net10.0;net8.0;net9.0</TargetFrameworks>
<OutputType>Exe</OutputType>
</PropertyGroup>

Expand Down
27 changes: 22 additions & 5 deletions ThermalTalk/ThermalTalk.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net7.0;net6.0;net5.0;netstandard2.0</TargetFrameworks>
<TargetFrameworks>net5.0;net6.0;net7.0;netstandard2.0;net10.0;net8.0;net9.0</TargetFrameworks>
<SemVer>3.0.0.0</SemVer>
<VersionPrefix>3.0.0.0</VersionPrefix>
<VersionSuffix>beta</VersionSuffix>
Expand Down Expand Up @@ -80,13 +80,30 @@
<PackageReference Include="Microsoft.Win32.Registry" Version="5.0.0"/>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3"/>
<PackageReference Include="Microsoft.CSharp" Version="4.7.0"/>
<PackageReference Include="System.IO.Ports" Version="7.0.0" Condition="'$(TargetFramework)' == 'net7.0'"/>
<PackageReference Include="System.IO.Ports" Version="7.0.0" Condition="'$(TargetFramework)' == 'net6.0'"/>
<PackageReference Include="System.IO.Ports" Version="5.0.1" Condition="'$(TargetFramework)' == 'net5.0'"/>
<PackageReference Include="System.IO.Ports" Version="5.0.1" Condition="'$(TargetFramework)' == 'netstandard2.0'"/>
<PackageReference Include="System.Text.Encoding.CodePages" Version="7.0.0"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ThermalTalk.Imaging\ThermalTalk.Imaging.csproj"/>
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net5.0'">
<PackageReference Include="System.IO.Ports" Version="5.0.1" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
<PackageReference Include="System.IO.Ports" Version="7.0.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
<PackageReference Include="System.IO.Ports" Version="7.0.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="System.IO.Ports" Version="10.0.1" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
<PackageReference Include="System.IO.Ports" Version="10.0.1" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net10.0'">
<PackageReference Include="System.IO.Ports" Version="10.0.1" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="System.IO.Ports" Version="5.0.1" />
</ItemGroup>
</Project>
7 changes: 7 additions & 0 deletions global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"sdk": {
"version": "10.0.0",
"rollForward": "latestMajor",
"allowPrerelease": true
}
}