Skip to content

Commit

Permalink
Target .NET Standard 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MJB222398 committed Sep 8, 2021
1 parent da491aa commit d53812b
Showing 1 changed file with 25 additions and 24 deletions.
49 changes: 25 additions & 24 deletions Abstractions.DateAndTime/Abstractions.DateAndTime.csproj
Original file line number Diff line number Diff line change
@@ -1,30 +1,31 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Authors>MJB222398</Authors>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>Abstractions.DateAndTime</PackageId>
<Description>A simple library for abstracting static properties such as 'Now', 'UtcNow' and 'Today' in .NET's 'System.DateTime' and 'System.DateTimeOffset' structs so that methods using these can be unit tested</Description>
<PackageProjectUrl>https://github.com/MJB222398/Abstractions.DateAndTime</PackageProjectUrl>
<RepositoryUrl>https://github.com/MJB222398/Abstractions.DateAndTime.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>datetime datetimeoffset abstractions faking mocking unittesting</PackageTags>
<PackageReleaseNotes>Initial release</PackageReleaseNotes>
<PackageIcon>icon.png</PackageIcon>
<PackageIconUrl />
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Authors>MJB222398</Authors>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>Abstractions.DateAndTime</PackageId>
<Description>A simple library for abstracting static properties such as 'Now', 'UtcNow' and 'Today' in .NET's 'System.DateTime' and 'System.DateTimeOffset' structs so that methods using these can be unit tested</Description>
<PackageProjectUrl>https://github.com/MJB222398/Abstractions.DateAndTime</PackageProjectUrl>
<RepositoryUrl>https://github.com/MJB222398/Abstractions.DateAndTime.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>datetime datetimeoffset abstractions faking mocking unittesting</PackageTags>
<PackageReleaseNotes>Initial release</PackageReleaseNotes>
<PackageIcon>icon.png</PackageIcon>
<PackageIconUrl />
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Version>2.0.0</Version>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="5.0.0" />
</ItemGroup>

<ItemGroup>
<None Include="Images\icon.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<None Include="Images\icon.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>

</Project>

0 comments on commit d53812b

Please sign in to comment.