Skip to content
This repository has been archived by the owner on Jul 8, 2023. It is now read-only.

Commit

Permalink
Added support for .NET 6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AptiviCEO committed Mar 22, 2021
1 parent c929ebe commit 4a1d239
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 73 deletions.
34 changes: 5 additions & 29 deletions Extensification.Tests/Extensification.Tests.vbproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

<PropertyGroup>
<RootNamespace>Extensification.Tests</RootNamespace>
<TargetFrameworks>netcoreapp2.1;netcoreapp3.1;net45;net5.0</TargetFrameworks>
<TargetFrameworks>netcoreapp2.1;netcoreapp3.1;net45;net5.0;net6.0</TargetFrameworks>
<IsPackable>false</IsPackable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Version>2021.2.1</Version>
<Version>2021.2.2</Version>
<Authors>EoflaOE</Authors>
<Description>Extensification is an extension pack to .NET Framework that extends your ability to use more functions on strings, integers, and objects. Initially, it started with the string, integer, double, long, dictionary, array, arraylist, and list extensions, and inherited from Kernel Simulator. Over time, it grows with support for more objects.</Description>
<Copyright>Copyright © 2020-2021 EoflaOE and its companies</Copyright>
Expand Down Expand Up @@ -38,38 +38,14 @@
- Initial release</PackageReleaseNotes>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net5.0|AnyCPU'">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>../Extensification.Bin/</OutputPath>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net5.0|AnyCPU'">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>../Extensification.Bin/</OutputPath>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netcoreapp2.1|AnyCPU'">
<OutputPath>../Extensification.Bin/</OutputPath>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netcoreapp2.1|AnyCPU'">
<OutputPath>../Extensification.Bin/</OutputPath>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netcoreapp3.1|AnyCPU'">
<OutputPath>../Extensification.Bin/</OutputPath>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netcoreapp3.1|AnyCPU'">
<OutputPath>../Extensification.Bin/</OutputPath>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net45|AnyCPU'">
<OutputPath>../Extensification.Bin/</OutputPath>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net45|AnyCPU'">
<OutputPath>../Extensification.Bin/</OutputPath>
</PropertyGroup>


<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
<PackageReference Include="MSTest.TestAdapter" Version="2.1.0" />
Expand Down
55 changes: 11 additions & 44 deletions Extensification/Extensification.vbproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

<PropertyGroup>
<RootNamespace>Extensification</RootNamespace>
<TargetFrameworks>netcoreapp2.1;netcoreapp3.1;net45;net5.0</TargetFrameworks>
<TargetFrameworks>netcoreapp2.1;netcoreapp3.1;net45;net5.0;net6.0</TargetFrameworks>
<OptionInfer>On</OptionInfer>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IncludeSymbols>True</IncludeSymbols>
<PackageOutputPath>../Extensification.Bin</PackageOutputPath>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Authors>EoflaOE</Authors>
<Company>EoflaOE</Company>
<Version>2021.2.1</Version>
<Version>2021.2.2</Version>
<Description>Extensification is an extension pack to .NET Framework that extends your ability to use more functions on strings, integers, and objects. Initially, it started with the string, integer, double, long, dictionary, array, arraylist, and list extensions, and inherited from Kernel Simulator. Over time, it grows with support for more objects.</Description>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
Expand All @@ -19,7 +19,10 @@
<RepositoryUrl>https://github.com/EoflaOE/Extensification</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>extensions, extension methods</PackageTags>
<PackageReleaseNotes>2021.2.1:
<PackageReleaseNotes>2021.2.2:
- Added .NET 6.0 support

2021.2.1:
- Fixed inability to get index of key that can't be compared by =

2021.2:
Expand Down Expand Up @@ -54,56 +57,20 @@
2020.0:
- Initial release</PackageReleaseNotes>
<OptionStrict>Off</OptionStrict>
<AssemblyVersion>2021.2.1.0</AssemblyVersion>
<FileVersion>2021.2.1.0</FileVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net5.0|AnyCPU'">
<OutputPath>../Extensification.Bin/</OutputPath>
<WarningsAsErrors></WarningsAsErrors>
<NoWarn>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036</NoWarn>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net5.0|AnyCPU'">
<OutputPath>../Extensification.Bin/</OutputPath>
<WarningsAsErrors></WarningsAsErrors>
<NoWarn>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036</NoWarn>
<AssemblyVersion>2021.2.2.0</AssemblyVersion>
<FileVersion>2021.2.2.0</FileVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netcoreapp3.1|AnyCPU'">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>../Extensification.Bin/</OutputPath>
<WarningsAsErrors></WarningsAsErrors>
<NoWarn>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036</NoWarn>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netcoreapp3.1|AnyCPU'">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>../Extensification.Bin/</OutputPath>
<WarningsAsErrors></WarningsAsErrors>
<NoWarn>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036</NoWarn>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netcoreapp2.1|AnyCPU'">
<OutputPath>../Extensification.Bin/</OutputPath>
<WarningsAsErrors></WarningsAsErrors>
<NoWarn>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036</NoWarn>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netcoreapp2.1|AnyCPU'">
<OutputPath>../Extensification.Bin/</OutputPath>
<WarningsAsErrors></WarningsAsErrors>
<NoWarn>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036</NoWarn>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net45|AnyCPU'">
<OutputPath>../Extensification.Bin/</OutputPath>
<WarningsAsErrors></WarningsAsErrors>
<NoWarn>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036</NoWarn>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net45|AnyCPU'">
<OutputPath>../Extensification.Bin/</OutputPath>
<WarningsAsErrors></WarningsAsErrors>
<NoWarn>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036</NoWarn>
</PropertyGroup>


</Project>

0 comments on commit 4a1d239

Please sign in to comment.