mirror of
https://github.com/Smaug123/dmarc-fsharp
synced 2025-10-05 23:48:41 +00:00
* Bump NUnit from 4.2.1 to 4.2.2 Bumps [NUnit](https://github.com/nunit/nunit) from 4.2.1 to 4.2.2. - [Release notes](https://github.com/nunit/nunit/releases) - [Changelog](https://github.com/nunit/nunit/blob/main/CHANGES.md) - [Commits](https://github.com/nunit/nunit/compare/4.2.1...4.2.2) --- updated-dependencies: - dependency-name: NUnit dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Bump Nerdbank.GitVersioning from 3.6.141 to 3.6.143 Bumps [Nerdbank.GitVersioning](https://github.com/dotnet/Nerdbank.GitVersioning) from 3.6.141 to 3.6.143. - [Release notes](https://github.com/dotnet/Nerdbank.GitVersioning/releases) - [Commits](https://github.com/dotnet/Nerdbank.GitVersioning/compare/v3.6.141...v3.6.143) --- updated-dependencies: - dependency-name: Nerdbank.GitVersioning dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Fix 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.143" 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>
|