Skip to content
Merged
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
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ jobs:
include-prerelease: ${{ matrix.prerelease }}

- name: Restore
run: dotnet restore CSLibrary2026/CSLibrary2026.csproj
run: >
dotnet restore CSLibrary2026/CSLibrary2026.csproj
--framework ${{ matrix.target }}

- name: Build
run: >
Expand Down
2 changes: 1 addition & 1 deletion CSLibrary2026.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;net10.0</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net10.0;net10.0-windows;net10.0-android;net10.0-ios;net10.0-maccatalyst</TargetFrameworks>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
<RootNamespace>CSLibrary</RootNamespace>
<AssemblyName>CSLibrary2026</AssemblyName>
Expand Down
1 change: 1 addition & 0 deletions Source/CSLibrary.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
*/

using CSLibrary.Constants;
using CSLibrary.NetFinder;
using System;
using System.Collections.Generic;
using System.Linq;
Expand Down
Loading
Loading