Skip to content

Commit

Permalink
Merged PR 4039: [5.1.2] | Fix .NET and .NET standard file version (#2093
Browse files Browse the repository at this point in the history
)

Ports [#2093](#2093)
  • Loading branch information
DavoudEshtehari committed Oct 16, 2023
1 parent 0df83f4 commit c5dc895
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tools/props/Versions.props
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<AssemblyFileVersion Condition="'$(AssemblyFileVersion)' == ''">1.0.0.0</AssemblyFileVersion>
<MdsVersionDefault>5.1.0</MdsVersionDefault>
<BuildNumber Condition="'$(BuildNumber)' == ''">0</BuildNumber>
<AssemblyFileVersion Condition="'$(AssemblyFileVersion)' == ''">$(MdsVersionDefault).$(BuildNumber)</AssemblyFileVersion>
<FileVersion>$(AssemblyFileVersion)</FileVersion>
<!-- This Assembly version corresponds to version of Microsoft.Data.SqlClient Assembly. -->
<!-- Should only be changed in future when a non-backwards compatible driver is released. -->
<!-- Future Assembly Version values shall be Major.Minor.0.0; e.g. 4.0.0.0 -->
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<NugetPackageVersion Condition="'$(NugetPackageVersion)' == ''">5.1.0-dev</NugetPackageVersion>
<NugetPackageVersion Condition="'$(NugetPackageVersion)' == ''">$(MdsVersionDefault)-dev</NugetPackageVersion>
<Version>$(NugetPackageVersion)</Version>
</PropertyGroup>
<PropertyGroup>
Expand Down

0 comments on commit c5dc895

Please sign in to comment.