Skip to content

Commit

Permalink
Support .NET Core 3.0
Browse files Browse the repository at this point in the history
Add netcoreapp3.0 as a supported target framework.
  • Loading branch information
martincostello authored and rockstardev committed Oct 20, 2019
1 parent 0fd31c8 commit d556460
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/BundlerMinifier.Core/BundlerMinifier.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<PropertyGroup>
<Version>1.0.0</Version>
<TargetFrameworks>netcoreapp1.0;net452;netcoreapp2.0;netstandard2.0</TargetFrameworks>
<TargetFrameworks>netcoreapp1.0;net452;netcoreapp2.0;netstandard2.0;netcoreapp3.0</TargetFrameworks>
<DefineConstants>$(DefineConstants);DOTNET</DefineConstants>
<AssemblyName>dotnet-bundle</AssemblyName>
<OutputType>Exe</OutputType>
Expand Down
2 changes: 1 addition & 1 deletion src/BundlerMinifier/BundlerMinifier.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Import Project="..\common.props" />

<PropertyGroup>
<TargetFrameworks>net46;netstandard1.3;netcoreapp2.0</TargetFrameworks>
<TargetFrameworks>net46;netstandard1.3;netcoreapp2.0;netcoreapp3.0</TargetFrameworks>
<Title>Bundler &amp; Minifier</Title>
<PackageId>BuildBundlerMinifier</PackageId>

Expand Down

0 comments on commit d556460

Please sign in to comment.