Skip to content

Commit

Permalink
Add Symbol Packages (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
wbaldoumas authored May 14, 2023
1 parent 9d6febc commit bac0029
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 3 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,17 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.1.0] 2022-05-13
## [0.1.1] 2023-05-13

### Added

- Symbol packages

### Changed

- Made build deterministic

## [0.1.0] 2023-05-13

### Released

Expand Down
16 changes: 14 additions & 2 deletions src/LazyCart/LazyCart.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,24 @@
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>0.1.0</Version>
<Version>0.1.1</Version>
<Authors>William Baldoumas</Authors>
<Description>A tiny library to lazily generate the Nth cartesian product.</Description>
<Copyright>Copyright ©2023 William Baldoumas</Copyright>
<PackageProjectUrl>https://github.com/wbaldoumas/lazy-cart</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/wbaldoumas/lazy-cart</RepositoryUrl>
<PackageTags>cartesian;product;arithmetic;lazy;math</PackageTags>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageTags>cartesian-product;arithmetic;lazy;math;set-theory</PackageTags>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageIcon>icon.png</PackageIcon>
<PackageId>LazyCart</PackageId>
<Title>LazyCart</Title>
<ApplicationIcon>icon.ico</ApplicationIcon>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>

<ItemGroup>
Expand All @@ -32,8 +36,16 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>

<PropertyGroup Condition="'$GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>

<ItemGroup>
<AdditionalFiles Include="..\..\stylecop.json" Link="stylecop.json" />
</ItemGroup>
Expand Down

0 comments on commit bac0029

Please sign in to comment.