Skip to content

Commit 3a62220

Browse files
committed
Fix missing code from missing dependency
A missing feature in NuGetizer (see devlooped/nugetizer#388) caused our dependency on ThisAssembly.Constants to be lost now that it explicitly sets itself as PrivateAssets=all to prevent analyzer propagation to referenced projects. This scenario (a package reference with PrivateAssets=all AND Pack=true) was not supported by NuGetizer. We now do, so this bump is enough to fix the issue. Fixes #281
1 parent 4e25c7c commit 3a62220

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/GitInfo/GitInfo.msbuildproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
<PackageReadmeFile>readme.md</PackageReadmeFile>
1111
</PropertyGroup>
1212
<ItemGroup>
13-
<PackageReference Include="NuGetizer" Version="1.0.0" />
13+
<PackageReference Include="NuGetizer" Version="1.0.3" />
1414
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="all" />
15-
<PackageReference Include="ThisAssembly.Constants" Version="1.2.12" Pack="true" TargetFramework="netstandard2.0" />
15+
<PackageReference Include="ThisAssembly.Constants" Version="1.2.14" Pack="true" TargetFramework="netstandard2.0" />
1616
</ItemGroup>
1717
<ItemGroup>
1818
<None Include="build/**/*.*" />
@@ -23,4 +23,4 @@
2323
<ItemGroup>
2424
<ProjectReference Include="..\Analyzer\CodeAnalysis.csproj" />
2525
</ItemGroup>
26-
</Project>
26+
</Project>

0 commit comments

Comments
 (0)