Skip to content

Commit

Permalink
modify the version
Browse files Browse the repository at this point in the history
  • Loading branch information
xuzhg committed Dec 11, 2020
1 parent 419a438 commit fba558a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ stages:
-p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg
displayName: Packing Migrations

- publish: $(Build.ArtifactStagingDirectory)\Packages
- publish: $(Build.ArtifactStagingDirectory)\Packages
displayName: Publish Build Artifacts
artifact: BuildPackages

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,10 @@
</metadata>
<files>
<file src="$ProductRoot$\netstandard2.0\Microsoft.OData.Extensions.Migration.dll" target="lib\netstandard2.0" />
<file src="$ProductRoot$\netstandard2.0\Microsoft.OData.Extensions.Migration.xml" target="lib\netstandard2.0" />
<file src="$ProductRoot$\netstandard2.0\Microsoft.OData.Extensions.Migration.pdb" target="lib\netstandard2.0" />
<file src="$ProductRoot$\netcoreapp3.1\Microsoft.OData.Extensions.Migration.dll" target="lib\netcoreapp3.1" />
<file src="$ProductRoot$\netcoreapp3.1\Microsoft.OData.Extensions.Migration.pdb" target="lib\netcoreapp3.1" />
<file src="$ProductRoot$\netcoreapp3.1\Microsoft.OData.Extensions.Migration.xml" target="lib\netcoreapp3.1" />
</files>
</package>
5 changes: 4 additions & 1 deletion tools/CustomMSBuild/Versioning.props
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
<Project>

<!-- Set the version number: major, minor, build and release (i.e. alpha, beta or blank for RTM)-->
<!-- Be Noted: the version below is for the dll build, for the Nuget version, it's set in the Azure Pipeline Variabes.
Please make the version same.
-->
<PropertyGroup>
<VersionMajor Condition="'$(VersionMajor)' == ''">1</VersionMajor>
<VersionMinor Condition="'$(VersionMinor)' == ''">0</VersionMinor>
<VersionBuild Condition="'$(VersionBuild)' == ''">3</VersionBuild>
<VersionBuild Condition="'$(VersionBuild)' == ''">6</VersionBuild>
<VersionRelease Condition="'$(VersionRelease)' == ''"></VersionRelease>
</PropertyGroup>

Expand Down

0 comments on commit fba558a

Please sign in to comment.