mirror of
https://github.com/Smaug123/dmarc-fsharp
synced 2025-10-08 17:08:41 +00:00
* Bump Nerdbank.GitVersioning from 3.6.133 to 3.6.139 Bumps [Nerdbank.GitVersioning](https://github.com/dotnet/Nerdbank.GitVersioning) from 3.6.133 to 3.6.139. - [Release notes](https://github.com/dotnet/Nerdbank.GitVersioning/releases) - [Commits](https://github.com/dotnet/Nerdbank.GitVersioning/compare/v3.6.133...v3.6.139) --- updated-dependencies: - dependency-name: Nerdbank.GitVersioning dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Bump fantomas from 6.3.7 to 6.3.9 Bumps [fantomas](https://github.com/fsprojects/fantomas) from 6.3.7 to 6.3.9. - [Release notes](https://github.com/fsprojects/fantomas/releases) - [Changelog](https://github.com/fsprojects/fantomas/blob/main/CHANGELOG.md) - [Commits](https://github.com/fsprojects/fantomas/compare/v6.3.7...v6.3.9) --- updated-dependencies: - dependency-name: fantomas dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Upgrade deps --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Smaug123 <3138005+Smaug123@users.noreply.github.com>
29 lines
1.3 KiB
XML
29 lines
1.3 KiB
XML
<Project>
|
|
<PropertyGroup>
|
|
<DebugType Condition=" '$(DebugType)' == '' ">embedded</DebugType>
|
|
<Deterministic>true</Deterministic>
|
|
<NetCoreTargetingPackRoot>[UNDEFINED]</NetCoreTargetingPackRoot>
|
|
<DisableImplicitLibraryPacksFolder>true</DisableImplicitLibraryPacksFolder>
|
|
<DisableImplicitNuGetFallbackFolder>true</DisableImplicitNuGetFallbackFolder>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<DebugType>embedded</DebugType>
|
|
<WarnOn>FS3388,FS3559</WarnOn>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Nerdbank.GitVersioning" Version="3.6.139" PrivateAssets="all"/>
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
|
|
<SourceLinkGitHubHost Include="github.com" ContentUrl="https://raw.githubusercontent.com"/>
|
|
</ItemGroup>
|
|
<!--
|
|
SourceLink doesn't support F# deterministic builds out of the box,
|
|
so tell SourceLink that our source root is going to be remapped.
|
|
-->
|
|
<Target Name="MapSourceRoot" BeforeTargets="_GenerateSourceLinkFile" Condition="'$(SourceRootMappedPathsFeatureSupported)' != 'true'">
|
|
<ItemGroup>
|
|
<SourceRoot Update="@(SourceRoot)">
|
|
<MappedPath>Z:\CheckoutRoot\WoofWare.Myriad\</MappedPath>
|
|
</SourceRoot>
|
|
</ItemGroup>
|
|
</Target>
|
|
</Project>
|