forked from eventhelix/FSharp.Collections.Immutable
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
dim-37
committed
May 18, 2021
1 parent
fdb5ff4
commit dea74bb
Showing
1 changed file
with
39 additions
and
29 deletions.
There are no files selected for viewing
68 changes: 39 additions & 29 deletions
68
src/FSharp.Collections.Immutable/FSharp.Collections.Immutable.fsproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,45 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<Description>F# bindings for System.Collections.Immutable</Description> | ||
<Copyright>Copyright © XperiAndri 2016</Copyright> | ||
<AssemblyTitle>FSharp.Collections.Immutable</AssemblyTitle> | ||
<Company>XperiAndri</Company> | ||
<ProductName>FSharp.Collections.Immutable</ProductName> | ||
<Version>2.0.0</Version> | ||
<Authors>XperiAndri;EventHelix;vilinski;anthony-mi</Authors> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<PackageId>FSharp.Collections.Immutable</PackageId> | ||
<PackageTags>System;Immutable;Collections;FSharp;F#</PackageTags> | ||
<RepositoryType>git</RepositoryType> | ||
<RepositoryUrl>https://github.com/fsprojects/FSharp.Collections.Immutable/</RepositoryUrl> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder> | ||
<Description>F# bindings for System.Collections.Immutable</Description> | ||
<Copyright>Copyright © XperiAndri 2016</Copyright> | ||
<AssemblyTitle>FSharp.Collections.Immutable</AssemblyTitle> | ||
<Company>XperiAndri</Company> | ||
<ProductName>FSharp.Collections.Immutable</ProductName> | ||
<Version>2.0.0</Version> | ||
<Authors>XperiAndri;EventHelix;vilinski;anthony-mi;dim-37</Authors> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<PackageId>FSharp.Collections.Immutable</PackageId> | ||
<PackageTags>System;Immutable;Collections;FSharp;F#</PackageTags> | ||
<RepositoryType>git</RepositoryType> | ||
<DebugType>embedded</DebugType> | ||
<RepositoryUrl>https://github.com/fsprojects/FSharp.Collections.Immutable/</RepositoryUrl> | ||
<PackageProjectUrl>https://github.com/fsprojects/FSharp.Collections.Immutable/</PackageProjectUrl> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="immutable-collection-util.fs" /> | ||
<Compile Include="flat-list.fs" /> | ||
<Compile Include="stack.fs" /> | ||
<Compile Include="immutable-list.fs" /> | ||
<Compile Include="queue.fs" /> | ||
<Compile Include="indexed-seq.fs" /> | ||
<Compile Include="maps.fs" /> | ||
<Compile Include="sets.fs" /> | ||
<Compile Include="seq.fs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="immutable-collection-util.fs" /> | ||
<Compile Include="flat-list.fs" /> | ||
<Compile Include="stack.fs" /> | ||
<Compile Include="immutable-list.fs" /> | ||
<Compile Include="queue.fs" /> | ||
<Compile Include="indexed-seq.fs" /> | ||
<Compile Include="maps.fs" /> | ||
<Compile Include="sets.fs" /> | ||
<Compile Include="seq.fs" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="System.Collections.Immutable" Version="5.0.0" /> | ||
</ItemGroup> | ||
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'"> | ||
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="System.Collections.Immutable" Version="5.0.0" /> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/> | ||
</ItemGroup> | ||
|
||
</Project> |