Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e5546cb

Browse files
filmorBadSingleton
authored andcommitted
Ensure that version.txt is always read from repo root
Allows the project to be referenced in other .NET projects without adjusting its project file (pythonnet#1853).
1 parent 34b7445 commit e5546cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<AssemblyProduct>Python.NET</AssemblyProduct>
77
<LangVersion>10.0</LangVersion>
88
<IsPackable>false</IsPackable>
9-
<FullVersion>$([System.IO.File]::ReadAllText("version.txt"))</FullVersion>
9+
<FullVersion>$([System.IO.File]::ReadAllText($(MSBuildThisFileDirectory)version.txt))</FullVersion>
1010
<VersionPrefix>$(FullVersion.Split('-', 2)[0])</VersionPrefix>
1111
<VersionSuffix Condition="$(FullVersion.Contains('-'))">$(FullVersion.Split('-', 2)[1])</VersionSuffix>
1212
</PropertyGroup>

0 commit comments

Comments
 (0)