|
1 | 1 | <?xml version="1.0" encoding="utf-8" standalone="no"?> |
2 | 2 | <Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
3 | 3 | <PropertyGroup> |
4 | | - <VersionPrefix>5.0.1</VersionPrefix> |
| 4 | + <TargetFrameworks>netstandard2.0;net45</TargetFrameworks> |
| 5 | + <GenerateDocumentationFile>true</GenerateDocumentationFile> |
| 6 | + <DefineConstants Condition="'$(Hopac)' == 'true'">$(DefineConstants);HOPAC</DefineConstants> |
| 7 | + |
| 8 | + <VersionPrefix>5.1.0</VersionPrefix> |
5 | 9 | <Authors>Andrew Cherry</Authors> |
6 | 10 | <Description>Graph-base protocol machines for F#</Description> |
7 | 11 | <Description Condition="'$(Hopac)' == 'true'">$(Description) powered by the Hopac concurrency library</Description> |
|
12 | 16 | <RepositoryUrl>https://github.com/xyncro/hephaestus</RepositoryUrl> |
13 | 17 | <PackageTags>$(PackageTags);protocol;machine;functional;graphs;f#;fsharp</PackageTags> |
14 | 18 | <PackageTags Condition="'$(Hopac)' == 'true'">$(PackageTags);hopac</PackageTags> |
| 19 | + |
| 20 | + <!-- SourceLink related properties https://github.com/dotnet/SourceLink#using-sourcelink --> |
| 21 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 22 | + <EmbedUntrackedSources>true</EmbedUntrackedSources> |
| 23 | + <AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder> |
15 | 24 | </PropertyGroup> |
| 25 | + |
| 26 | + <ItemGroup> |
| 27 | + <Compile Include="$(MSBuildThisFileDirectory)Hephaestus\Hephaestus.fs" /> |
| 28 | + <EmbeddedResource Include="**\*.resx" /> |
| 29 | + </ItemGroup> |
| 30 | + |
| 31 | + <ItemGroup> |
| 32 | + <PackageReference Update="FSharp.Core" Version="4.3.4" /> |
| 33 | + <PackageReference Include="Aether" Version="[8.2.0,9)" /> |
| 34 | + <PackageReference Include="Anat" Version="[1.0.1,2)" /> |
| 35 | + <PackageReference Include="Hekate" Version="[3.2.1,4)" /> |
| 36 | + </ItemGroup> |
| 37 | + |
| 38 | + <ItemGroup Condition="'$(Hopac)' == 'true'"> |
| 39 | + <PackageReference Include="Hopac" Version="0.3.23" /> |
| 40 | + </ItemGroup> |
| 41 | + |
| 42 | + <ItemGroup> |
| 43 | + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-*" PrivateAssets="All" /> |
| 44 | + </ItemGroup> |
16 | 45 | </Project> |
0 commit comments