-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move development NuGet dependencies into Directory.Build.props
This should solve this issue popping on AppVeyor: > SourceRoot items must include at least one top-level (not nested) item when DeterministicSourcePaths is true See explanation in dotnet/sourcelink#91 (comment)
- Loading branch information
Showing
2 changed files
with
9 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<Project> | ||
<ItemGroup> | ||
<!-- To avoid getting this error on AppVeyor: SourceRoot items must include at least one top-level (not nested) item when DeterministicSourcePaths is true | ||
See https://github.com/dotnet/sourcelink/issues/91#issuecomment-400787926 and https://github.com/dotnet/roslyn/issues/37379 --> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" /> | ||
<PackageReference Include="MinVer" Version="2.3.1" PrivateAssets="All" /> | ||
<PackageReference Include="Nullable" Version="1.3.0" PrivateAssets="All" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters