Skip to content

Commit e9156f2

Browse files
authored
Merge pull request #13 from SephVin/remove-unused-targets
Remove unused targets net7.0;net8.0
2 parents 6d2f221 + be4b74e commit e9156f2

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/build-test-publish.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,12 @@ jobs:
7171
if test -n "$(git tag --list "$ProjectName-$Version" | tr -d '[:space:]')"; then
7272
echo "Version $Version already exists for $ProjectName"
7373
else
74+
rm -rf nuget
7475
dotnet pack "$ProjectName" --configuration Release --no-build --include-symbols --nologo --output nuget &&\
7576
dotnet nuget push nuget/*.nupkg --source 'https://api.nuget.org/v3/index.json' --api-key "$NUGETKEY" --skip-duplicate &&\
7677
git tag "$ProjectName-$Version" && git push origin "$ProjectName-$Version" || { echo "Error occurred"; exit 1; }
7778
fi
7879
}
7980
80-
publish_project "Controls"
81-
publish_project "Controls.Extensions"
81+
publish_project Controls
82+
publish_project Controls.Extensions

src/Controls.Extensions/Controls.Extensions.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<LangVersion>11</LangVersion>
5-
<TargetFrameworks>netstandard2.1;net6.0;net7.0;net8.0</TargetFrameworks>
5+
<TargetFrameworks>netstandard2.1;net6.0</TargetFrameworks>
66
<AssemblyName>Playwright.ReactUI.Controls.Extensions</AssemblyName>
77
<RootNamespace>Playwright.ReactUI.Controls.Extensions</RootNamespace>
88
<OutputPath>..\..\bin</OutputPath>
@@ -23,7 +23,7 @@
2323
<Title>Playwright.ReactUI.Controls.Extensions</Title>
2424
<AssemblyVersion>1.0.0.0</AssemblyVersion>
2525
<FileVersion>1.0.0</FileVersion>
26-
<Version>1.0.1-dev</Version>
26+
<Version>1.1.0</Version>
2727
<Authors>Evgeniy Ivanov</Authors>
2828
<Product>Playwright.ReactUI.Controls.Extensions</Product>
2929
<PackageReadmeFile>README-Controls.Extensions.md</PackageReadmeFile>

src/Controls/Controls.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<LangVersion>11</LangVersion>
5-
<TargetFrameworks>netstandard2.1;net6.0;net7.0;net8.0</TargetFrameworks>
5+
<TargetFrameworks>netstandard2.1;net6.0</TargetFrameworks>
66
<AssemblyName>Playwright.ReactUI.Controls</AssemblyName>
77
<RootNamespace>Playwright.ReactUI.Controls</RootNamespace>
88
<OutputPath>..\..\bin</OutputPath>
@@ -24,7 +24,7 @@
2424
<Title>Playwright.ReactUI.Controls</Title>
2525
<AssemblyVersion>1.0.0.0</AssemblyVersion>
2626
<FileVersion>1.0.0</FileVersion>
27-
<Version>1.0.1-dev</Version>
27+
<Version>1.1.0</Version>
2828
<Authors>Evgeniy Ivanov</Authors>
2929
<Product>Playwright.ReactUI.Controls</Product>
3030
<PackageReadmeFile>README-Controls.md</PackageReadmeFile>

0 commit comments

Comments
 (0)