Skip to content

Commit

Permalink
Merge pull request #3 from StockDrops/microseconds
Browse files Browse the repository at this point in the history
latest
  • Loading branch information
emorell96 authored Jan 16, 2022
2 parents cfe8e0b + d24d842 commit 2c6311b
Show file tree
Hide file tree
Showing 3 changed files with 698 additions and 3 deletions.
25 changes: 24 additions & 1 deletion Bucket4Csharp.Core/Bucket4Csharp.Core.csproj
Original file line number Diff line number Diff line change
@@ -1,11 +1,34 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>0.1.0</Version>
<Company>$(Authors)</Company>
<Authors>StockDrops</Authors>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Description>A port of the Bucket4J library to C#. It's in its early stages but the main core components work.
The LockFreeBucket has being ported, but the blocking, and synchronized buckets have not.</Description>
<PackageLicenseFile>C:\Users\emore\source\repos\Bucket4Csharp\LICENSE.TXT</PackageLicenseFile>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
</PropertyGroup>

<PropertyGroup>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<None Include="LICENSE.TXT" Pack="true"

PackagePath="LICENSE.txt"/>
</ItemGroup>

<ItemGroup>
<EmbeddedResource Include="LICENSE.TXT">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>

<ItemGroup>
<Folder Include="Models\Base\" />
</ItemGroup>
Expand Down
Loading

0 comments on commit 2c6311b

Please sign in to comment.