Skip to content

Commit

Permalink
Address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffkl committed Nov 10, 2022
1 parent 9236093 commit 3da1776
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,6 @@
<Reference Include="WindowsBase" />
<Reference Include="System.Management.Automation, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" />
</ItemGroup>
<ItemGroup>
<Reference Include="Microsoft.Build">
<HintPath>$(PkgMicrosoft_Build)lib\net46\Microsoft.Build.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Common\IProjectContextInfoExtensions.cs" />
<Compile Include="Common\InstalledAndTransitivePackageCollections.cs" />
Expand Down Expand Up @@ -293,8 +287,8 @@
</Compile>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Build" IncludeAssets="None" PrivateAssets="All" GeneratePathProperty="true" />
<PackageReference Include="Microsoft.Build.Utilities.Core" PrivateAssets="All" />
<PackageReference Include="Microsoft.Build" ExcludeAssets="Runtime" PrivateAssets="All" />
<PackageReference Include="Microsoft.Build.Utilities.Core" ExcludeAssets="Runtime" PrivateAssets="All" />
<PackageReference Include="Microsoft.DataAI.NuGetRecommender.Contracts" />
<PackageReference Include="Microsoft.VisualStudio.VCProjectEngine" />
<PackageReference Include="Microsoft.VisualStudio.Sdk" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,11 @@
<AssemblyName>GenerateLicenseList</AssemblyName>
<NoWarn>$(NoWarn);NU1505</NoWarn> <!-- Remove NoWarn when https://github.com/dotnet/sdk/issues/24747 is fixed -->
<Description>A utility for updating the NuGet license list from the SPDX source.</Description>
<!-- There are some conflicts that are impossible to resolve because of missing package versions-->
<MicrosoftCodeAnalysisVersion>3.0.0</MicrosoftCodeAnalysisVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" />
<PackageReference Include="Microsoft.CodeAnalysis" VersionOverride="$(MicrosoftCodeAnalysisVersion)" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" VersionOverride="$(MicrosoftCodeAnalysisVersion)" />
<PackageReference Include="Microsoft.CodeAnalysis" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" />
</ItemGroup>
</Project>

0 comments on commit 3da1776

Please sign in to comment.