Skip to content

Commit

Permalink
Merged PR 4054: [4.0.4] | Fix .NET and .NET standard file version (do…
Browse files Browse the repository at this point in the history
  • Loading branch information
DavoudEshtehari committed Oct 14, 2023
1 parent 9d76e6a commit 4baf065
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 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>
<!-- This Assembly version corresponds to version of Microsoft.Data.SqlClient v2.0.0 Assembly. -->
<MdsVersionDefault>4.0.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>4.0.0.0</AssemblyVersion>
<NugetPackageVersion Condition="'$(NugetPackageVersion)' == ''">4.0.0-dev</NugetPackageVersion>
<NugetPackageVersion Condition="'$(NugetPackageVersion)' == ''">$(MdsVersionDefault)-dev</NugetPackageVersion>
<Version>$(NugetPackageVersion)</Version>
</PropertyGroup>
<!-- NetFx project dependencies -->
Expand Down

0 comments on commit 4baf065

Please sign in to comment.