Skip to content

Commit

Permalink
Version 3.0.34
Browse files Browse the repository at this point in the history
  • Loading branch information
Taritsyn committed Mar 3, 2024
1 parent 889b461 commit 8417295
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Change log
==========

## v3.0.34 - March 3, 2024
* Added support for the Autoprefixer version 10.4.18.0

## v3.0.33 - January 18, 2024
* Added support for the Autoprefixer version 10.4.17.0

Expand Down
7 changes: 7 additions & 0 deletions build/strong-name-signing.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<Project>
<PropertyGroup>
<AssemblyOriginatorKeyFile>../../build/Key.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
</PropertyGroup>
</Project>
7 changes: 3 additions & 4 deletions src/AutoprefixerHost/AutoprefixerHost.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,10 @@

<PropertyGroup>
<Product>Autoprefixer Host for .NET</Product>
<VersionPrefix>3.0.33</VersionPrefix>
<VersionPrefix>3.0.34</VersionPrefix>
<TargetFrameworks>net40-client;net45;net461;netstandard1.3;netstandard2.0;net6.0</TargetFrameworks>
<OutputType>Library</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<AssemblyOriginatorKeyFile>../../build/Key.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
<NoWarn>$(NoWarn);CS1591;NU1605</NoWarn>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DisableDefaultResxToCsConversionTarget>true</DisableDefaultResxToCsConversionTarget>
Expand All @@ -18,6 +15,7 @@
<PackageReadmeFile>PACKAGE-DESCRIPTION.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/Taritsyn/AutoprefixerHost</PackageProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/Taritsyn/AutoprefixerHost/master/images/AutoprefixerHost_Logo_128x128.png</PackageIconUrl>
<PackageIcon>icon.png</PackageIcon>
<RepositoryUrl>https://github.com/Taritsyn/AutoprefixerHost</RepositoryUrl>
<RepositoryType>git</RepositoryType>
Expand All @@ -31,6 +29,7 @@

<Import Project="../../build/common.props" />
<Import Project="../../build/net40-client-target.props" />
<Import Project="../../build/strong-name-signing.props" />
<Import Project="../../build/nuget-common.props" />

<PropertyGroup Condition=" '$(TargetFramework)' == 'net461' Or '$(TargetFramework)' == 'netstandard2.0' Or '$(TargetFramework)' == 'net6.0' ">
Expand Down
2 changes: 1 addition & 1 deletion src/AutoprefixerHost/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "AutoprefixerHost",
"version": "3.0.33",
"version": "3.0.34",
"devDependencies": {
"@babel/cli": "7.23.9",
"@babel/core": "7.24.0",
Expand Down
2 changes: 1 addition & 1 deletion src/AutoprefixerHost/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


--------------------------------------------------------------------------------
README file for Autoprefixer Host for .NET v3.0.33
README file for Autoprefixer Host for .NET v3.0.34

--------------------------------------------------------------------------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Autoprefixer Host for .NET: Benchmarks</Product>
<VersionPrefix>3.0.33</VersionPrefix>
<VersionPrefix>3.0.34</VersionPrefix>
<TargetFrameworks>net462;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
<OutputType>Exe</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down
2 changes: 1 addition & 1 deletion test/AutoprefixerHost.Benchmarks/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "autoprefixerhost.benchmarks",
"private": true,
"version": "3.0.33",
"version": "3.0.34",
"dependencies": {
"bootstrap": "5.3.3",
"normalize.css": "8.0.1",
Expand Down
2 changes: 1 addition & 1 deletion test/AutoprefixerHost.Tests/AutoprefixerHost.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Autoprefixer Host for .NET: Tests</Product>
<VersionPrefix>3.0.33</VersionPrefix>
<VersionPrefix>3.0.34</VersionPrefix>
<TargetFrameworks>net462;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
<OutputType>Library</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down

0 comments on commit 8417295

Please sign in to comment.