Skip to content

Commit 72fed38

Browse files
authored
Merge pull request #9 from dim-37/develop
Added SourceLink support
2 parents fdb5ff4 + b5e2a8f commit 72fed38

File tree

1 file changed

+39
-29
lines changed

1 file changed

+39
-29
lines changed
Lines changed: 39 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,45 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFramework>netstandard2.0</TargetFramework>
5-
<Description>F# bindings for System.Collections.Immutable</Description>
6-
<Copyright>Copyright © XperiAndri 2016</Copyright>
7-
<AssemblyTitle>FSharp.Collections.Immutable</AssemblyTitle>
8-
<Company>XperiAndri</Company>
9-
<ProductName>FSharp.Collections.Immutable</ProductName>
10-
<Version>2.0.0</Version>
11-
<Authors>XperiAndri;EventHelix;vilinski;anthony-mi</Authors>
12-
<GenerateDocumentationFile>true</GenerateDocumentationFile>
13-
<PackageId>FSharp.Collections.Immutable</PackageId>
14-
<PackageTags>System;Immutable;Collections;FSharp;F#</PackageTags>
15-
<RepositoryType>git</RepositoryType>
16-
<RepositoryUrl>https://github.com/fsprojects/FSharp.Collections.Immutable/</RepositoryUrl>
17-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFramework>netstandard2.0</TargetFramework>
5+
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
6+
<Description>F# bindings for System.Collections.Immutable</Description>
7+
<Copyright>Copyright © XperiAndri 2016</Copyright>
8+
<AssemblyTitle>FSharp.Collections.Immutable</AssemblyTitle>
9+
<Company>XperiAndri</Company>
10+
<ProductName>FSharp.Collections.Immutable</ProductName>
11+
<Version>2.0.0</Version>
12+
<Authors>XperiAndri;EventHelix;vilinski;anthony-mi;dim-37</Authors>
13+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
14+
<PackageId>FSharp.Collections.Immutable</PackageId>
15+
<PackageTags>System;Immutable;Collections;FSharp;F#</PackageTags>
16+
<RepositoryType>git</RepositoryType>
17+
<DebugType>embedded</DebugType>
18+
<RepositoryUrl>https://github.com/fsprojects/FSharp.Collections.Immutable/</RepositoryUrl>
19+
<PackageProjectUrl>https://github.com/fsprojects/FSharp.Collections.Immutable/</PackageProjectUrl>
20+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
21+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
22+
</PropertyGroup>
1823

19-
<ItemGroup>
20-
<Compile Include="immutable-collection-util.fs" />
21-
<Compile Include="flat-list.fs" />
22-
<Compile Include="stack.fs" />
23-
<Compile Include="immutable-list.fs" />
24-
<Compile Include="queue.fs" />
25-
<Compile Include="indexed-seq.fs" />
26-
<Compile Include="maps.fs" />
27-
<Compile Include="sets.fs" />
28-
<Compile Include="seq.fs" />
29-
</ItemGroup>
24+
<ItemGroup>
25+
<Compile Include="immutable-collection-util.fs" />
26+
<Compile Include="flat-list.fs" />
27+
<Compile Include="stack.fs" />
28+
<Compile Include="immutable-list.fs" />
29+
<Compile Include="queue.fs" />
30+
<Compile Include="indexed-seq.fs" />
31+
<Compile Include="maps.fs" />
32+
<Compile Include="sets.fs" />
33+
<Compile Include="seq.fs" />
34+
</ItemGroup>
3035

31-
<ItemGroup>
32-
<PackageReference Include="System.Collections.Immutable" Version="5.0.0" />
33-
</ItemGroup>
36+
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
37+
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
38+
</PropertyGroup>
39+
40+
<ItemGroup>
41+
<PackageReference Include="System.Collections.Immutable" Version="5.0.0" />
42+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
43+
</ItemGroup>
3444

3545
</Project>

0 commit comments

Comments
 (0)