Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d12d208

Browse files
authoredFeb 6, 2020
Merge pull request #926 from baronfel/project-options-fixes
Additional rebased commits on top of the january merge
2 parents dbbd46a + f878196 commit d12d208

File tree

71 files changed

+1413
-693
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+1413
-693
lines changed
 

‎.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ osx_image: xcode11.2
99
mono:
1010
- weekly
1111
- latest
12-
- 6.0.0
12+
- 6.6.0
1313

14-
dotnet: 3.0.100
14+
dotnet: 3.1.100
1515

1616
sudo: false
1717

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<!-- Used as a diagnostic tool to view the state of the NuGet package cache as it existed immediately after a restore/build. -->
4+
5+
<PropertyGroup>
6+
<TargetFramework>netcoreapp3.1</TargetFramework>
7+
</PropertyGroup>
8+
9+
<ItemGroup>
10+
<PackageRootFiles Include="$(NuGetPackageRoot)/**" />
11+
</ItemGroup>
12+
13+
<Target Name="_DumpPackageRootDirectoryListing"
14+
AfterTargets="Build">
15+
<PropertyGroup>
16+
<PackageRootArtifactDirectory>$(ArtifactsDir)NugetPackageRootContents</PackageRootArtifactDirectory>
17+
<PackageRootContentsFile>$(PackageRootArtifactDirectory)/package_contents.txt</PackageRootContentsFile>
18+
</PropertyGroup>
19+
<MakeDir Directories="$(PackageRootArtifactDirectory)" Condition="!Exists('$(PackageRootArtifactDirectory)')" />
20+
<WriteLinesToFile File="$(PackageRootContentsFile)" Lines="@(PackageRootFiles)" />
21+
</Target>
22+
</Project>

0 commit comments

Comments
 (0)