Skip to content

Commit

Permalink
ci: slight change in version format
Browse files Browse the repository at this point in the history
  • Loading branch information
dupdob committed May 6, 2023
1 parent 5745014 commit 1a4a3fe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion code/.build/buildlogic.targets
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ CREATING NUGET PACKAGE IN:
var parts = (version+".0.0").Split('.');
if (string.IsNullOrEmpty(stream))
{
builder.AppendFormat("{0}.{1}.{2}", parts[0], parts[1], parts[2]);
builder.AppendFormat("{0}.{1}.{2}.{3}", parts[0], parts[1], parts[2], parts[3]);
}
else
{
Expand Down
6 changes: 3 additions & 3 deletions code/tests/Nugget/NuggetVersion.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json">
<Version>13.0.1</Version>
<Version>13.0.3</Version>
</PackageReference>
<PackageReference Include="NFluent">
<Version>2.8.0</Version>
<Version>3.0.0</Version>
</PackageReference>
<PackageReference Include="NUnit">
<Version>3.13.2</Version>
<Version>3.13.3</Version>
</PackageReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Expand Down

0 comments on commit 1a4a3fe

Please sign in to comment.