-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
47 lines (40 loc) · 1.76 KB
/
Directory.Build.props
File metadata and controls
47 lines (40 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<Project>
<PropertyGroup>
<!-- Package metadata -->
<Authors>SpeakEZ Technologies</Authors>
<Copyright>Copyright © SpeakEZ Technologies, Inc. 2025</Copyright>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectUrl>https://github.com/FidelityFramework/Farscape</PackageProjectUrl>
<RepositoryUrl>https://github.com/FidelityFramework/Farscape</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<!-- Build quality -->
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
<!-- SourceLink -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- MinVer: version from git tags, "v" prefix stripped -->
<MinVerTagPrefix>v</MinVerTagPrefix>
</PropertyGroup>
<!-- Versioning from git tags -->
<ItemGroup>
<PackageReference Include="MinVer" Version="6.0.0" PrivateAssets="All" />
</ItemGroup>
<!-- Pin FSharp.Core to satisfy transitive dependency from Fidelity.Data -->
<PropertyGroup>
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FSharp.Core" Version="10.0.102" />
</ItemGroup>
<!-- SourceLink for GitHub -->
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
</ItemGroup>
<!-- Include LICENSE and README at repo root for all packages -->
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)LICENSE" Pack="true" PackagePath="/" />
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="/" />
</ItemGroup>
</Project>