Skip to content

Commit 0775b91

Browse files
committed
fix: get back net6 support
1 parent 6472f34 commit 0775b91

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/ci.yml

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
uses: actions/setup-dotnet@v4
1818
with:
1919
dotnet-version: |
20+
6.0.x
2021
8.0.x
2122
2223
- name: Build
@@ -32,6 +33,7 @@ jobs:
3233
uses: actions/setup-dotnet@v4
3334
with:
3435
dotnet-version: |
36+
6.0.x
3537
8.0.x
3638
3739
- name: Build

src/ElectronNET.API/ElectronNET.API.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net8.0</TargetFramework>
3+
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
44
<PackageOutputPath>..\..\artifacts</PackageOutputPath>
55
<PackageId>ElectronNET.API</PackageId>
66
<Authors>Gregor Biswanger, Florian Rappl</Authors>

src/ElectronNET.CLI/ElectronNET.CLI.csproj

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
55
<AssemblyName>dotnet-electronize</AssemblyName>
66
<ToolCommandName>electronize</ToolCommandName>
77
<PackageType>DotnetCliTool</PackageType>
@@ -25,7 +25,6 @@
2525
<PackageReleaseNotes>Changelog: https://github.com/ElectronNET/Electron.NET/blob/main/Changelog.md</PackageReleaseNotes>
2626
<PackageIcon>PackageIcon.png</PackageIcon>
2727
<PackAsTool>true</PackAsTool>
28-
<PublishSelfContained>true</PublishSelfContained>
2928
<StartupObject>
3029
</StartupObject>
3130
</PropertyGroup>

0 commit comments

Comments
 (0)