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 RoboSharp.BackupApp/RoboSharp.BackupApp.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net48;net8.0-Windows</TargetFrameworks>
<TargetFrameworks>net48;net8.0-Windows;net10.0-Windows</TargetFrameworks>
<OutputType>WinExe</OutputType>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<UseWindowsForms>true</UseWindowsForms>
Expand Down
6 changes: 2 additions & 4 deletions RoboSharp.Benchmarks/RoboSharp.Benchmarks.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@
<TargetFrameworks>
net462;
net48;
netcoreapp3.1;
net5.0;
net8.0
</TargetFrameworks>
net8.0;
net10.0;</TargetFrameworks>
<OutputType>Exe</OutputType>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net472;net5.0;net8.0</TargetFrameworks>
<TargetFrameworks>net472;net8.0</TargetFrameworks>
<IsPackable>false</IsPackable>
<LangVersion>latest</LangVersion>
</PropertyGroup>
Expand Down
12 changes: 5 additions & 7 deletions RoboSharp.Extensions/RoboSharp.Extensions.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,14 @@
net48;
netstandard2.0;
netstandard2.1;
netcoreapp3.1;
net5.0;
net6.0;
net8.0;
</TargetFrameworks>
net10.0;
</TargetFrameworks>
<NetFrameworkRegex><![CDATA[^net((4[5-8][0-2]?)|(.*2.0))$]]></NetFrameworkRegex>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>

<Version>1.6.1</Version>
<Copyright>Copyright 2024</Copyright>
<Version>1.6.2</Version>
<Copyright>Copyright 2025</Copyright>
<Authors>Robert Brenckman</Authors>
<owners>Terry | PC Assist Software | Robert Brenckman</owners>

Expand Down Expand Up @@ -67,7 +65,7 @@
</ItemGroup>
</When>
<!-- NetStandard 2.1 -->
<When Condition=" '$(TargetFramework)' == 'netstandard2.1' Or '$(TargetFramework)' == 'netcoreapp3.1'">
<When Condition=" '$(TargetFramework)' == 'netstandard2.1'">
<PropertyGroup>
<langversion>9</langversion>
</PropertyGroup>
Expand Down
16 changes: 7 additions & 9 deletions RoboSharp/RoboSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,13 @@
net48;
netstandard2.0;
netstandard2.1;
netcoreapp3.1;
net5.0;
net6.0;
net8.0;
net10.0;
</TargetFrameworks>
<NetFrameworkRegex><![CDATA[^net4[5-8][0-2]?$]]></NetFrameworkRegex>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>1.6.0</Version>
<Copyright>Copyright 2024</Copyright>
<Version>1.6.2</Version>
<Copyright>Copyright 2025</Copyright>
<Authors>Terry | PC Assist Software</Authors>
<owners>Terry | PC Assist Software</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
Expand All @@ -33,15 +31,15 @@
</PropertyGroup>

<ItemGroup>
<None Include="..\readme.md" Pack="true" PackagePath="\"/>
<None Include="..\robosharp.png" Pack="true" PackagePath="\"/>
<None Include="..\license" Pack="true" PackagePath="\"/>
<None Include="..\readme.md" Pack="true" PackagePath="\" />
<None Include="..\robosharp.png" Pack="true" PackagePath="\" />
<None Include="..\license" Pack="true" PackagePath="\" />
</ItemGroup>

<!-- Conditional Target Requirements -->
<Choose>
<!-- NetFramework -->
<When Condition=" $([System.Text.RegularExpressions.Regex]::IsMatch('$(TargetFramework)', '$(NetFrameworkRegex)'))" >
<When Condition=" $([System.Text.RegularExpressions.Regex]::IsMatch('$(TargetFramework)', '$(NetFrameworkRegex)'))">
<PropertyGroup>
<langversion>8.0</langversion>
</PropertyGroup>
Expand Down
7 changes: 3 additions & 4 deletions RoboSharpUnitTesting/RoboSharpUnitTesting.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@
<TargetFrameworks>
net462;
net48;
netcoreapp3.1;
net5.0;
net8.0
</TargetFrameworks>
net8.0;
net10.0;
</TargetFrameworks>
<IsPackable>false</IsPackable>
<RootNamespace>RoboSharp.UnitTests</RootNamespace>
<AssemblyName>RoboSharp.UnitTests</AssemblyName>
Expand Down
2 changes: 1 addition & 1 deletion license
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2016 tjscience (original author) and (c) 2024 PCAssistSoftware
Copyright (c) 2016 tjscience (original author) and (c) 2025 PCAssistSoftware

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down