Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions eng/Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,9 @@
<DependencyPackageProjects Include="$(RepoRoot)src\referencePackages\src\**\Microsoft.CodeAnalysis.VisualBasic.3.7.0.csproj" />
<DependencyPackageProjects Include="$(RepoRoot)src\referencePackages\src\**\Microsoft.CodeAnalysis.VisualBasic.Workspaces.3.7.0.csproj" />
<DependencyPackageProjects Include="$(RepoRoot)src\referencePackages\src\**\Microsoft.CodeAnalysis.VisualBasic.4.0.1.csproj" />

<DependencyPackageProjects Include="$(RepoRoot)src\referencePackages\src\**\NuGet.Credentials.6.2.2.csproj" />
<DependencyPackageProjects Include="$(RepoRoot)src\referencePackages\src\**\NuGet.Commands.6.2.2.csproj" />
</ItemGroup>

<ItemGroup Condition="'$(BuildDependencyPackageProjects)' == 'true'">
Expand Down
14 changes: 14 additions & 0 deletions log.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Determining projects to restore...
All projects are up-to-date for restore.
Determining projects to restore...
Restored /datadrive/source/source-build-reference-packages/src/referencePackages/src/nuget.credentials/6.2.2/NuGet.Credentials.6.2.2.csproj (in 175 ms).
NuGet.Credentials.6.2.2 -> /datadrive/source/source-build-reference-packages/artifacts/bin/NuGet.Credentials.6.2.2/Debug/netstandard2.0/NuGet.Credentials.dll
NuGet.Credentials.6.2.2 -> /datadrive/source/source-build-reference-packages/artifacts/bin/NuGet.Credentials.6.2.2/Debug/net5.0/NuGet.Credentials.dll
The package NuGet.Credentials.6.2.2 is missing a readme. Go to https://aka.ms/nuget/authoring-best-practices/readme to learn why package readmes are important.
Successfully created package '/datadrive/source/source-build-reference-packages/artifacts/packages/Debug/Shipping/NuGet.Credentials.6.2.2.nupkg'.

Build succeeded.
0 Warning(s)
0 Error(s)

Time Elapsed 00:00:02.22
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net5.0;netstandard2.0</TargetFrameworks>
<AssemblyName>NuGet.Commands</AssemblyName>
<ProjectTemplateVersion>2</ProjectTemplateVersion>
<StrongNameKeyId>MicrosoftShared</StrongNameKeyId>
</PropertyGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net5.0'">
<PackageReference Include="NuGet.Credentials" Version="6.2.2" />
<PackageReference Include="NuGet.ProjectModel" Version="6.2.2" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="NuGet.Credentials" Version="6.2.2" />
<PackageReference Include="NuGet.ProjectModel" Version="6.2.2" />
</ItemGroup>

</Project>
Loading