Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
Comment thread
xperiandri marked this conversation as resolved.
<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>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</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>